/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#081421;
    color:white;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* LOADER */

#loader{
    position:fixed;
    width:100%;
    height:100vh;
    background:#081421;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:1s;
}

#loader video{
    width:250px;
}

/* HEADER */

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    padding:20px 0;
    transition:0.4s;
}

header.active{
    background:rgba(5,10,18,0.95);
    backdrop-filter:blur(10px);
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:120px;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#e5a65a;
}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    text-align:center;
    z-index:2;
    width:90%;
    animation:fadeUp 1.5s ease;
}

.hero-content h1{
    font-size:75px;
    line-height:1;
    color:#f1b46a;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#e5a65a;
    color:#081421;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.btn:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    background:transparent;
    border:2px solid #e5a65a;
    color:white;
}

/* INFO */

.info-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    padding:100px 10%;
}

.info-card{
    background:#102031;
    padding:40px;
    border-radius:25px;
    transition:0.4s;
}

.info-card:hover{
    transform:translateY(-10px);
}

.info-card h3{
    margin-bottom:15px;
    color:#f1b46a;
}

/* TITULOS */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#e5a65a;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:55px;
}

/* MENU */

.menu-section{
    padding:120px 10%;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.menu-card{
    background:#102031;
    border-radius:30px;
    overflow:hidden;
    transition:0.5s;
}

.menu-card:hover{
    transform:translateY(-12px);
}

.menu-img{
    overflow:hidden;
}

.menu-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s;
}

.menu-card:hover img{
    transform:scale(1.1);
}

.menu-content{
    padding:30px;
}

.menu-content h3{
    margin-bottom:15px;
    color:#f1b46a;
}

.menu-content span{
    display:block;
    margin-top:20px;
    font-size:25px;
    font-weight:700;
}

/* ABOUT */

.about-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    padding:120px 10%;
}

.about-img img{
    width:100%;
    border-radius:30px;
}

.about-content span{
    color:#e5a65a;
    font-weight:700;
}

.about-content h2{
    font-size:55px;
    margin:20px 0;
}

.about-content p{
    margin-bottom:20px;
    line-height:1.8;
}

/* MAP */

.location-section{
    padding:120px 10%;
}

.map-container{
    border-radius:30px;
    overflow:hidden;
}

.map-container iframe{
    width:100%;
    height:500px;
    border:0;
}

/* CONTACTO */

.contact-section{
    padding:120px 10%;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.contact-btn{
    background:#e5a65a;
    color:#081421;
    text-decoration:none;
    padding:20px 40px;
    border-radius:60px;
    font-weight:700;
    transition:0.4s;
}

.contact-btn:hover{
    transform:translateY(-8px);
}

/* FOOTER */

footer{
    background:#050b12;
    padding:70px 10%;
}

.footer-content{
    text-align:center;
}

.footer-content img{
    width:140px;
    margin-bottom:20px;
}

.footer-content p{
    margin-bottom:15px;
}

.footer-content span{
    color:#aaa;
}

/* ANIMACION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-content h1{
        font-size:45px;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-section{
        grid-template-columns:1fr;
    }

    nav{
        display:none;
    }

}