* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f8f8f8;
    color: #333;
}

/* Navigation */
header {
    width: 100%;
    position: fixed;
    top: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav {
    max-width: 100%; /* wider */
    margin: auto;
    padding: 25px; /* slightly bigger */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    color: #fff;
    font-size: 32px; /* bigger */
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px; /* more spacing */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px; /* bigger */
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f1c40f;
}

.btn-nav {
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 25px;
}
.mobile-menu-btn {
    background: transparent;
    display: none;
    border:none;
    cursor: pointer;
    margin-right: 10px;
}
.mobile-menu-btn > img{
    height: 50px;
}
.mobile-menu{
    display: none;
    position:fixed;
    top:0;
    right:0;
    height: 100vh;
    width: 30%;
    background-color: #11111193;
    backdrop-filter: blur(10px);
    z-index: 2000;
    box-shadow: -2px 0px 10px black;
}
.mobile-menu > ul{
    width: 100%;
    padding: 20px;
    list-style: none;
    justify-items: center;
}
.mobile-menu > ul > li{
    padding: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.mobile-menu > ul > li > a{
    text-decoration: none;
    font-size: 1.3rem;
    color: white;
}
.mobile-menu > ul > li > a:hover{
    text-decoration: none;
    color: #f1c40f;
}
/* Hero */
#hero {
    height: 100vh;
    background: url("Images/Restaurant.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 80px; /* bigger */
    line-height: 1.1;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.hero-content p {
    margin-top: 20px;
    font-size: 26px; /* bigger */
}

.btn {
    background: #f1c40f;
    padding: 15px 35px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    color: #333;
    margin-top: 35px;
    font-weight: 600;
    font-size: 18px; /* bigger */
}

/* Sections */
.section {
    padding: 120px 20px; /* larger section size */
    max-width: 1400px; /* wider site */
    margin: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    font-size: 42px; /* bigger */
    margin-bottom: 30px;
    text-align: center;
}

.section-text {
    max-width: 900px;
    margin: 15px auto 50px;
    text-align: center;
    line-height: 1.8;
    font-size: 20px; /* more readable */
}

.about-img {
    width: 100%;
    border-radius: 12px;
}

/* Dark sections */
.dark {
    background: #1b1b1b;
    color: white;
    padding: 150px 20px; /* even bigger */
}

/* ---- MENU ---- */

.menu-category {
    margin: 80px 0 35px;
    font-size: 32px;
    text-align: center;
    color: #f1c40f;
    letter-spacing: 1px;
}

.menu-grid.large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* wider cards */
    gap: 35px;
    margin-bottom: 50px;
}

.menu-card {
    display: flex;
    gap: 25px;
    background: #333;
    padding: 25px;
    border-radius: 16px;
    align-items: center;
    transition: transform .3s, box-shadow .3s;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.menu-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.menu-card h4 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* ---- GALLERY ---- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* larger */
    gap: 30px;
}

.gallery-grid img {
    width: 100%;
    height:300px;
    border-radius: 12px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* ---- CONTACT ---- */

.contact-form {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    width:90%;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background: #111;
    color: #bbb;
    font-size: 18px;
}
@media (max-width:750px) {
    nav ul {
        list-style: none;
        display: none;
    }
    .mobile-menu-btn{
        display: flex;
        color: white;
    }
}