/* ===========================================
   ONYX DESIGN SYSTEM
   GLOBAL STYLES
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:110px;
}

html,
body{
    margin:0;
    padding:0;
    width:100%;
    min-height:100%;
}

body{
    background:var(--color-background);
    color:var(--color-text);
    font-family:var(--font-body);
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

section{
    scroll-margin-top:110px;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* ==========================
   NAVIGATION
========================== */

.navbar{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:min(88%,1180px);
    height:64px;
    padding:0 42px;
    border-radius:18px;
    background:rgba(20,20,20,.55);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 15px 40px rgba(0,0,0,.22);
    z-index:1000;
}

.navbar.scrolled{
    top:12px;
    height:58px;
    background:rgba(15,15,15,.72);
    box-shadow:0 18px 50px rgba(0,0,0,.28);
    border-color:rgba(200,169,106,.22);
}

.nav-container{
    height:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-family:var(--font-heading);
    font-size:1.8rem;
    color:white;
    letter-spacing:4px;
}

.logo span{
    color:var(--color-primary);
}

.nav-links{
    display:flex;
    gap:3rem;
}

.nav-links a{
    position:relative;
    color:white;
    font-size:.85rem;
    letter-spacing:.5px;
    transition:var(--transition);
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--color-primary);
    transition:.3s;
}

.nav-links a:hover{
    color:var(--color-primary);
}

.nav-links a:hover::after{
    width:100%;
}
/* ==========================
   ACTIVE NAVIGATION
========================== */

.nav-links a.active{

    color:var(--color-primary);

}

.nav-links a.active::after{

    width:100%;

}

.nav-links a.active{
    color:var(--color-primary);
}

.nav-links a.active::after{
    width:100%;
}
/* ==========================
   HERO
========================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:720px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    background:#111;
}

.hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:0;
    transform:scale(1);
    transition:opacity 1.6s ease;
    animation:kenBurns 12s ease-in-out infinite alternate;
    z-index:0;
}

.hero-bg.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.62) 0%,
            rgba(0,0,0,.34) 35%,
            rgba(0,0,0,.28) 65%,
            rgba(0,0,0,.58) 100%
        );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    color:white;
    text-align:center;
    padding:90px 20px 40px;
}

.save-date{
    color:var(--color-primary);
    text-transform:uppercase;
    letter-spacing:9px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:18px;
}

.hero-date{
    color:white;
    text-transform:uppercase;
    letter-spacing:8px;
    font-size:.75rem;
    opacity:.95;
    margin-bottom:2.2rem;
}

.hero-title{
    font-family:var(--font-heading);
    font-size:clamp(6rem,11vw,10rem);
    font-weight:600;
    line-height:.92;
    color:white;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.25rem;
    margin-bottom:2rem;
}

.hero-title span{
    color:var(--color-primary);
    font-size:clamp(3.2rem,5vw,4.8rem);
    line-height:1;
}

.gold-line{
    width:120px;
    height:2px;
    background:var(--color-primary);
    margin:2rem auto;
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
    margin:2rem 0 2.5rem;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    letter-spacing:1px;
    transition:all .35s ease;
    cursor:pointer;
}

.btn-primary{
    background:var(--color-primary);
    color:white;
    box-shadow:0 12px 35px rgba(200,169,106,.35);
}

.btn-primary:hover{
    transform:translateY(-2px);
    background:var(--color-primary-dark);
    box-shadow:0 16px 45px rgba(200,169,106,.45);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.55);
    color:white;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(10px);
}

.btn-secondary:hover{
    background:rgba(255,255,255,.14);
    transform:translateY(-2px);
}
.btn{
    position:relative;
    overflow:hidden;
}

.btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );
    transition:.8s ease;
}

.btn:hover::before{
    left:120%;
}
/* ==========================
   COUNTDOWN
========================== */

.countdown{
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
}

.countdown-card{
    min-width:100px;
    padding:1rem 1.2rem;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-radius:var(--radius-medium);
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.countdown-card span{
    display:block;
    font-family:var(--font-heading);
    font-size:2.5rem;
    line-height:1;
    color:white;
}

.countdown-card small{
    display:block;
    margin-top:.5rem;
    font-size:.7rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,.82);
}
.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    z-index:10;

}

.scroll-indicator span{
    font-size:.65rem;
    letter-spacing:5px;
    text-transform:uppercase;
    opacity:.75;
}

.mouse{
    width:24px;
    height:40px;
    border:1.5px solid rgba(255,255,255,.75);
    border-radius:30px;
    display:flex;
    justify-content:center;
    padding-top:7px;
}

.wheel{
    width:4px;
    height:9px;
    border-radius:20px;
    background:var(--color-primary);
    animation:scrollWheel 1.8s infinite;
}

@keyframes scrollWheel{
    0%{
        transform:translateY(0);
        opacity:1;
    }

    100%{
        transform:translateY(14px);
        opacity:0;
    }
}
/* ==========================
   SECTION HEADING
========================== */

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    color:var(--color-primary);
    letter-spacing:6px;
    text-transform:uppercase;
    margin-bottom:20px;
    font-weight:600;
}

.section-heading h2{
    font-family:var(--font-heading);
    font-size:clamp(2.8rem,5vw,4.5rem);
    line-height:1.15;
    max-width:760px;
    margin:auto;
}

/* ==========================
   OUR STORY
========================== */

.story{
    padding:100px 0;
    background:var(--color-background);
}

.story-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:80px;
}

.story-card:last-child{
    margin-bottom:0;
}

.story-card.reverse .story-image{
    order:2;
}

.story-card.reverse .story-content{
    order:1;
}

.story-image img{
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.story-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.story-year{
    color:var(--color-primary);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:8px;
    margin-bottom:12px;
}

.story-content h3{
    font-family:var(--font-heading);
    font-size:3rem;
    margin:0 0 24px;
}

.story-content p{
    font-size:1.1rem;
    color:#555;
    line-height:1.9;
    max-width:540px;
}

/* ==========================
   WEDDING DETAILS
========================== */

.details{
    position:relative;
    padding:100px 0 120px;
    background:linear-gradient(
        180deg,
        #FAF8F4 0%,
        #F7F3EC 45%,
        #EFE8DC 100%
    );
}

.details .section-heading{
    margin-bottom:70px;
}

.details-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}

.detail-card{
    position:relative;
    overflow:hidden;
    min-height:320px;
    padding:40px;
    border-radius:28px;
    background:rgba(255,255,255,.70);
    border:1px solid rgba(255,255,255,.85);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 18px 55px rgba(0,0,0,.08);
    transition:all .35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.detail-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(200,169,106,.15),
        transparent 55%
    );
    opacity:0;
    transition:.35s ease;
}

.detail-card:hover{
    transform:translateY(-12px);
    box-shadow:0 35px 80px rgba(0,0,0,.15);
}

.detail-card:hover::before{
    opacity:1;
}

.detail-icon{
    font-size:.75rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:5px;
    color:var(--color-primary);
    margin-bottom:15px;
}

.detail-card h3{
    font-family:var(--font-heading);
    font-size:2.4rem;
    color:var(--color-text);
    margin-bottom:20px;
    line-height:1.1;
}

.detail-card p{
    font-size:1rem;
    color:var(--color-text-light);
    line-height:1.8;
}

/* ==========================
   CELEBRATION TIMELINE
========================== */

.timeline{
    padding:100px 0 120px;
    background:var(--color-background);
}

.section-intro{
    max-width:620px;
    margin:24px auto 0;
    color:#666;
    font-size:1rem;
}

.timeline-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
}

.timeline-group{
    background:white;
    border:1px solid rgba(200,169,106,.22);
    border-radius:30px;
    padding:48px;
    box-shadow:0 30px 80px rgba(0,0,0,.08);
}

.timeline-group h3{
    font-family:var(--font-heading);
    font-size:2.6rem;
    margin-bottom:34px;
    text-align:center;
}

.timeline-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.timeline-item{
    display:grid;
    grid-template-columns:54px 1fr;
    gap:18px;
    align-items:start;
    padding:18px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.timeline-item:last-child{
    border-bottom:none;
}

.timeline-item span{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(200,169,106,.15);
    color:var(--color-primary);
    font-weight:700;
    font-size:.85rem;
}

.timeline-item p{
    color:#444;
    line-height:1.7;
}

/* ==========================
   HERO INTRO ANIMATION
========================== */

.reveal{
    opacity:0;
    transform:translateY(24px);
    animation:fadeUp .9s ease forwards;
}

.reveal-card{
    opacity:0;
    transform:translateY(30px) scale(.96);
    animation:cardReveal .8s ease forwards;
}

.reveal-line{
    transform:scaleX(0);
    transform-origin:center;
    animation:lineGrow .9s ease forwards;
    animation-delay:3.6s;
}

.delay-1{ animation-delay:.4s; }
.delay-2{ animation-delay:1s; }
.delay-3{ animation-delay:1.7s; }
.delay-4{ animation-delay:2.3s; }
.delay-5{ animation-delay:2.9s; }
.delay-6{ animation-delay:4.2s; }
.delay-7{ animation-delay:5s; }
.delay-8{ animation-delay:5.25s; }
.delay-9{ animation-delay:5.5s; }
.delay-10{ animation-delay:5.75s; }

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes cardReveal{
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@keyframes lineGrow{
    to{
        transform:scaleX(1);
    }
}

@keyframes kenBurns{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}
@keyframes scrollWheel{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    100%{

        transform:translateY(16px);

        opacity:0;

    }

}
/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .details-grid,
    .timeline-wrapper{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .navbar{
        width:92%;
        padding:0 22px;
    }

    .nav-links{
        gap:1.2rem;
    }

    .nav-links a{
        font-size:.75rem;
    }

    .hero{
        min-height:100vh;
    }

    .hero-title{
        font-size:clamp(4.2rem,18vw,6rem);
    }

    .countdown-card{
        min-width:90px;
        padding:1rem;
    }

    .story-card,
    .story-card.reverse,
    .details-grid,
    .timeline-wrapper{
        grid-template-columns:1fr;
    }

    .story-card.reverse .story-image,
    .story-card.reverse .story-content{
        order:initial;
    }

    .story-image img{
        height:420px;
    }

    .detail-card{
        min-height:auto;
        padding:30px;
    }
}

/* ==========================
   LUXURY GALLERY
========================== */

.gallery{
    padding:100px 0 120px;
    background:#FAF8F4;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:260px;
    gap:22px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:26px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,.28)
    );
    opacity:0;
    transition:.45s ease;
}

.gallery-item:hover::after{
    opacity:1;
}

.gallery-item:hover{

    transform:translateY(-6px);

    border:2px solid var(--color-primary);

    box-shadow:0 35px 90px rgba(0,0,0,.18);

}
.gallery-item.tall{
    grid-row:span 2;
}

.gallery-item.wide{
    grid-column:span 2;
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.86);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:30px;
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:90%;
    max-height:85vh;
    border-radius:20px;
    box-shadow:0 30px 100px rgba(0,0,0,.45);
}

.lightbox-close{
    position:absolute;
    top:30px;
    right:40px;
    background:none;
    border:none;
    color:white;
    font-size:3rem;
    cursor:pointer;
}

@media(max-width:900px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:320px;
    }

    .gallery-item.tall,
    .gallery-item.wide{
        grid-row:auto;
        grid-column:auto;
    }
}

/* ==========================
   BLESSING ENHANCEMENTS
========================== */

.blessing-verse{
    margin:35px auto 0;
    max-width:650px;
    color:rgba(255,255,255,.9);
    font-style:italic;
    line-height:1.9;
}

.blessing-verse p{
    font-size:1.1rem;
}

.blessing-verse span{
    display:block;
    margin-top:12px;
    color:var(--color-primary);
    letter-spacing:3px;
    font-size:.8rem;
}

.character-count{
    text-align:right;
    margin-top:10px;
    color:rgba(255,255,255,.6);
    font-size:.8rem;
}

.success-message{
    display:none;
    margin-top:40px;
    color:white;
    animation:fadeUp .6s ease;
}

.success-message.show{
    display:block;
}

.success-icon{
    width:80px;
    height:80px;
    margin:0 auto 22px;
    border-radius:50%;
    background:var(--color-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    color:white;
}

.success-message h3{
    font-family:var(--font-heading);
    font-size:2.4rem;
    margin-bottom:10px;
}

.empty-blessings{
    margin-top:65px;
    text-align:center;
    color:white;
    opacity:.75;
}

.empty-blessings span{
    font-size:2rem;
}

.empty-blessings h3{
    margin:18px 0 8px;
    font-family:var(--font-heading);
    font-size:2rem;
}
.blessing{
    padding:120px 0;
    background:
        linear-gradient(rgba(0,0,0,.62),rgba(0,0,0,.62)),
        url("../images/hero/hero.jpg");
    background-size:cover;
    background-position:center;
}

.blessing-card{
    max-width:820px;
    margin:auto;
    padding:70px;
    border-radius:34px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    text-align:center;
    color:white;
    box-shadow:0 40px 100px rgba(0,0,0,.25);
}

.blessing-form{
    max-width:680px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.blessing-form input,
.blessing-form textarea{
    width:100%;
    padding:18px 22px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.14);
    color:white;
    font-family:var(--font-body);
    font-size:1rem;
    outline:none;
}

.blessing-form textarea{
    min-height:160px;
    resize:vertical;
}

.blessing-form input::placeholder,
.blessing-form textarea::placeholder{
    color:rgba(255,255,255,.7);
}
/* ==========================
   SCROLL REVEAL
========================== */

.reveal-section{
    opacity:0;
    transform:translateY(60px);
    transition:opacity .9s ease, transform .9s ease;
}

.reveal-section.visible{
    opacity:1;
    transform:translateY(0);
}

/* ==========================
   RSVP
========================== */

.rsvp{
    padding:120px 0;
    background:#111;
}

.rsvp-card{
    max-width:860px;
    margin:auto;
    padding:70px;
    border-radius:34px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    color:white;
    text-align:center;
    box-shadow:0 40px 100px rgba(0,0,0,.35);
}

.rsvp .section-heading h2{
    color:white;
}

.rsvp .section-intro{
    color:rgba(255,255,255,.75);
}

.rsvp-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:45px;
}

.rsvp-form .form-group:nth-child(5),
.rsvp-form .form-group:nth-child(6){
    grid-column:1 / -1;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea{
    width:100%;
    padding:18px 22px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.12);
    color:white;
    font-family:var(--font-body);
    font-size:1rem;
    outline:none;
}

.rsvp-form textarea{
    min-height:150px;
    resize:vertical;
}

.rsvp-form input::placeholder,
.rsvp-form textarea::placeholder{
    color:rgba(255,255,255,.65);
}

.rsvp-form select{
    color:rgba(255,255,255,.75);
}

.rsvp-form option{
    color:#111;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus{
    border-color:var(--color-primary);
    background:rgba(255,255,255,.16);
}

.rsvp-form button{
    grid-column:1 / -1;
    justify-self:center;
}

.rsvp-success{
    display:none;
    margin-top:45px;
    animation:fadeUp .6s ease;
}

.rsvp-success.show{
    display:block;
}

.rsvp-success h3{
    font-family:var(--font-heading);
    font-size:2.6rem;
    margin-bottom:10px;
}

.rsvp-success p{
    color:rgba(255,255,255,.78);
    line-height:1.8;
}

@media(max-width:768px){
    .rsvp-card{
        padding:40px 24px;
    }

    .rsvp-form{
        grid-template-columns:1fr;
    }
}

/* ==========================
   LUXURY LOADER
========================== */

.loader{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;

    background:#111;

    z-index:99999;

    opacity:1;
    visibility:visible;

    transition:
        opacity .8s ease,
        visibility .8s ease;

    overflow:hidden;
}

.loader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.loader-content{
    text-align:center;
    color:white;
}

.loader-content h1{
    font-family:var(--font-heading);
    font-size:clamp(4rem,8vw,7rem);
    font-weight:500;
    letter-spacing:8px;
    animation:fadeUp .9s ease forwards;
}

.loader-content h1 span{
    color:var(--color-primary);
}

.loader-line{
    width:0;
    height:2px;
    background:var(--color-primary);
    margin:26px auto;
    animation:loaderLine 1.2s ease forwards;
    animation-delay:.6s;
}

.loader-content p{
    letter-spacing:8px;
    text-transform:uppercase;
    font-size:.8rem;
    opacity:0;
    animation:fadeUp .9s ease forwards;
    animation-delay:1s;
}

@keyframes loaderLine{
    to{
        width:160px;
    }
}
.loader-title{

    margin-top:25px;

    font-size:.9rem;

    letter-spacing:8px;

    text-transform:uppercase;

    color:white;

    opacity:0;

    animation:fadeUp .8s forwards;

    animation-delay:1.1s;

}

.loader-date{

    display:block;

    margin-top:18px;

    color:var(--color-primary);

    letter-spacing:6px;

    font-size:.75rem;

    opacity:0;

    animation:fadeUp .8s forwards;

    animation-delay:1.6s;

}

.loader-content h1 span{
    display:inline-block;
    animation:heartbeat 1.5s infinite;
}

@keyframes heartbeat{
    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }
}
/* ==========================
   LUXURY FOOTER
========================== */

.footer{
    padding:120px 0;
    background:#0f0f0f;
    color:white;
    text-align:center;
}

.footer-content{
    max-width:760px;
}

.footer-verse{
    font-family:var(--font-heading);
    font-size:clamp(2rem,4vw,3.5rem);
    line-height:1.25;
    margin-bottom:20px;
}

.footer-reference{
    color:var(--color-primary);
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:.8rem;
}

.footer-line{
    width:120px;
    height:2px;
    background:var(--color-primary);
    margin:45px auto;
}

.footer h2{
    font-family:var(--font-heading);
    font-size:clamp(3rem,6vw,5rem);
    font-weight:500;
}

.footer h2 span{
    color:var(--color-primary);
}

.footer-date{
    margin-top:10px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:rgba(255,255,255,.75);
}

.footer-credit{
    margin-top:45px;
    font-size:.85rem;
    color:rgba(255,255,255,.45);
}

/* ==========================
   BACK TO TOP
========================== */

.back-to-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:58px;
    height:58px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    background:var(--color-primary);
    color:white;
    font-size:1.4rem;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;
    z-index:99999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ==========================
   MOBILE NAVIGATION
========================== */

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

    z-index:1100;

}

.menu-toggle span{

    width:28px;

    height:2px;

    background:white;

    transition:.35s;

}

@media(max-width:900px){

    .menu-toggle{

        display:flex;

    }

    nav{

        position:fixed;

        top:0;

        right:-100%;

        width:300px;

        height:100vh;

        background:rgba(17,17,17,.98);

        backdrop-filter:blur(20px);

        transition:.45s ease;

        display:flex;

        justify-content:center;

        align-items:center;

        z-index:1000;

    }

    nav.active{

        right:0;

    }

    .nav-links{

        flex-direction:column;

        gap:2rem;

        text-align:center;

    }

    .nav-links a{

        font-size:1.15rem;

    }

}