/* custom.css */

:root{
    --primary:#14241b;
    --dark:#14241b;
    --beige:#dae3dc;
    --text:#454545;

    --white:#ffffff;
    --border:#dbe8de;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:var(--white);
}

h1,h2,h3,h4,h5{
    font-family:'Cormorant Garamond',serif;
    color:var(--dark);
}

.section-space{
    padding:120px 0;
}

.section-tag{
    color:var(--primary);
    font-size:.8rem;
    letter-spacing:3px;
    font-weight:600;
}

.section-title{
    font-size:4rem;
    line-height:1;
    margin:20px 0;
    font-weight:700;
}

.section-title em{
    font-style:italic;
}

.section-text{
    max-width:700px;
    font-size:1.1rem;
}

/* NAVBAR */

.custom-navbar{
    background:#ffffff;
    border-bottom:1px solid rgba(20,36,27,.06);
}

.logo-box{
    width:34px;
    height:34px;
    border-radius:8px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.brand-name{
    margin-left:12px;
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    font-weight:700;
    color:var(--dark);
}

.nav-link{
    color:#5d514b;
    margin:0 12px;
}

.phone{
    font-size:.95rem;
}

/* BUTTONS */

.btn-primary-custom{
    background:var(--primary);
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    text-decoration:none;
    border:none;
}

.btn-primary-custom:hover{
    background:#b95741;
    color:#fff;
}

.btn-outline-custom{
    border:1px solid rgba(255,255,255,.7);
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    text-decoration:none;
}

.btn-outline-custom-dark{
    border:1px solid #ddd;
    color:var(--dark);
    padding:12px 24px;
    border-radius:10px;
    text-decoration:none;
}

/* HERO */

.hero-section{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.hero-content{
    position:absolute;
    z-index:2;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
}

.hero-content h1{
    color:#fff;
    font-size:5.5rem;
    line-height:.95;
    max-width:850px;
}

.hero-content p{
    max-width:650px;
    font-size:1.2rem;
    margin-top:24px;
}

/* FOOD */

.food-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.food-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.large-card{
    height:700px;
}

.small-card{
    height:338px;
}

.food-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.75), transparent);
    display:flex;
    flex-direction:column;
    justify-content:end;
    padding:30px;
    color:#fff;
}

.food-overlay h3{
    color:#fff;
}

/* MENU */

.bg-light-custom{
    background:var(--beige);
}

.menu-section{
    background:var(--beige);
}

.event-section{
    background:var(--beige);
}

/* TITULOS */

.section-tag{
    display:inline-block;
    font-size:12px;
    letter-spacing:3px;
    color:var(--primary);
    text-transform:uppercase;
    margin-bottom:18px;
    font-weight:600;
}

.section-title{
    font-size:72px;
    line-height:1;
    font-weight:700;
    color:var(--dark);
    margin-bottom:28px;
    font-family:'Cormorant Garamond', serif;
}

.section-title em{
    font-style:italic;
}

.section-description{
    max-width:760px;
    font-size:29px;
    line-height:1.5;
    color:var(--text);
    margin-bottom:60px;
}

/* TABS */

.menu-tabs{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:80px;
}

.menu-tabs button{
    height:54px;
    padding:0 30px;
    border-radius:40px;
    border:1px solid #d9c8bc;
    background:white;
    color:var(--dark);
    font-size:18px;
    transition:.2s;
}

.menu-tabs button.active{
    background:var(--primary);
    border-color:var(--primary);
    color:white;
}

/* CATEGORY */

.menu-category h3{
    font-size:56px;
    margin-bottom:55px;
    color:var(--dark);
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
}

/* ITEM */

.menu-item{
    margin-bottom:55px;
}

.menu-item-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:10px;
}

/* TITULO */

.menu-item h4{
    margin:0;
    font-size:34px;
    line-height:1.1;
    white-space:break-spaces;
    color:var(--dark);
    font-family:'Cormorant Garamond', serif;
    font-weight:600;
}

/* LINEA */

.menu-divider {
    flex: 1;
    border-bottom: 1px dashed #23271b;
    transform: translateY(10px);
}

/* PRECIO */

.menu-item span{
    font-size:32px;
    font-weight:700;
    color:var(--primary);
    font-family:'Cormorant Garamond', serif;
    white-space:nowrap;
}

/* DESCRIPCION */

.menu-item p{
    margin:0;
    font-size:22px;
    line-height:1.5;
    color:var(--text);
    padding-right:60px;
}


/* EVENTOS */

.event-card{
    border-radius:20px;
    padding:35px;
    height:100%;
    background:var(--white);
    border:1px solid var(--border);
}

.event-card i{
    font-size:1.5rem;
    color:var(--primary);
}

/* GALLERY */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.gallery-grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:18px;
    display:block;
    transition:transform .35s ease, opacity .35s ease;
}

.gallery-grid img:hover{
    transform:scale(1.02);
    opacity:.92;
}

/* Tablet */
@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid img{
        height:260px;
    }
}

/* Móvil */
@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid img{
        height:240px;
    }
}

/* CONTACT */

.contact-item{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.contact-item i{
    color:var(--primary);
    font-size:1.4rem;
}

/* FOOTER */

.footer-section{
    background:#101c15;
    color:#d6e4d8;
    padding:100px 0 50px;
}

.footer-section h5{
    color:#d6e4d8;
    margin-bottom:25px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#d6e4d8;
    text-decoration:none;
}


/* SECTION */

.event-section{
    padding:120px 0;
    background:var(--beige);
}

/* GALLERY */

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

.gallery-large{
    grid-column:1/3;
}

.gallery-large img,
.gallery-small img{
    width:100%;
    border-radius:14px;
    object-fit:cover;
}



.gallery-small img{
    height:280px;
}

/* STATS */

.stats-wrapper{
    display:flex;
    gap:60px;
    margin-top:35px;
}

.stat-box{
    position:relative;
    padding-left:14px;
}

.stat-box::before{
    content: '';
    position: absolute;
    left: 0;
    top: 23px;
    width: 2px;
    height: 63px;
    background: #14241b;
}

.stat-box h3{
    font-size:3rem;
    line-height:1;
    margin-bottom:8px;
    font-family:'Cormorant Garamond',serif;
    color:#2c1d18;
}

.stat-box p{
    margin:0;
    font-size:1rem;
    color:#5f534d;
    line-height:1.4;
    letter-spacing:.5px;
}

/* FORM */

.form-card{
    background: #b6cdbb;
    border: 1px solid #9dbba5;
    border-radius: 16px;
    padding: 34px;
}

.section-tag{
    color:var(--primary);
    font-size:.8rem;
    letter-spacing:3px;
    font-weight:600;
}

.form-title{
    font-size:4rem;
    line-height:1;
    margin:18px 0;
    font-family:'Cormorant Garamond',serif;
    color:var(--dark);
}

.form-text{
    font-size:1.1rem;
    color:#6c5d56;
    margin-bottom:35px;
    max-width:520px;
}

/* LABELS */

.form-card label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
    color:#342722;
}

/* INPUTS */

.form-control,
.form-select{
    height:54px;
    border-radius:10px;
    background:#ffffff;
    border:1px solid var(--border);
    padding:12px 16px;
    box-shadow:none !important;
}

.form-control:focus,
.form-select:focus{
    color:var(--primary);
    border-color:var(--primary);
}

/* TEXTAREA */

.textarea-custom{
    min-height:120px;
    resize:none;
    padding-top:16px;
}

/* BUTTON */

.btn-event{
    height:58px;
    border:none;
    border-radius:10px;
    background:var(--primary);
    color:#fff;
    font-size:1.1rem;
    font-weight:500;
    transition:.3s;
}

.btn-event:hover{
    background:#1f3529;
    color:#fff;
}

.btn-event i{
    margin-right:10px;
}

/* LEGAL */

.legal-text{
    margin-top:20px;
    font-size:.9rem;
    color:#7a6d67;
}


html {
    scroll-behavior: smooth;
}

/* ========================= */
/* TABS */
/* ========================= */

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 45px;
    margin-bottom: 70px;
}

.menu-tabs a {
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid #2e463b;
    color: #14241b;
    background: #f0fff3;
    font-weight: 500;
    transition: .25s ease;
}

.menu-tabs a:hover,
.menu-tabs a.active {
    background: #14241b;
    color: #fff;
}

/* ========================= */
/* CATEGORY */
/* ========================= */

.menu-category {
    margin-bottom: 40px;
    scroll-margin-top: 120px;
}

.menu-category h3 {
    font-size: 52px;
    margin-bottom: 45px;
    color: #14241b;
    font-weight: 700;
}

/* ========================= */
/* MENU ITEM */
/* ========================= */

.menu-item {
    display: flex;
    gap: 18px;
    margin-bottom: 34px;
    align-items: flex-start;
}

.menu-thumb{
    width:82px;
    min-width:82px;
    height:82px;
    border-radius:16px;
    overflow:hidden;
}

.menu-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.menu-item:hover .menu-thumb img {
    transform: scale(1.08);
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.menu-item-header h4 {
    margin: 0;
    font-size: 25px;
    color: #14241b;
    white-space: break-spaces;
    font-weight: 700;
}

.menu-divider {
    flex: 1;
    border-bottom: 1px dashed rgba(20, 36, 27, 0.18);
    transform: translateY(2px);
}

.menu-item-header span {
    font-size: 24px;
    color: #2e463b;
    font-weight: 700;
    white-space: nowrap;
}

.menu-item p {
    margin: 0;
    color: #454545;
    font-size: 17px;
    line-height: 1.6;
}

/* =========================================
   CONTENEDOR CARTA
========================================= */

.menu-window{
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;

    padding-right: 10px;

    scroll-behavior: smooth;
}

/* Scroll bonito */

.menu-window::-webkit-scrollbar{
    width: 8px;
}

.menu-window::-webkit-scrollbar-track{
    background: transparent;
}

.menu-window::-webkit-scrollbar-thumb{
    background: #14241b;
    border-radius: 20px;
}

/* =========================================
   CATEGORIAS
========================================= */

.menu-category {
    padding: 20px 0;
}

.menu-category h3{
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: #14241b;
    font-weight: 700;
}

/* =========================================
   ITEMS
========================================= */

.menu-item{
    display: flex;
    gap: 18px;

    margin-bottom: 32px;

    align-items: flex-start;
}

/* =========================================
   IMAGEN
========================================= */

.menu-thumb{
    width: 92px;
    min-width: 92px;
    height: 92px;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.menu-thumb img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}

.menu-item:hover .menu-thumb img{
    transform: scale(1.08);
}

/* =========================================
   CONTENIDO
========================================= */

.menu-item-content{
    flex: 1;
}

/* =========================================
   HEADER
========================================= */

.menu-item-header{
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 6px;
}

/* =========================================
   TITULO
========================================= */

.menu-item-header h4{
    margin: 0;

    font-size: 1.18rem;
    font-weight: 700;

    color: #14241b;

    display: flex;
    align-items: center;
    gap: 8px;

    white-space: nowrap;
}

/* =========================================
   LINEA PUNTOS
========================================= */

.menu-divider{
    flex:1;
    border-bottom:1px dotted rgba(20,36,27,.25);
    margin:0 14px;
    transform:translateY(-2px);
}

/* =========================================
   PRECIO
========================================= */

.menu-item-header span:last-child{
    font-size: 1.3rem;
    font-weight: 700;

    color: #14241b;

    white-space: nowrap;
}

/* =========================================
   DESCRIPCION
========================================= */


.menu-item p{
    margin:6px 0 0;
    color:#5f5f5f;
    font-size:.95rem;
    line-height:1.5;
}

.menu-item-header h4{
    margin:0;
    font-size:1.05rem;
    font-weight:700;
    text-transform:uppercase;
    white-space:nowrap;
}

/* =========================================
   ALERGENOS
========================================= */
.allergens{
    display:inline-flex;
    gap:4px;
    margin-left:8px;
    font-size:.9rem;
    vertical-align:middle;
}


/* =========================================
   TABS
========================================= */

.menu-tabs{
    display: flex;
    gap: 12px;

    flex-wrap: wrap;

    margin: 40px 0;
}

.menu-tabs button{
    border: 1px solid #14241b;

    background: transparent;

    color: #14241b;

    border-radius: 50px;

    padding: 12px 24px;

    transition: .3s ease;

    font-weight: 600;
}

.menu-tabs button:hover,
.menu-tabs button.active{
    background: #14241b;
    color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .menu-item{
        gap: 14px;
    }

    .menu-thumb{
        width: 74px;
        min-width: 74px;
        height: 74px;
    }

    .menu-item-header{
        align-items: flex-start;
    }

    .menu-item-header h4{
        white-space: normal;
        font-size: 1rem;
    }

    .menu-item-header span:last-child{
        font-size: 1rem;
    }

    .menu-category h3{
        font-size: 1.8rem;
    }

}


/* RESPONSIVE */

@media(max-width:992px){

    .hero-content h1{
        font-size:3.5rem;
    }

    .section-title{
        font-size:3rem;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .large-card{
        height:500px;
    }

    .small-card{
        height:250px;
    }

    .form-title{
        font-size:3rem;
    }

    .stats-wrapper{
        flex-wrap:wrap;
        gap:30px;
    }

    .gallery-large img{
        height:240px;
    }

    .gallery-small img{
        height:200px;
    }

}



/* RESPONSIVE */

@media(max-width:992px){

    .section-title{
        font-size:52px;
    }

    .section-description{
        font-size:22px;
    }

    .menu-category h3{
        font-size:42px;
    }

    .menu-item h4{
        font-size:26px;
        white-space:normal;
    }

    .menu-item span{
        font-size:24px;
    }

    .menu-item p{
        font-size:18px;
        padding-right:0;
    }

}

@media(max-width:768px){

    .menu-item-header{
        align-items:flex-start;
    }

    .menu-divider{
        margin-top:16px;
    }

}
