/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
}


.hero{
    position:relative;
    width:100%;
    height:85vh;
    min-height:700px;       
}

/* SCROLL DOWN */

.scroll-down{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    z-index:20;
}

.scroll-down span{
    display:block;
    width:20px;
    height:20px;
    border-bottom:3px solid #fbfbfb;
    border-right:3px solid #ffffff;
    transform:rotate(45deg);
    animation:scroll 2s infinite;
}

@keyframes scroll{

    0%{
        opacity:0;
        transform:rotate(45deg) translate(-10px,-10px);
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        transform:rotate(45deg) translate(10px,10px);
    }

}

.slide{
    position:absolute;
    width:100%;
    height:85vh;
    min-height:700px;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 2s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}
/* FLAGS */

.flags{
    position:absolute;
    bottom: 40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:20;
}

.flags img{
    width:40px;
    height: 40px;
    border-radius:50%;
    object-fit:contain;
    animation:float 3s ease-in-out infinite;
    box-shadow:0 0 15px rgba(255,255,255,0.3);
}

.flags img:nth-child(2){
    animation-delay:0.5s;
}

.flags img:nth-child(3){
    animation-delay:1s;
}

.flags img:nth-child(4){
    animation-delay:1.5s;
}

.flags img:nth-child(5){
    animation-delay:2s;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

.content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.logo{
    width:100px;
    margin-bottom:20px;
}

.small-title{
    letter-spacing:4px;
    margin-bottom:15px;
    font-size:14px;
    color:#d4af37;
}

h1{
    font-family:'Cinzel', serif;
    font-weight: bolder;
    font-size:65px;
    line-height:1.1;
    margin-bottom:10px;
}

h2{
    font-size:40px;
    color:#d4af37;
    margin-bottom:20px;
}

.subtitle{
    font-size:22px;
    margin-bottom:25px;
    max-width:700px;
}

.date-location{
    letter-spacing:3px;
    margin-bottom:30px;
    color:#ddd;
}

.buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.btn{
    padding:10px 25px;
    text-decoration:none;
    border-radius:30px;
    font: weight 450px;;
    transition:0.4s;
}

.gold{
    background:#d4af37;
    color:#000;
}

.gold:hover{
    transform:scale(1.05);
}

.transparent{
    border:2px solid #fff;
    color:#fff;
}

.transparent:hover{
    background:#fff;
    color:#000;
}

#countdown{
    margin-bottom:80px;
    display:flex;
    gap:25px;
}

#countdown div{
    text-align:center;
}

#countdown span{
    display:block;
    font-size:45px;
    font-weight:bold;
    color:#d4af37;
}

#countdown small{
    letter-spacing:2px;
}

.about,
.schedule{
    padding:100px 10%;
    text-align:center;
}

.section-title{
    font-family:'Cinzel', serif;
    font-size:40px;
    margin-bottom:40px;
    color:#ffffff;
}

.about p{
    max-width:900px;
    margin:auto;
    line-height:2;
    font-size:18px;
    color:#d4af37
}

.schedule-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.schedule-card{
    background:#111;
    padding:40px 30px;
    border-radius:20px;
    transition:0.4s;
}

.schedule-card:hover{
    transform:translateY(-10px);
    background:#1a1a1a;
}

.schedule-card h3{
    color:#d4af37;
    margin-bottom:15px;
}

.schedule-card h4{
    margin-bottom:10px;
}

footer{
    padding:50px 20px;
    text-align:center;
    background:#080808;
}

footer h2{
    margin-bottom:20px;
}

@media(max-width:768px){

    h1{
        font-size:40px;
    }

    h2{
        font-size:28px;
    }

    .subtitle{
        font-size:18px;
    }

    #countdown{
        flex-wrap:wrap;
        justify-content:center;
    }

    #countdown span{
        font-size:30px;
    }

}

/* about.css */


/* ACTIVE NAV LINK */

.active-link{
    color:#d4af37 !important;
}


/* ABOUT HERO */

.about-hero{
    position:relative;
    height:55vh;
    min-height:450px;
    background:url('assets/images/about-bg.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.about-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.about-hero-content{
    position:relative;
    z-index:2;
}

.about-hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.about-hero-content p{
    font-size:20px;
    color:#ddd;
    letter-spacing:2px;
}


/* ABOUT MAIN */

.about-main{
    padding:120px 10%;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.mini-title{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
}

.about-text h2{
    margin:20px 0 30px;
    line-height:1.4;
}

.about-text p{
    color:#bbb;
    line-height:2;
    margin-bottom:20px;
    font-size:17px;
}

.about-image img{
    width:100%;
    border-radius:25px;
}


/* EXPERIENCE SECTION */

.experience-section{
    padding:0 10% 120px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.experience-card{
    background:#111;
    padding:50px 35px;
    border-radius:25px;
    transition:0.4s;
    text-align:center;
}

.experience-card:hover{
    transform:translateY(-10px);
    background:#181818;
}

.experience-card h3{
    color:#d4af37;
    margin-bottom:20px;
    letter-spacing:2px;
}

.experience-card p{
    color:#bbb;
    line-height:1.8;
}


/* MOBILE */

@media(max-width:900px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-hero-content h1{
        font-size:40px;
    }

}