
:root{
    --primary:#8b1c1c;
    --gold:#d4af37;
    --dark:#0b0b0b;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
    font-family:'Inter',sans-serif;
    background:var(--dark);
    color:#ddd;
}

/* ================= HEADER ================= */
header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    padding:22px 90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
    border-bottom:1px solid rgba(212,175,55,.15);
}

header h1{
    font-family:'Playfair Display',serif;
    font-size:30px;
    color:var(--gold);
    letter-spacing:1.5px;
}

/* Desktop Nav */
.desktop-nav a{
    color:#fff;
    margin-left:35px;
    text-decoration:none;
    font-weight:500;
    letter-spacing:1px;
    position:relative;
}

.desktop-nav a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:0.4s;
    transform:translateX(-50%);
}
.desktop-nav a:hover::after{ width:60%; }

/* Hamburger */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}
.hamburger span{
    height:3px;
    width:26px;
    background:var(--gold);
    margin:4px 0;
    border-radius:3px;
}

/* Mobile Drawer */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:#0b0b0b;
    padding:120px 40px;
    display:flex;
    flex-direction:column;
    transition:.4s ease;
    z-index:999;
}
.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:22px;
    margin-bottom:30px;
    font-family:'Playfair Display',serif;
    letter-spacing:1px;
}
.mobile-menu a:hover{ color:var(--gold); }
.mobile-menu.active{ right:0; }

/* ================= HERO ================= */
.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.85)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947") center/cover;
    display:flex;
    align-items:center;
    padding:0 90px;
}

.hero-content{
    max-width:720px;
}

.hero h2{
    font-family:'Playfair Display',serif;
    font-size:72px;
    color:#fff;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    line-height:1.9;
    color:#ccc;
    margin-bottom:45px;
}

.hero button{
    background:transparent;
    color:var(--gold);
    border:2px solid var(--gold);
    padding:16px 55px;
    font-size:15px;
    letter-spacing:2px;
    cursor:pointer;
    transition:.4s;
}
.hero button:hover{
    background:var(--gold);
    color:#000;
}

/* ================= SECTIONS ================= */
section{
    padding:130px 90px;
}

.divider{
    width:80px;
    height:2px;
    background:var(--gold);
    margin:30px auto;
}

/* Intro */
.intro{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.intro h3{
    font-family:'Playfair Display',serif;
    font-size:46px;
    color:var(--gold);
    margin-bottom:20px;
}

.intro p{
    line-height:2;
    color:#bbb;
}

.intro img{
    width:100%;
    border-radius:12px;
    box-shadow:0 30px 80px rgba(0,0,0,.6);
}

/* Menu */
.menu-title{
    text-align:center;
}
.menu-title h2{
    font-family:'Playfair Display',serif;
    font-size:52px;
    color:var(--gold);
}

.menu-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:50px;
}

.menu-card{
    background:linear-gradient(180deg,#111,#0a0a0a);
    border-radius:14px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(212,175,55,.15);
}
.menu-card:hover{ transform:translateY(-12px); }

.menu-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.menu-card div{
    padding:30px;
}

.menu-card h4{
    font-family:'Playfair Display',serif;
    font-size:24px;
    color:#fff;
}

.menu-card span{
    color:var(--gold);
    font-size:14px;
    letter-spacing:1px;
}

/* Experience */
.experience{
    background:
    linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.9)),
    url("") center/cover;
    text-align:center;
}
.experience h2{
    font-family:'Playfair Display',serif;
    font-size:54px;
    color:var(--gold);
}
.experience p{
    max-width:850px;
    margin:35px auto 0;
    color:#ccc;
    line-height:2;
}

/* CTA */
.cta{
    text-align:center;
    background:#0d0d0d;
}
.cta h2{
    font-family:'Playfair Display',serif;
    font-size:46px;
    color:#fff;
    margin-bottom:30px;
}
.cta button{
    background:var(--primary);
    border:none;
    color:#fff;
    padding:18px 60px;
    font-size:15px;
    letter-spacing:2px;
    cursor:pointer;
}
.cta button:hover{ background:#b71c1c; }

/* Footer */
footer{
    background:#000;
    padding:45px;
    text-align:center;
    color:#777;
}
footer span{ color:var(--gold); }

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    header{padding:20px 30px;}
    .desktop-nav{display:none;}
    .hamburger{display:flex;}
    .hero{padding:0 30px;}
    .hero h2{font-size:48px;}
    section{padding:90px 30px;}
    .intro{grid-template-columns:1fr;}
}

.btn-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff4c4c; /* button color */
    color: #fff;               /* text color */
    text-decoration: none;     /* remove underline */
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-link:hover {
    background-color: #e04343; /* darker on hover */
}