*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Montserrat',sans-serif;background:#000;overflow-x:hidden}

/* ========================= */
/* NAVBAR */
/* ========================= */
.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:50;
    padding:25px 0;
    text-align:center;
}

.logo{
    font-family:'Anton',sans-serif;
    font-size:34px;
    color:#025936;
    letter-spacing:2px;
}

.logo span{
    display:block;
    font-size:12px;
    color:#fff;
    letter-spacing:3px;
    margin-top:-5px;
}

.nav-links{
    margin-top:15px;
    display:flex;
    justify-content:center;
    gap:40px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s;
}

.nav-links a:hover{
    opacity:.7;
}

/* Dropdown */
.nav-links li:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown{
    position:absolute;
    top:30px;
    left:0;
    background:#111;
    padding:15px 0;
    width:160px;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
}

.dropdown a{
    display:block;
    padding:8px 20px;
    font-size:13px;
}

/* ========================= */
/* HERO */
/* ========================= */
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.75),rgba(0,0,0,.3),rgba(0,0,0,.6));
}

.hero-content{
    position:relative;
    z-index:10;
    width:1400px;
    max-width:95%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* BURGER */
.hero-img{
    width:600px;
}

.hero-img img{
    width:100%;
}

/* TEXTO */
.hero-text{
    text-align:center;
    font-family:'Anton',sans-serif;
    color:white;

}

.hero-text .top{
    font-size:84px;
    line-height:70px;
}

.hero-text .middle{
    font-size:124px;
    line-height:100px;
    color:#025936;
}

.hero-text .bottom{
    font-size:80px;
    line-height:70px;
}

.hero-text img{width:160px;}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media(max-width:1100px){
    .hero-content{
        flex-direction:column;
        gap:40px;
    }
    .hero-img{
        width:420px;
    }
    .hero-text .top{font-size:25px;}
    .hero-text .middle{font-size:40px;}
    .hero-text .bottom{font-size:25px;}
    .nav-links{
        gap:10px;
        flex-wrap:wrap;
    }
    .hero-text img{width:50%;}
}

/* ================= ABOUT SECTION ================= */
/* ================= ABOUT SECTION ================= */

.about{
    background:#0c0c0c;
    padding:120px 0;
}

.about-container{
    width:1200px;
    max-width:90%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* Imagen */
.about-img{
    flex:1;
    display:flex;
    justify-content:center;
}

.about-img img{
    width:500px;
    max-width:100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0px);}
}

/* Texto */
.about-text{
    flex:1.2;
    color:white;
}

.about-text h2{
    font-family:'Anton', sans-serif;
    font-size:54px;
    line-height:1.1;
    margin-bottom:35px;
    letter-spacing:1px;
    color:white;
}

.about-text p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:22px;
    color:#dcdcdc;
}

.about-text strong{
    color:white;
}

/* Botón estilo StreetFood */
.btn-outline{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s;
}

.btn-outline:hover{
    background:#025936;
    border-color:#025936;
}

/* Responsive */
@media(max-width:1000px){
    .about-container{
        flex-direction:column;
        text-align:center;
    }
    .about-text h2{
        font-size:38px;
    }
}

/* ================= MENU SECTION ================= */

.menu-section{
    background:#0c0c0c;
    padding:140px 0 160px;
    overflow:hidden;
}

.menu-container{
    width:1200px;
    max-width:90%;
    margin:auto;
    text-align:center;
}

.menu-title{
    font-family:'Anton', sans-serif;
    font-size:52px;
    color:white;
    margin-bottom:40px;
    letter-spacing:1px;
}

.menu-cta a{
    font-family:'Anton', sans-serif;
    font-size:36px;
    color:white;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.menu-cta a:hover{
    transform:scale(.9);
    color:#025936;
}

.menu-divider{
    width:100%;
    height:1px;
    background:#333;
    margin:50px 0 100px;
}

/* IMÁGENES */
.menu-images{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
}

.menu-images img{
    width:350px;
    max-width:100%;
}

/* Animación Scroll Horizontal */
.scroll-move-left{
    transform:translateX(450px);
    transition:transform .1s linear;
}

.scroll-move-right{
    transform:translateX(-450px);
    transition:transform .1s linear;
}

/* Responsive */
@media(max-width:1000px){
    .menu-images{
        flex-direction:column;
        gap:40px;
    }
}

/* ================= REVIEWS SECTION ================= */

/* ================= REVIEWS SECTION ================= */

.reviews-section{
    background:#025936;
    position:relative;
    padding-top:80px;
    color:white;
}

/* WAVE */
.wave-top{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    line-height:0;
}

.wave-top svg{
    width:100%;
    height:80px;
    fill:#0c0c0c; /* mantiene conexión con sección negra anterior */
}

/* MARQUEE */
.marquee-wrapper{
    background:#025936;
    overflow:hidden;
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,0.1);
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.marquee{
    display:flex;
    white-space:nowrap;
    font-family:'Anton', sans-serif;
    font-size:40px;
    color:white;
    gap:60px;
}

.marquee span{
    flex-shrink:0;
}

.marquee-left{
    animation:scrollLeft 20s linear infinite;
}

.marquee-right{
    animation:scrollRight 20s linear infinite;
}

@keyframes scrollLeft{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}

@keyframes scrollRight{
    0%{transform:translateX(-50%);}
    100%{transform:translateX(0);}
}

/* REVIEWS */
.reviews-container{
    padding:140px 0;
    width:1100px;
    max-width:90%;
    margin:auto;
    text-align:center;
}

.reviews-container h2{
    font-family:'Anton', sans-serif;
    font-size:48px;
    margin-bottom:60px;
    color:white;
}

.reviews-slider{
    display:flex;
    gap:40px;
    justify-content:center;
    flex-wrap:wrap;
}

.review{
    background:white;
    color:#111;
    padding:30px;
    width:300px;
    border-radius:8px;
    transition:.3s;
}

.review:hover{
    transform:translateY(-8px);
}

.review span{
    display:block;
    margin-top:15px;
    color: #e6aa2a;
    font-size:20px;
}

.review small{
    display:block;
    margin-top:10px;
    color:#555;
}

/* ================= LOCATIONS SECTION ================= */

.locations-section{
    background:#0c0c0c;
    position:relative;
    padding-top:120px;
    padding-bottom:160px;
    color:white;
}

/* WAVE NEGATIVO */
.wave-top-negative{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    line-height:0;
    transform:rotate(180deg);
}

.wave-top-negative svg{
    width:100%;
    height:80px;
    fill:#025936; /* conecta con la sección verde anterior */
}

/* CONTENEDOR */
.locations-container{
    width:1200px;
    max-width:90%;
    margin:auto;
    text-align:center;
}

.locations-container h2{
    font-family:'Anton', sans-serif;
    font-size:50px;
    margin-bottom:80px;
    color:white;
}

/* GRID */
.locations-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* CARD */
.location-card{
    background:#111;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.5);
    transition:.3s;
}

.location-card:hover{
    transform:translateY(-8px);
}

/* IMAGEN */
.location-image{
    height:220px;
    background-size:cover;
    background-position:center;
}

/* CONTENIDO */
.location-content{
    padding:25px;
}

.location-content h3{
    font-family:'Montserrat', sans-serif;
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:10px;
    color:white;
}

.location-content p{
    font-size:14px;
    margin:5px 0;
    text-transform:uppercase;
    color:#d0d0d0;
}

.phone{
    font-weight:800;
    margin-top:10px;
    color:white;
}

/* BOTONES */
.location-buttons{
    margin-top:20px;
    display:flex;
    gap:10px;
    justify-content:center;
}

.btn-reserve{
    background:#025936;
    color:white;
    padding:10px 18px;
    border-radius:40px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn-reserve:hover{
    background: #013c24;
}

.btn-map{
    background:#000;
    color:white;
    padding:10px 18px;
    border-radius:40px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
    border:1px solid #333;
}

.btn-map:hover{
    background:#222;
}

/* RESPONSIVE */
@media(max-width:1100px){
    .locations-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .locations-grid{
        grid-template-columns:1fr;
    }
}

/* ================= FOOTER ================= */

.main-footer{
    background:#025936;
    color:white;
    padding-top:80px;
}

/* CONTENEDOR */
.footer-container{
    width:1200px;
    max-width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:60px;
    padding-bottom:80px;
}

/* COLUMNAS */
.footer-col{
    flex:1;
}

.footer-col h4{
    font-family:'Montserrat', sans-serif;
    font-size:18px;
    margin-bottom:20px;
    letter-spacing:1px;
}

/* MENÚ */
.footer-menu,
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-menu li,
.footer-links li{
    margin-bottom:12px;
}

.footer-menu a,
.footer-links a{
    color:#ccc;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-menu a:hover,
.footer-links a:hover{
    color:#fff;
}

/* REDES */
.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:40px;
    height:40px;
    background:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    font-size:13px;
    transition:.3s;
}

.social-icons a:hover{
    background:#025936;
}

/* COPYRIGHT */
.footer-bottom{
    text-align:center;
    padding:25px 0;
    border-top:1px solid #222;
    font-size:13px;
    color:#aaa;
}

/* ================= MOBILE STICKY BAR ================= */

.mobile-bottom-bar{
    display:none;
}

@media(max-width:768px){

    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .mobile-bottom-bar{
        display:flex;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        background:#025936;
        z-index:999;
        border-top:1px solid #222;
    }

    .mobile-btn{
        flex:1;
        padding:18px 0;
        text-align:center;
        color:white;
        text-decoration:none;
        font-weight:700;
        border-right:1px solid #222;
    }

    .mobile-btn:last-child{
        border-right:none;
    }

    .mobile-btn:hover{
        background: #014329;
    }

    body{
        padding-bottom:70px; /* para que no tape contenido */
    }
}

.menu-iframe{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.menu-iframe iframe{
    width:100%;
    height:80vh;
    border:none;
}

.contact-section{
    background:#000;
    color:#fff;
    padding:180px 0 160px;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.contact-title{
    font-size:48px;
    font-weight:900;
    margin-bottom:20px;
    letter-spacing:2px;
}

.contact-subtitle{
    max-width:700px;
    margin:0 auto 60px auto;
    color:#ccc;
    font-size:18px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    text-align:left;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    background:#111;
    border:1px solid #333;
    padding:15px;
    color:#fff;
    font-size:16px;
    border-radius:5px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#014329;
}

.contact-form button{
    background:#014329;
    color:#fff;
    padding:15px;
    border:none;
    font-weight:700;
    letter-spacing:1px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background: #003722;
}

.contact-info h3{
    margin-bottom:20px;
    font-size:22px;
}

.contact-info p{
    margin-bottom:20px;
    color:#ccc;
}

.contact-social{
    margin-top:20px;
    display:flex;
    gap:20px;
}

.contact-social a{
    color:#014329;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.contact-social a:hover{
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
    .contact-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .contact-info{
        text-align:center;
    }

    .contact-social{
        justify-content:center;
    }
}

.gallery-slider-section{
    background:#000;
    color:#fff;
    padding:180px 0 160px;
}

.gallery-container{
    max-width:1300px;
    margin:auto;
    text-align:center;
}

.gallery-title{
    font-size:48px;
    font-weight:900;
    margin-bottom:20px;
    letter-spacing:2px;
}

.gallery-subtitle{
    color:#ccc;
    margin-bottom:60px;
    font-size:18px;
}

.gallerySwiper{
    width:100%;
}

.swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

.swiper-slide img{
    max-width:1000px;
    height:500px;
    border-radius:15px;
    transition:0.4s ease;
}

.swiper-slide img:hover{
    transform:scale(1.05);
    filter:brightness(0.8);
}

/* Flechas blancas */
.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

/* Paginación blanca */
.swiper-pagination-bullet{
    background:#fff;
    opacity:0.5;
}

.swiper-pagination-bullet-active{
    opacity:1;
}

/* Responsive */
@media(max-width:768px){
    .swiper-slide img{
        height:350px;
    }

    .gallery-title{
        font-size:32px;
    }
}

.reserva-section{
    background:#000;
    color:#fff;
    padding:180px 0 160px;
}


.reserva-container{
    position:relative;
    max-width:1100px;
    margin:auto;
    z-index:2;
}

.reserva-form{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.form-row{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.form-group{
    flex:1;
    display:flex;
    flex-direction:column;
}

.form-group.full{
    width:100%;
}

label{
    color: #00613b;
    margin-bottom:8px;
    font-weight:600;
}

input,
select{
    background:#e6e6e6;
    border:none;
    padding:15px;
    border-radius:5px;
    font-size:16px;
}

input:focus,
select:focus{
    outline:2px solid #014329;
}

.center{
    display:flex;
    justify-content:center;
}

.btn-reserva{
    background:#e6e6e6;
    border:2px solid #014329;
    color: #000000;
    padding:15px 50px;
    border-radius:40px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s ease;
}

.btn-reserva:hover{
    background:#014329;
    color: #ffffff;
}

/* Responsive */
@media(max-width:768px){
    .form-row{
        flex-direction:column;
    }
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #ff3c5f; /* Puedes poner el color de tu marca */
    transform: translateY(-4px);
}
