/* ============================================================
   GLOBAL WRAPPER
============================================================ */
.gb-spotlight * {
    box-sizing: border-box;
    font-family: inherit;
}

.gb-spotlight {
    margin: 50px auto 80px;
    max-width: 1180px;
    padding: 0 20px;
}

/* ============================================================
   GENERISCHE CARD
============================================================ */
.gb-card {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

/* ============================================================
   SLIDE 1 – Intro (warm, soft, zentriert)
============================================================ */
.fg-slide-bg.warm-refined {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    pointer-events: none;
    background: radial-gradient(circle at 40% 40%,
        rgba(255, 240, 220, 0.95),
        rgba(240, 220, 200, 0.80) 40%,
        rgba(225, 205, 185, 0.60) 70%,
        rgba(210, 190, 170, 0.45) 100%);
    opacity: 0.95;
}

.intro-card {
    justify-content: center;
    text-align: center;
}

.intro-content.intro-center {
    max-width: 520px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.intro-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    color: #8a6d4d;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.intro-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3a2f24;
}

.intro-list {
    margin: 20px 0;
    padding-left: 20px;
    text-align: left;
    display: inline-block;
}

.intro-list li {
    margin-bottom: 6px;
    color: #4f4539;
    font-size: 17px;
}

/* ============================================================
   BUTTONS
============================================================ */
.gb-btn {
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all .15s ease;
}

.gb-btn--primary {
    background: #9b7c5b;
    color: white;
}

.gb-btn--primary:hover {
    background: #876a4c;
}

.gb-btn--ghost {
    background: rgba(155,124,91,0.1);
    color: #6e5942;
    border: 1px solid rgba(155,124,91,0.3);
}

.gb-btn--ghost:hover {
    background: rgba(155,124,91,0.18);
}

/* ============================================================
   SLIDE 2 – Bibelvers (eingefärbt + hochwertiger Rahmen)
============================================================ */
.bible-card {
    background: linear-gradient(135deg, #f4e6d6, #e1c9aa);
    justify-content: center;
}

.bible-box {
    max-width: 580px;
    background: rgba(255,255,255,0.9);
    padding: 40px 45px;
    border-radius: 24px;

    /* edler Rahmen */
    border: 2px solid rgba(155,124,91,0.35);

    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.bible-verse-header {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9a7e58;
    margin-bottom: 20px;
}

.bible-verse-text {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #4d3f2f;
    margin-bottom: 18px;
}

.bible-verse-text span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.7;
}

.bible-verse-sub {
    margin-top: 14px;
    font-size: 16px;
    color: #6a5c49;
    line-height: 1.5;
}

/* ============================================================
   SLIDE 3 – Spotlight (mit Rahmen + warmem Hintergrund)
============================================================ */
.spotlight-card {
    display: flex;
    gap: 50px;

    /* hier der neue Rahmen */
    border: 2px solid rgba(155,124,91,0.35);
    border-radius: 24px;
    padding: 40px;
    background: #fffaf4; /* warmer Ton */
    box-shadow:
        inset 0 0 12px rgba(255,255,255,0.7),
        0 8px 28px rgba(0,0,0,0.08);
}

/* Spotlight Layout */
.spotlight-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.spotlight-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-img {
    width: 65%;
    cursor: zoom-in;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    transition: transform .12s ease;
}

.spotlight-img:hover {
    transform: scale(1.02);
}

.spotlight-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    color: #967859;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.spotlight-title {
    font-size: 34px;
    color: #3d3227;
    margin-bottom: 18px;
}

.spotlight-text {
    color: #5a4f43;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Kerzen-System */
.spotlight-likes {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gb-like-btn {
    padding: 9px 16px;
    background: rgba(180, 150, 120, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.gb-like-btn:hover {
    background: rgba(180, 150, 120, 0.25);
}

.like-count {
    font-size: 16px;
    color: #7a6a58;
}

/* ============================================================
   LIGHTBOX
============================================================ */
.contest-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.contest-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ============================================================
   MODAL
============================================================ */
.gb-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

.gb-modal {
    width: 560px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.gb-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    font-size: 32px;
    border: none;
    cursor: pointer;
    opacity: 0.6;
}

.gb-modal-close:hover {
    opacity: 1;
}

.gb-modal-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: #3f3327;
}

.gb-modal-sub {
    color: #6b5e50;
    margin-bottom: 25px;
}

/* Formularfelder */
.gb-field {
    display: block;
    margin-bottom: 20px;
}

.gb-field span {
    display: block;
    margin-bottom: 6px;
    color: #6c5c4c;
}

.gb-field input,
.gb-field textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cfc2b3;
    font-size: 16px;
}

.gb-field input:focus,
.gb-field textarea:focus {
    outline: none;
    border-color: #a88c6c;
}

/* DSGVO Checkboxen */
.gb-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.gb-check input[type="checkbox"] {
    margin-top: 4px;
}

.gb-privacy-note {
    font-size: 13px;
    color: #7c6a59;
    margin-bottom: 15px;
}

.gb-upload-response {
    margin-top: 15px;
    font-size: 15px;
    color: #6c5b4b;
}

/* ============================================================
   SWIPER
============================================================ */
.swiper-button-prev,
.swiper-button-next {
    color: #8a735c;
}

.swiper-pagination-bullet-active {
    background: #a18669;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {

    .gb-card {
        padding: 30px;
        min-height: auto;
    }

    .spotlight-card {
        flex-direction: column;
        text-align: center;
    }

    .spotlight-img {
        width: 90%;
        margin-top: 20px;
    }

    .intro-list {
        text-align: left;
    }

    .bible-box {
        padding: 30px;
    }
}
/* ================================
   MODAL – MOBILE SCROLL FIX
================================ */

/* Overlay darf scrollen */
.gb-modal-overlay {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start; /* wichtig! */
    padding: 30px 16px;
}

/* Modal begrenzen */
.gb-modal {
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 60px);
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

/* Formular wird der Scrollbereich */
#gb-upload-form {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
}
