@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root{
    --gold:#9d7b47;
    --dark:#1e1b18;
    --cream:#f8f5ef;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    color:var(--dark);
    background:var(--cream);
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:rgba(255,255,255,0.95);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

.logo img{
    height:80px;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:var(--dark);
    font-weight:500;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    transition:0.3s;
    font-weight:600;
}

.btn-primary{
    background:var(--gold);
    color:white;
}

.btn-primary:hover{
    opacity:0.9;
}

.hero{
    height:100vh;
}

.hero-slide{
    height:100vh;
    background-size:cover;
    background-position:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content h1{
    font-size:5rem;
    font-family:'Cormorant Garamond',serif;
}

.hero-content p{
    max-width:700px;
    margin:20px 0;
}

.section{
    padding:100px 0;
}

.two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.rounded-img{
    width:100%;
    border-radius:20px;
}

.light-bg{
    background:white;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3,
.card p{
    padding:0 20px 20px;
}

.card h3{
    padding-top:20px;
}

.cta{
    background:linear-gradient(rgba(0,0,0,0.6),
    rgba(0,0,0,0.6)),
    url('/assets/images/hero-2.jpg');

    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.footer{
    background:#181512;
    color:white;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
}

.footer a{
    color:white;
    text-decoration:none;
}

.copyright{
    text-align:center;
    padding:30px 0;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,0.1);
}

.page-banner{
    background:var(--gold);
    color:white;
    padding:120px 20px;
    text-align:center;
}

.reservation-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.reservation-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.reservation-form input,
.reservation-form textarea,
.reservation-form select{
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.feature-list{
    margin-top:20px;
    padding-left:20px;
}

.feature-list li{
    margin-bottom:10px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:#000;
}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
}

h2{
    font-size:42px;
    margin-bottom:20px;
}

.card h3{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:28px;
}

.card p{
    padding-bottom:30px;
}

.card i{
    color:var(--gold);
}

.two-column p{
    margin-bottom:20px;
}

.footer p,
.footer li{
    margin-bottom:10px;
}

.page-banner h1{
    font-size:60px;
    font-family:'Cormorant Garamond',serif;
}

.contact-info{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.contact-info i{
    width:50px;
    height:50px;
    background:var(--gold);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:18px;
}

.social-links{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    transition:0.3s;
    font-size:18px;
}

.social-links a:hover{
    background:var(--gold);
    transform:translateY(-3px);
}

.footer i{
    margin-right:10px;
    color:var(--gold);
}

.section p{
    font-size:17px;
}

.card{
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.page-banner{
    position:relative;
    overflow:hidden;
}

.page-banner::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.3);
}

.page-banner h1{
    position:relative;
    z-index:2;
}

.desktop-nav{
    display:block;
}

.mobile-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:var(--dark);
}

.mobile-menu{
    display:none;
    flex-direction:column;
    background:white;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.mobile-menu a{
    padding:15px 0;
    text-decoration:none;
    color:var(--dark);
    border-bottom:1px solid #eee;
}

.mobile-menu.active{
    display:flex;
}

.mobile-book{
    margin-top:20px;
    text-align:center;
}

.testimonials{
    background:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:var(--cream);
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card i{
    font-size:40px;
    color:var(--gold);
    margin-bottom:20px;
}

.testimonial-card h4{
    margin-top:20px;
    font-size:24px;
}

.newsletter{
    background:linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    color:white;
    text-align:center;
    padding:120px 20px;
}

.newsletter-form{
    max-width:700px;
    margin:40px auto 0;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.newsletter-form input{
    flex:1;
    min-width:250px;
    padding:18px;
    border:none;
    border-radius:50px;
}

.newsletter-form button{
    border:none;
    cursor:pointer;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
}

.menu-category{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.menu-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.menu-item:last-child{
    border-bottom:none;
}

.menu-item h4{
    font-size:22px;
    margin-bottom:8px;
}

.menu-price{
    color:var(--gold);
    font-weight:700;
    white-space:nowrap;
}

.menu-image{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:25px;
}

.menu-description{
    margin:15px 0 25px;
}

.menu-category h2{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:34px;
}

.menu-category h2 i{
    color:var(--gold);
}

.menu-item p{
    margin-top:8px;
    font-size:15px;
}

@media(max-width:900px){

    nav{
        display:none;
    }

    .two-column,
    .reservation-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .page-banner h1{
        font-size:40px;
    }

    .desktop-nav,
    .desktop-btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .nav{
        padding:15px 0;
    }

}