/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --dark-green:#0B3D2E;
    --gold:#C9A227;
    --ivory:#FAF7F0;
    --brown:#4E342E;
    --white:#FFFFFF;
    --black:#121212;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--black);
    color:var(--ivory);
    line-height:1.6;
}

/* HEADER */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:var(--dark-green);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.5);
}

.logo img{
    width:80px;
    height:80px;
    object-fit:cover;
}

.menu-toggle{
    display:none;
    font-size:2rem;
    color:white;
    cursor:pointer;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    color:var(--white);
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:var(--gold);
}

/* HERO SECTION */

.hero{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    padding:80px 8%;
    background:linear-gradient(
        rgba(11,61,46,0.9),
        rgba(18,18,18,0.9)
    );
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,0.5);
}
.hero-image:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(201,162,39,0.6);
}

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:3rem;
    color:var(--gold);
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.1rem;
    color:var(--ivory);
}

/* DISH SECTION */

.dishes{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    padding:80px 8%;
}

.dish-card{
    width:320px;
    background:#1c1c1c;
    border-radius:15px;
    overflow:hidden;
    border:1px solid rgba(201,162,39,0.3);
    transition:0.4s;
}

.dish-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(201,162,39,0.3);
}

.dish-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.dish-card h3{
    color:var(--gold);
    padding:15px 20px 5px;
}

.dish-card h4{
    color:#7cff9d;
    padding:0 20px;
}

.dish-card p{
    padding:10px 20px 20px;
    color:#ddd;
}

/* BUTTONS */

.buttons{
    text-align:center;
    padding-bottom:80px;
}

.btn{
    display:inline-block;
    text-decoration:none;
    background:var(--gold);
    color:var(--black);
    padding:14px 30px;
    margin:10px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
    background:var(--dark-green);
    color:var(--white);
}

/* ABOUT */

.about{
    display:flex;
    align-items:center;
    gap:50px;
    padding:80px 8%;
    background:#171717;
}

.about-text{
    flex:1;
}

.about-text h2{
    color:var(--gold);
    margin-bottom:20px;
    font-size:2rem;
}

.about-text p{
    color:#ddd;
    text-align:justify;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    height:600px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,0.5);
}
.about-image:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(201,162,39,0.6);
}

/* CONTACT */

.contact{
    display:flex;
    gap:50px;
    padding:80px 8%;
}

.contact-info{
    flex:1;
}

.contact-info h2{
    color:var(--gold);
    margin-bottom:20px;
}

.contact-info ul{
    list-style:none;
}

.contact-info li{
    margin-bottom:12px;
    color:#ddd;
}

.map{
    flex:1;
}

.map iframe{
    width:100%;
    height:300px;
    border-radius:15px;
}

/* FOOTER */

footer{
    background:var(--dark-green);
    text-align:center;
    padding:20px;
    color:var(--white);
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero,
    .about,
    .contact{
        flex-direction:column;
    }

    .hero-content{
        text-align:center;
    }
}

@media(max-width:768px){

    header{
        position:relative;
        flex-direction:row;
        justify-content:space-between;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--dark-green);
        display:none;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:0;
    }

    nav ul li{
        text-align:center;
        border-top:1px solid rgba(255,255,255,0.1);
    }

    nav ul li a{
        display:block;
        padding:15px;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:50px 20px;
    }

    .hero-content h1{
        font-size:2rem;
    }

    .hero-image img{
        width:100%;
    }

    .about{
        flex-direction:column;
        padding:50px 20px;
    }

    .about-image img{
        height:auto;
    }

    .contact{
        flex-direction:column;
        padding:50px 20px;
    }

    .dishes{
        padding:50px 20px;
    }

    .dish-card{
        width:100%;
        max-width:350px;
    }

    .buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:250px;
        text-align:center;
    }
}

/* BOOK TABLE */

.booking-section{
    max-width:700px;
    margin:60px auto;
    padding:40px;
    background:#1c1c1c;
    border-radius:15px;
}

.booking-section h2{
    text-align:center;
    color:#C9A227;
    margin-bottom:30px;
}

.booking-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.booking-form input{
    padding:15px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

.booking-form button{
    border:none;
    cursor:pointer;
}

/*popup*/
.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-content{
    background:#1c1c1c;
    color:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    width:350px;
    border:2px solid #C9A227;
}

.popup-content h2{
    color:#C9A227;
    margin-bottom:15px;
}

/*Menu*/
.menu-container{
    padding:80px 8%;
}

.menu-title{
    text-align:center;
    color:#C9A227;
    margin-bottom:50px;
    font-size:40px;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.dish-card{
    background:#1c1c1c;
    border-radius:15px;
    overflow:hidden;
    transition:0.4s;
    border:1px solid rgba(201,162,39,0.3);
}

.dish-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(201,162,39,0.4);
}

.dish-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.dish-content{
    padding:20px;
}

.dish-content h3{
    color:#C9A227;
}

.dish-content h4{
    color:#7cff9d;
    margin:10px 0;
}

.dish-content p{
    color:#ddd;
    margin-bottom:20px;
}

/*Search Bar*/
.search-box{
    text-align:center;
    margin:30px 0;
}

.search-box input{
    width:400px;
    max-width:90%;
    padding:15px;
    border-radius:30px;
    border:none;
}

/* ONLINE ORDER */

.order-section{
    max-width:700px;
    margin:60px auto;
    background:#1c1c1c;
    padding:40px;
    border-radius:15px;
}

.order-section h1{
    text-align:center;
    color:#C9A227;
    margin-bottom:30px;
}

.order-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.order-form input,
.order-form select,
.order-form textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

.order-form textarea{
    resize:none;
}