
/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: 'Roboto', sans-serif;
    background:#0f0f0f;
    color:white;
    line-height:1.6;
}

/* ===== HEADER ===== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(10px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
    font-family:'Oswald', sans-serif;
    font-size:2.2rem;
    letter-spacing:4px;
    color:#d4a762;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:white;
    font-size:1rem;
    font-weight:500;
    transition:0.3s ease;
    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#d4a762;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

nav a:hover{
    color:#d4a762;
}

/* ===== HERO ===== */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?q=80&w=1400&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-content{
    max-width:850px;
}

.hero-content h1{
    font-family:'Oswald', sans-serif;
    font-size:5.5rem;
    letter-spacing:6px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.3rem;
    color:#d7d7d7;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:15px 38px;
    background:#d4a762;
    color:black;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:0.3s ease;
}

.hero-btn:hover{
    background:white;
    transform:translateY(-3px);
}

/* ===== SECTIONS ===== */

section{
    padding:110px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:65px;
}

.section-title h2{
    font-family:'Oswald', sans-serif;
    font-size:3rem;
    color:#d4a762;
    margin-bottom:12px;
}

.section-title p{
    color:#999;
    font-size:1rem;
}

/* ===== MENU ===== */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.menu-card{
    background:#1a1a1a;
    border-radius:22px;
    overflow:hidden;
    transition:0.35s ease;
    border:1px solid rgba(255,255,255,0.05);
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.menu-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.6);
}

.menu-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.menu-content{
    padding:28px;
}

.menu-content h3{
    font-size:1.6rem;
    margin-bottom:12px;
    font-family:'Oswald', sans-serif;
}

.menu-content p{
    color:#b8b8b8;
    margin-bottom:20px;
    font-size:0.97rem;
}

.price{
    font-size:1.2rem;
    color:#d4a762;
    font-weight:bold;
}

/* ===== ABOUT ===== */

.about{
    background:#181818;
    padding:65px;
    border-radius:30px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
}

.about p{
    max-width:850px;
    margin:auto;
    color:#c6c6c6;
    font-size:1.08rem;
}

/* ===== CONTACT ===== */

.contact-box{
    background:#181818;
    border-radius:30px;
    text-align:center;
    padding:55px;
    border:1px solid rgba(255,255,255,0.05);
}

.contact-box p{
    margin:18px 0;
    font-size:1.05rem;
    color:#d4d4d4;
}

/* ===== FOOTER ===== */

footer{
    background:black;
    text-align:center;
    padding:35px;
    color:#777;
    border-top:1px solid rgba(255,255,255,0.05);
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#d4a762;
    border-radius:20px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){

    .hero-content h1{
        font-size:4rem;
    }

    nav ul{
        gap:20px;
    }

}

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:15px;
        padding:18px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    section{
        padding:90px 6%;
    }

    .section-title h2{
        font-size:2.3rem;
    }

    .about{
        padding:40px 25px;
    }

    .contact-box{
        padding:40px 25px;
    }

}
