/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body{
    font-family:'Poppins', sans-serif;
    min-height:100vh;
}

.bg-fixed {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-color: #000;
    background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                      url("bg_landscape.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .bg-fixed {
        position: absolute;
        inset: 0;
        background-attachment: scroll;
        background-size: cover;
        transform: none;
    }
}


.welcome-modal{
    position:fixed;
    inset:0;

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

    background:rgba(0,0,0,.85);
    backdrop-filter:blur(10px);

    z-index:99999;
}

.welcome-card{
    width:min(500px,90%);
    padding:45px;

    text-align:center;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
}

.welcome-card i{
    font-size:2rem;
    color:#ffffff;
    margin-bottom:20px;
}

.welcome-card h1{
    color:#fff;
    margin-bottom:10px;
}

.welcome-card h2{
    color:#f7c6d5;
    margin-bottom:20px;
    font-weight:500;
}

.welcome-card p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:30px;
}

.welcome-card button{
    padding:16px 40px;
    width: fit-content;
    height: fit-content;

    border:none;
    border-radius:50px;

    background:#ff5c8a;
    color:#fff;

    font-size:1rem;
    font-weight:600;
    cursor:pointer;

    transition:all .3s ease;
}

.welcome-card button:hover{
    transform:translateY(-3px);
}
/* Navbar */

.navbar{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:70px;
    padding:0 8%;

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

    background:rgba(80,80,80,.35);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

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

    z-index:1000;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:1.6rem;
    font-weight:700;
    letter-spacing:1px;
}

.logo:hover{
    color:#fff;
}

.logo span{
    color:#d9d9d9;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:16px;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    opacity:.75;
}

#muteBtn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

#muteBtn:hover{
    background:rgba(255,255,255,.2);
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:2rem;
    cursor:pointer;
    user-select:none;
}

.hero{
    min-height: 100vh;
    padding-top:150px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.hero-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:40px;
}

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);

    color:#fff;
    font-size:2rem;

    text-decoration:none;
    opacity:.8;

    animation:bounce 2s infinite;
    transition:.3s;
}

.scroll-down:hover{
    opacity:1;
    color:#ff5c8a;
}

@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform:translateX(-50%) translateY(0);
    }

    40%{
        transform:translateX(-50%) translateY(-10px);
    }

    60%{
        transform:translateX(-50%) translateY(-5px);
    }
}

.weds{
    display:flex;
    /*flex-direction:column;*/
    align-items:center;
    justify-content:center;
    color:#fff;
}

.weds span{
    font-size:.8rem;
    letter-spacing:4px;
    font-weight:600;
    color:#f7c6d5;
}

.weds i{
    font-size:.9rem;
    color:#ff5c8a;
    margin:4px 0;
}

.tab{
    min-width:180px;
    padding:22px 40px;

    border:none;
    border-radius:18px;

    background:rgba(255,255,255,.08);
    color:#fff;

    font-size:1.2rem;
    font-weight:600;
    cursor:pointer;

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

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

    transition:.3s;
}

.tab:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.12);
}

.tab.active{
    background:#fff;
    color:#222;
}

.hero-content{
    width:min(700px,90%);
    text-align:center;
}

.content{
    display:none;
    animation:fade .35s ease;
}

.content.active{
    display:block;
}

.content h1{
    color:#fff;
    font-size:3rem;
    margin-bottom:20px;
}

.content p{
    color:#ddd;
    line-height:1.8;
    font-size:1.1rem;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.schedule{
    padding:40px 8% 80px;
    text-align:center;
}

.schedule h2{
    color:#fff;
    font-size:2.8rem;
    margin-bottom:50px;
}

.schedule-grid{
    max-width:850px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.schedule-item{
    display:flex;
    align-items:center;
    gap:20px;

    padding:25px;

    text-decoration:none;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);

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

    transition:.3s;
}

.schedule-item:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.12);
}

.schedule-item i{
    width:60px;
    height:60px;

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

    border-radius:50%;

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

    color:#ff5c8a;
    font-size:1.4rem;
}

.schedule-item h3{
    color:#fff;
    margin-bottom:5px;
    text-align:left;
}

.schedule-item p{
    color:#ddd;
    text-align:left;
}

.details h3{
    color:#fff;
    margin-bottom:6px;
}

.details a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.details a:hover{
    color:#fff;
}  

.gallery{
    padding:80px 8%;
    text-align:center;
}

.gallery h2{
    color:#fff;
    font-size:2.8rem;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid img,
.gallery-grid video{
    width:100%;
    aspect-ratio:1;

    object-fit:cover;

    border-radius:18px;

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

    transition:.3s;
}

.gallery-grid img:hover,
.gallery-grid video:hover{
    transform:scale(1.03);
}

.schedule,
.gallery{
    scroll-margin-top:90px;
}

html{
    scroll-behavior:smooth;
    background: #000000;
}

.lightbox{
    position:fixed;
    inset:0;

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

    background:rgba(0,0,0,.9);

    z-index:9999;
}

.lightbox.show{
    display:flex;
}

.lightbox img{
    max-width:90%;
    max-height:90%;

    border-radius:15px;
}

.close{
    position:absolute;
    top:25px;
    right:35px;

    color:#fff;
    font-size:40px;
    cursor:pointer;
}

.gallery-grid img{
    cursor:pointer;
}

@media (max-width:768px){

    .bg-fixed {
        position: fixed;
        transform: scale(1.9);
        inset: 0;
        z-index: -1;
        background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                    url("bg_portrait.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
   

    .navbar{
        height:65px;
        padding:0 20px;
    }

    .logo{
        font-size:1.2rem;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        position:absolute;
        top:65px;
        right:20px;
        gap:12px;
        padding:16px;
        background:rgba(20,20,20,1);
        backdrop-filter:blur(12px);
        -webkit-backdrop-filter:blur(12px);
        border:1px solid rgba(255,255,255,.5);
        border-radius:14px;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        font-size:.95rem;
    }

    .menu-toggle{
        display:block;
        font-size:2rem;
        margin-left: auto;
        color:#fff;
        cursor:pointer;
        line-height:1;
    }

    /* Hero */

    .hero{
        min-height: 100vh;
        padding:110px 20px 50px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:18px;
        margin-bottom:30px;
    }

    .weds{
        order:0;
    }

    .tab{
        width:100%;
        max-width:320px;
        min-width:unset;

        padding:18px 24px;

        font-size:1.05rem;
    }

    /* Content */

    .hero-content{
        width:100%;
    }

    .content h1{
        font-size:2.2rem;
    }

    .content p{
        font-size:1rem;
        line-height:1.7;
    }

    /* Schedule */

    .schedule{
        padding:50px 20px;
    }

    .schedule h2{
        font-size:2rem;
        margin-bottom:30px;
    }

    .schedule-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .schedule-item{
        padding:20px;
    }

    .schedule-item i{
        width:50px;
        height:50px;
        font-size:1.2rem;
    }

    .schedule-item h3{
        font-size:1rem;
    }

    .schedule-item p{
        font-size:.9rem;
    }

}