/*=========================================================
  BayernSeppl's Geschenke-Tresor
  style.css
  Teil 1 – Reset, Variablen, Grundlayout & Typografie
=========================================================*/


/*=========================================================
  RESET
=========================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Work Sans",sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--text);
    background:
        radial-gradient(circle at top,#173963 0%,#0b1930 45%,#07111f 100%);
    overflow-x:hidden;
}


/*=========================================================
  FARBVARIABLEN
=========================================================*/

:root{

    --bg:#07111f;
    --bg-light:#0f213c;
    --card:#152b48;

    --white:#ffffff;

    --text:#edf3fa;
    --text-light:#c8d4e5;

    --gold:#ffd86c;
    --gold-dark:#efb729;

    --success:#32d37f;
    --danger:#ff6767;

    --border:rgba(255,255,255,.08);

    --shadow:
        0 18px 45px rgba(0,0,0,.35);

    --shadow-hover:
        0 25px 60px rgba(0,0,0,.45);

    --radius:22px;

    --transition:.30s ease;

}


/*=========================================================
  CONTAINER
=========================================================*/

.container{
    width:min(1180px,92%);
    margin:auto;
}


/*=========================================================
  TYPOGRAFIE
=========================================================*/

h1,
h2,
h3,
h4{
    font-family:"Fraunces",serif;
    font-weight:700;
    line-height:1.15;
    color:var(--white);
}

h1{
    font-size:clamp(2.8rem,6vw,5rem);
}

h2{
    font-size:clamp(2rem,4vw,3.1rem);
}

h3{
    font-size:1.45rem;
}

h4{
    font-size:1.15rem;
}

p{
    color:var(--text-light);
    margin-bottom:1rem;
}

.section-text{
    max-width:760px;
    margin:20px auto 0;
    text-align:center;
    color:var(--text-light);
}


/*=========================================================
  LINKS
=========================================================*/

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

a:hover{
    color:var(--gold);
}


/*=========================================================
  LISTEN
=========================================================*/

ul,
ol{
    list-style:none;
}


/*=========================================================
  BILDER
=========================================================*/

img{
    display:block;
    max-width:100%;
    height:auto;
}


/*=========================================================
  BUTTON-GRUNDLAGE
=========================================================*/

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:999px;
    font-weight:700;
    transition:var(--transition);
    cursor:pointer;
}

.btn-primary{

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #ffe9a2
        );

    color:#07111f;

    box-shadow:var(--shadow);
}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
        0 15px 35px rgba(255,216,108,.35);

    color:#07111f;
}

.btn-secondary{

    border:2px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.04);

    color:var(--white);
}

.btn-secondary:hover{

    background:rgba(255,255,255,.08);

    color:var(--gold);

}


/*=========================================================
  STANDARD-ABSCHNITTE
=========================================================*/

section{
    padding:90px 0;
}


/*=========================================================
  AUSWAHLFARBE
=========================================================*/

::selection{
    background:var(--gold);
    color:#07111f;
}/*=========================================================
  HEADER
=========================================================*/

.header{
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(18px);
    background:rgba(7,17,31,.82);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:82px;
    gap:40px;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    height:58px;
    width:auto;
    transition:var(--transition);
}

.logo:hover img{
    transform:scale(1.05);
}


/*=========================================================
  NAVIGATION
=========================================================*/

.navigation{
    display:flex;
    align-items:center;
    gap:34px;
}

.navigation a{
    position:relative;
    font-size:1rem;
    font-weight:600;
    color:var(--text-light);
    transition:var(--transition);
}

.navigation a:hover{
    color:var(--gold);
}


/* animierte Linie */

.navigation a::after{

    content:"";

    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:var(--transition);

}

.navigation a:hover::after{

    width:100%;

}


/*=========================================================
  HERO
=========================================================*/

.hero{
    position:relative;
    overflow:hidden;
    padding:90px 0 100px;
}

.hero::before{

    content:"";

    position:absolute;
    top:-180px;
    right:-180px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(255,216,108,.14),
            transparent 72%
        );

    pointer-events:none;

}

.hero-grid{

    display:grid;

    grid-template-columns:
        minmax(0,1.1fr)
        minmax(340px,.9fr);

    align-items:center;

    gap:70px;

}


/*=========================================================
  HERO LINKS
=========================================================*/

.hero-left{

    position:relative;
    z-index:2;

}

.hero-left h1{

    margin:22px 0 28px;

}

.hero-left h1 span{

    color:var(--gold);

}

.hero-text{

    max-width:640px;

    font-size:1.18rem;

    color:var(--text-light);

    margin-bottom:38px;

}


/*=========================================================
  HERO BADGE
=========================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:11px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    color:var(--gold);

    font-weight:700;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

}


/*=========================================================
  HERO FEATURES
=========================================================*/

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-bottom:42px;

}

.feature{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:var(--text);

    font-weight:600;

}


/*=========================================================
  HERO BUTTONS
=========================================================*/

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}


/*=========================================================
  HERO RECHTS
=========================================================*/

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.treasure-card{

    width:100%;

    max-width:600px;

    margin-top:-90px;

    border-radius:30px;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.treasure-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

.treasure-card img{

    width:100%;

    display:block;

}


/*=========================================================
  HERO RESPONSIVE
=========================================================*/

@media (max-width:900px){

    .header-inner{

        flex-direction:column;

        justify-content:center;

        padding:18px 0;

        gap:18px;

    }

    .navigation{

        flex-wrap:wrap;

        justify-content:center;

        gap:20px;

    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:55px;

        text-align:center;

    }

    .treasure-card{

        margin-top:0;

    }

    .hero-text{

        margin-left:auto;
        margin-right:auto;

    }

    .hero-features{

        justify-content:center;

    }

    .hero-buttons{

        justify-content:center;

    }

}/*=========================================================
  BENEFITS
=========================================================*/

.benefits{
    position:relative;
    padding:90px 0;
}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*=========================================================
  BENEFIT CARD
=========================================================*/

.benefit-card{

    position:relative;

    padding:38px 30px;

    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

    border-radius:var(--radius);

    text-align:center;

    transition:var(--transition);

    overflow:hidden;

    box-shadow:var(--shadow);

}

.benefit-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--gold),
        #ffe8a5
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s ease;

}

.benefit-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,216,108,.30);

    box-shadow:var(--shadow-hover);

    background:rgba(255,255,255,.08);

}

.benefit-card:hover::before{

    transform:scaleX(1);

}


/*=========================================================
  BENEFIT ICON
=========================================================*/

.benefit-icon{

    width:74px;
    height:74px;

    margin:0 auto 24px;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:2rem;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        rgba(255,216,108,.18),
        rgba(255,255,255,.08)
    );

    color:var(--gold);

    border:1px solid rgba(255,216,108,.25);

}

.benefit-card h3{

    margin-bottom:18px;

}

.benefit-card p{

    margin:0;

    color:var(--text-light);

    font-size:.98rem;

}


/*=========================================================
  PRODUKTBEREICH
=========================================================*/

.products{

    position:relative;

    padding:100px 0;

}

.products h2{

    text-align:center;

    margin-bottom:18px;

}

.products .section-text{

    margin-bottom:70px;

}


/*=========================================================
  PRODUKT GRID
=========================================================*/

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:34px;

}


/*=========================================================
  PRODUKTKARTEN
=========================================================*/

.product-card{

    position:relative;

    display:flex;

    flex-direction:column;

    padding:36px;

    border-radius:var(--radius);

    background:var(--card);

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:var(--transition);

    overflow:hidden;

}

.product-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,216,108,.35);

    box-shadow:var(--shadow-hover);

}


/*=========================================================
  FEATURED PRODUKT
=========================================================*/

.product-card.featured{

    border:2px solid rgba(255,216,108,.45);

    background:linear-gradient(
        180deg,
        rgba(255,216,108,.10),
        var(--card)
    );

}

.product-card.featured::after{

    content:"Empfehlung";

    position:absolute;

    top:18px;
    right:-36px;

    width:150px;

    text-align:center;

    padding:6px 0;

    background:var(--gold);

    color:#07111f;

    font-size:.78rem;

    font-weight:700;

    transform:rotate(45deg);

}


/*=========================================================
  PRODUKTNUMMER
=========================================================*/

.product-number{

    width:48px;
    height:48px;

    margin-bottom:20px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,216,108,.15);

    color:var(--gold);

    font-weight:800;

    font-size:1rem;

}


/*=========================================================
  PRODUKT ICON
=========================================================*/

.product-icon{

    font-size:2.8rem;

    margin-bottom:22px;

}

.product-card h3{

    margin-bottom:18px;

}

.product-card p{

    flex:1;

    margin-bottom:0;

}


/*=========================================================
  RESPONSIVE
=========================================================*/

@media (max-width:1000px){

    .benefits-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .products-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:700px){

    .benefits-grid{

        grid-template-columns:1fr;

    }

    .products-grid{

        grid-template-columns:1fr;

    }

    .benefit-card,
    .product-card{

        padding:30px;

    }

    .product-card.featured::after{

        display:none;

    }

}/*=========================================================
  OFFER SECTION
=========================================================*/

.offer-section{
    padding:90px 0;
}

.offer-box{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    background:linear-gradient(
        135deg,
        rgba(255,216,108,.10),
        rgba(255,255,255,.04)
    );

    border:1px solid rgba(255,216,108,.20);

    box-shadow:var(--shadow);

}

.offer-box::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(255,216,108,.12),
            transparent 72%
        );

    pointer-events:none;

}

.offer-content{

    position:relative;

    z-index:2;

    padding:70px;

    text-align:center;

}

.offer-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:999px;

    background:rgba(255,216,108,.18);

    color:var(--gold);

    font-weight:700;

    margin-bottom:28px;

}

.offer-content h2{

    margin-bottom:24px;

}

.offer-content p{

    max-width:760px;

    margin:0 auto 42px;

    font-size:1.1rem;

}

.offer-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    max-width:760px;

    margin:auto;

}

.offer-highlights div{

    padding:18px 22px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    font-weight:600;

    color:var(--white);

}


/*=========================================================
  NEWSLETTER
=========================================================*/

.newsletter-section{

    padding:100px 0;

}

.newsletter-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.newsletter-left h2{

    margin-bottom:26px;

}

.newsletter-left p{

    font-size:1.05rem;

    margin-bottom:35px;

}

.newsletter-list{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.newsletter-list li{

    padding:15px 20px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    color:var(--text);

    font-weight:600;

}


/*=========================================================
  FORMULAR
=========================================================*/

.newsletter-form{

    padding:45px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--shadow);

}

.newsletter-form h3{

    margin-bottom:18px;

    text-align:center;

}

.form-intro{

    text-align:center;

    margin-bottom:28px;

}

.field{

    width:100%;

    margin-bottom:18px;

    padding:17px 18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.05);

    color:var(--white);

    font-size:1rem;

    transition:var(--transition);

}

.field::placeholder{

    color:var(--text-light);

}

.field:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 0 3px rgba(255,216,108,.15);

}

.hp{

    display:none;

}


/*=========================================================
  DSGVO
=========================================================*/

.consent{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin:28px 0;

    padding:16px 18px;

    background:rgba(255,255,255,.035);

    border:1px solid rgba(255,255,255,.09);

    border-radius:14px;

    font-size:.88rem;

    line-height:1.6;

    color:var(--text-light);

    cursor:pointer;

    transition:var(--transition);

}

.consent:hover{

    border-color:rgba(255,216,108,.28);

    background:rgba(255,255,255,.05);

}

.consent input{

    appearance:none;
    -webkit-appearance:none;

    width:20px;
    height:20px;

    margin-top:2px;

    border-radius:6px;

    border:1.5px solid rgba(255,255,255,.3);

    background:rgba(255,255,255,.04);

    flex-shrink:0;

    cursor:pointer;

    position:relative;

    transition:var(--transition);

}

.consent input:hover{

    border-color:var(--gold);

}

.consent input:checked{

    background:var(--gold);

    border-color:var(--gold);

}

.consent input:checked::after{

    content:"";

    position:absolute;

    left:6px;
    top:2px;

    width:5px;
    height:10px;

    border:solid #07111f;
    border-width:0 2px 2px 0;

    transform:rotate(45deg);

}

.consent input:focus-visible{

    outline:2px solid var(--gold);
    outline-offset:2px;

}

.consent span{

    color:var(--text-light);

}

.consent a{

    color:var(--gold);

    text-decoration:underline;

    text-underline-offset:2px;

}

.consent a:hover{

    color:#fff;

}


/*=========================================================
  TURNSTILE
=========================================================*/

.cf-turnstile{

    display:flex;

    justify-content:center;

    margin:28px 0;

}


/*=========================================================
  ABSENDEN
=========================================================*/

.submit-button{

    width:100%;

    margin-top:10px;

}

.form-note{

    margin-top:24px;

    text-align:center;

    font-size:.92rem;

    color:var(--text-light);

}


/*=========================================================
  RESPONSIVE
=========================================================*/

@media (max-width:900px){

    .offer-content{

        padding:50px 35px;

    }

    .offer-highlights{

        grid-template-columns:1fr;

    }

    .newsletter-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

}

@media (max-width:600px){

    .newsletter-form{

        padding:30px 24px;

    }

    .offer-content{

        padding:40px 24px;

    }

}/*=========================================================
  FAQ
=========================================================*/

.faq-section{
    padding:100px 0;
}

.faq-section h2{
    text-align:center;
    margin-bottom:60px;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.faq-grid details{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    overflow:hidden;

    transition:var(--transition);

}

.faq-grid details:hover{

    border-color:rgba(255,216,108,.30);

    box-shadow:0 10px 30px rgba(0,0,0,.20);

}

.faq-grid details[open]{

    border-color:rgba(255,216,108,.40);

    background:rgba(255,255,255,.07);

}

.faq-grid summary{

    list-style:none;

    cursor:pointer;

    padding:22px 26px;

    font-size:1.08rem;

    font-weight:700;

    color:var(--white);

    position:relative;

    user-select:none;

}

.faq-grid summary::-webkit-details-marker{

    display:none;

}

.faq-grid summary::after{

    content:"+";

    position:absolute;

    right:26px;

    top:50%;

    transform:translateY(-50%);

    font-size:1.5rem;

    color:var(--gold);

    transition:var(--transition);

}

.faq-grid details[open] summary::after{

    transform:translateY(-50%) rotate(45deg);

}

.faq-grid details p{

    padding:0 26px 26px;

    color:var(--text-light);

    margin:0;

}


/*=========================================================
  FOOTER
=========================================================*/

.footer{

    margin-top:60px;

    background:#050d18;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap:50px;

    padding:70px 0;

}

.footer h3,
.footer h4{

    margin-bottom:22px;

}

.footer p{

    color:var(--text-light);

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer a{

    color:var(--text-light);

    transition:var(--transition);

}

.footer a:hover{

    color:var(--gold);

    padding-left:6px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:24px 0;

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#95a6bb;

    font-size:.92rem;

}


/*=========================================================
  SANFTE ANIMATIONEN
=========================================================*/

.benefit-card,
.product-card,
.offer-box,
.newsletter-form,
.treasure-card,
.faq-grid details{

    animation:fadeUp .7s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*=========================================================
  SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#08121f;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--gold),
        var(--gold-dark)
    );

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ffe18d;

}


/*=========================================================
  RESPONSIVE TABLET
=========================================================*/

@media (max-width:992px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .faq-grid{

        grid-template-columns:1fr;

    }

}


/*=========================================================
  RESPONSIVE SMARTPHONE
=========================================================*/

@media (max-width:768px){

    section{

        padding:70px 0;

    }

    h1{

        font-size:2.5rem;

    }

    h2{

        font-size:2rem;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

        text-align:center;

    }

    .footer ul{

        align-items:center;

    }

}


/*=========================================================
  KLEINE SMARTPHONES
=========================================================*/

@media (max-width:480px){

    .container{

        width:min(94%,1180px);

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-features{

        flex-direction:column;

    }

    .feature{

        width:100%;

    }

    .offer-badge{

        font-size:.9rem;

    }

    .newsletter-form{

        padding:25px 20px;

    }

    .faq-grid summary{

        padding:20px;

        font-size:1rem;

    }

}/*=========================================================
  STYLE.CSS
  TEIL 6
  Utilities, Effekte & Drucklayout
  (als Abschluss unter Teil 5 einfügen)
=========================================================*/


/*=========================================================
  HILFSKLASSEN
=========================================================*/

.text-center{
    text-align:center;
}

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

.text-right{
    text-align:right;
}

.w-100{
    width:100%;
}

.hidden{
    display:none !important;
}

.visible{
    display:block !important;
}


/*=========================================================
  FOKUS (Barrierefreiheit)
=========================================================*/

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible{

    outline:3px solid var(--gold);

    outline-offset:4px;

    border-radius:8px;

}


/*=========================================================
  SANFTE EINBLENDUNG
=========================================================*/

.fade-in{

    opacity:0;

    transform:translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.fade-in.visible{

    opacity:1;

    transform:translateY(0);

}


/*=========================================================
  HOVER-EFFEKT FÜR BILDER
=========================================================*/

img{

    transition:transform .35s ease;

}

.product-card:hover img,
.treasure-card:hover img{

    transform:scale(1.03);

}


/*=========================================================
  FORMULAR-FEEDBACK
=========================================================*/

.field.error{

    border-color:#ff6b6b;

    box-shadow:0 0 0 3px rgba(255,107,107,.15);

}

.field.success{

    border-color:var(--success);

    box-shadow:0 0 0 3px rgba(50,211,127,.15);

}


/*=========================================================
  LOADING BUTTON
=========================================================*/

.submit-button.loading{

    opacity:.75;

    cursor:wait;

    pointer-events:none;

}

.submit-button.loading::after{

    content:" ...";

}


/*=========================================================
  REDUZIERTE ANIMATIONEN
=========================================================*/

@media (prefers-reduced-motion: reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}


/*=========================================================
  DRUCKANSICHT
=========================================================*/

@media print{

    body{

        background:#ffffff;

        color:#000000;

    }

    .header,
    .hero-buttons,
    .newsletter-section,
    .footer{

        display:none;

    }

    section{

        padding:20px 0;

    }

    .product-card,
    .benefit-card{

        box-shadow:none;

        border:1px solid #ccc;

    }

}/*=========================================================
  MOBILE STICKY CTA
=========================================================*/

.mobile-cta{
    display:none;
}

@media (max-width:768px){

    .mobile-cta{

        position:fixed;

        left:15px;
        right:15px;
        bottom:15px;

        z-index:9999;

        display:flex;
        justify-content:center;
        align-items:center;

        padding:16px 20px;

        border-radius:999px;

        background:linear-gradient(
            135deg,
            var(--gold),
            #ffe8a0
        );

        color:#07111f;

        font-weight:800;
        font-size:1rem;

        box-shadow:
            0 12px 35px rgba(0,0,0,.35);

        transition:.3s ease;
    }

    .mobile-cta:hover{

        transform:translateY(-3px);

        color:#07111f;

    }

    body{

        padding-bottom:90px;

    }

}


/*=========================================================
  BILD-LIGHTBOX (KLICK ZUM VERGRÖSSERN)
=========================================================*/

.treasure-card{

    cursor:zoom-in;

}

.image-lightbox{

    position:fixed;

    inset:0;

    z-index:9999;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    background:rgba(4,9,18,.92);

    backdrop-filter:blur(6px);

    opacity:0;

    visibility:hidden;

    transition:opacity .3s ease, visibility .3s ease;

    cursor:zoom-out;

}

.image-lightbox.active{

    opacity:1;

    visibility:visible;

}

.image-lightbox img{

    max-width:min(92vw,1100px);

    max-height:90vh;

    width:auto;

    border-radius:20px;

    box-shadow:0 30px 80px rgba(0,0,0,.5);

    transform:scale(.94);

    transition:transform .3s ease;

}

.image-lightbox.active img{

    transform:scale(1);

}

.image-lightbox-close{

    position:absolute;

    top:22px;

    right:26px;

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    font-size:1.4rem;

    line-height:1;

    cursor:pointer;

    transition:var(--transition);

}

.image-lightbox-close:hover{

    background:var(--gold);

    color:#07111f;

    border-color:var(--gold);

}


/*=========================================================
  ENDE DER DATEI
=========================================================*/