
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
    overflow-x: hidden;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 7%;
    background-color: black;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.logo{
    font-size: 32px;
    font-weight: bold;
    color: #d4af37;
    letter-spacing: 2px;
}

.nav-links{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-links a{
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover{
    color: #d4af37;
}

.hero{
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 140px 8% 80px;
}

.hero-text{
    width: 50%;
}

.hero-text h1{
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 25px;
}

.hero-text p{
    font-size: 20px;
    line-height: 35px;
    color: #bdbdbd;
    margin-bottom: 35px;
    max-width: 550px;
}

.btn{
    display: inline-block;
    padding: 15px 35px;
    background-color: #d4af37;
    color: black;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover{
    background-color: white;
}

.hero-image{
    width: 45%;
    display: flex;
    justify-content: center;
}

.hero-image img{
    width: 100%;
    max-width: 550px;
}

.features{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 8%;
    background-color: #0d0d0d;
}

.feature-box{
    background-color: #111;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    transition: 0.3s;
}

.feature-box:hover{
    transform: translateY(-10px);
}

.feature-box h3{
    color: #d4af37;
    font-size: 26px;
    margin-bottom: 20px;
}

.feature-box p{
    color: #bdbdbd;
    line-height: 30px;
}

.about-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 150px 8% 100px;
}

.about-image{
    width: 45%;
}

.about-image img{
    width: 100%;
    border-radius: 10px;
}

.about-text{
    width: 50%;
}

.about-text h1{
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 30px;
}

.about-text p{
    font-size: 18px;
    line-height: 35px;
    color: #bdbdbd;
    margin-bottom: 25px;
}

.about-features{
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.about-box{
    background-color: #111;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 180px;
}

.about-box h3{
    color: #d4af37;
    font-size: 35px;
    margin-bottom: 10px;
}

.about-box p{
    color: white;
    font-size: 16px;
}

.menu-section{
    padding: 150px 8% 100px;
    text-align: center;
}

.menu-section h1{
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 40px;
}

.filter-buttons{
    margin-bottom: 50px;
}

.filter-btn{
    padding: 12px 25px;
    margin: 10px;
    border: none;
    background-color: #111;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active{
    background-color: #d4af37;
    color: black;
}

.menu-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.menu-card{
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.menu-card:hover{
    transform: translateY(-10px);
}

.menu-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-card h3{
    margin: 20px 0 10px;
    font-size: 25px;
}

.menu-card p{
    color: #d4af37;
    font-size: 20px;
    font-weight: bold;
}

.gallery-section{
    padding: 150px 8% 100px;
    text-align: center;
}

.gallery-section h1{
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 50px;
}

.gallery-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 25px;
}

.gallery-item{
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item img:hover{
    transform: scale(1.1);
}

.contact-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 150px 8% 100px;
}

.contact-info{
    width: 40%;
}

.contact-info h1{
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 30px;
}

.contact-info p{
    font-size: 20px;
    color: #bdbdbd;
    margin-bottom: 20px;
}

.contact-form{
    width: 50%;
}

.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea{
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #111;
    color: white;
    font-size: 16px;
}

.contact-form textarea{
    height: 150px;
    resize: none;
}

.contact-form button{
    padding: 15px;
    border: none;
    background-color: #d4af37;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover{
    background-color: white;
}

#formMessage{
    margin-top: 20px;
    color: #d4af37;
    font-size: 18px;
}

footer{
    background-color: black;
    text-align: center;
    padding: 30px;
    color: #888;
    border-top: 1px solid #1a1a1a;
}

@media(max-width:991px){

    .navbar{
        flex-direction: column;
        gap: 15px;
    }

    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero,
    .about-section,
    .contact-section{
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image,
    .about-image,
    .about-text,
    .contact-info,
    .contact-form{
        width: 100%;
    }

    .hero{
        padding-top: 180px;
    }

    .hero-text h1{
        font-size: 55px;
        line-height: 70px;
    }

    .features{
        flex-direction: column;
        align-items: center;
    }

    .about-features{
        flex-wrap: wrap;
        justify-content: center;
    }

}
#theme-toggle{
    padding: 10px 20px;
    border: none;
    background-color: #d4af37;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#theme-toggle:hover{
    background-color: white;
}

.light-mode{
    background-color: white;
    color: black;
}

.light-mode .navbar{
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.light-mode .nav-links a{
    color: black;
}

.light-mode .hero,
.light-mode .features,
.light-mode .menu-card,
.light-mode .about-box,
.light-mode .contact-form input,
.light-mode .contact-form textarea{
    background-color: #f5f5f5;
    color: black;
}

.light-mode p,
.light-mode h1,
.light-mode h2,
.light-mode h3{
    color: black;
}

.light-mode footer{
    background-color: #f5f5f5;
    color: black;
}
