body {
    margin: 0;
    background: #090909;
    color: white;
    font-family: Arial, sans-serif;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 60px;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #c1ff15;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #c1ff15;
}

/* HAMBURGER (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

button {
    background: #c1ff15;
    color: black;
    border: none;

    padding: 12px 22px;

    border-radius: 30px;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 20px rgba(193,255,21,0.4);
}

/* HERO */
.hero {
    min-height: 70vh;

    display: flex;
    align-items: center;

    padding: 80px;

    background: url("image/food.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;
}

.hero-text {
    max-width: 700px;
    margin-top: 60px;
}

.hero-text h1 {
    font-size: 90px;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #c1ff15;
}

.hero-text p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 25px;
}

/* MENU SECTION */
.menu {
    position: relative;
    z-index: 5;

    padding: 60px 80px 120px;

    background: url("image/food.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.menu h2 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 30px;
}

/* MENU GRID */
.menu-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* GLASS CARDS */
.card {
    width: 280px;
    padding: 25px;

    border-radius: 25px;

    background: transparent;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 8px 32px rgba(0,0,0,0.25);

    text-align: center;

    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);

    border: 1px solid rgba(193,255,21,0.35);

    box-shadow:
        0 0 25px rgba(193,255,21,0.25),
        0 0 60px rgba(193,255,21,0.15);
}

.card img {
    width: 100%;
    height: 180px;

    object-fit: cover;

    border-radius: 15px;

    margin-bottom: 15px;
}

.card h3 {
    margin: 15px 0 10px;
    font-size: 28px;
}

.card p {
    color: #c1ff15;
    font-weight: bold;
    font-size: 20px;
}

/* ABOUT SECTION */
.about {
    background: url("image/food.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 80px;
    position: relative;
    z-index: 5;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1.2;
    order: 2;
    min-width: 0;
    border-radius: 25px;
    overflow: hidden;
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-text {
    flex: 1;
    order: 1;
    min-width: 0;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-text h2 span {
    color: #c1ff15;
}

.about-text p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.stat h3 {
    color: #c1ff15;
    font-size: 32px;
    margin: 0 0 5px;
}

.stat p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
}

/* GALLERY SECTION */
.gallery {
    background: url("image/food.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding: 100px 80px;

    position: relative;
    z-index: 5;

    text-align: center;
}

.gallery h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.gallery-sub {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;

    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow: 0 8px 32px rgba(0,0,0,0.35);

    position: relative;

    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.gallery-item:hover {
    border: 1px solid rgba(193,255,21,0.35);

    box-shadow:
        0 0 25px rgba(193,255,21,0.25),
        0 0 60px rgba(193,255,21,0.15);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 900px) {
    .gallery {
        padding: 60px 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* CONTACT SECTION */
.contact {
    background: url("image/food.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding: 100px 80px;

    position: relative;
    z-index: 5;

    text-align: center;
}

.contact h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.contact h2 span {
    color: #c1ff15;
}

.contact-sub {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    margin-bottom: 50px;
}

.contact-grid {
    display: flex;
    gap: 40px;

    max-width: 1100px;
    margin: 0 auto;

    text-align: left;
}

.contact-info {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    background: transparent;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;

    padding: 25px 30px;

    box-shadow: 0 8px 32px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}

.info-item:hover {
    border: 1px solid rgba(193,255,21,0.35);

    box-shadow:
        0 0 25px rgba(193,255,21,0.2),
        0 0 50px rgba(193,255,21,0.1);
}

.info-item h4 {
    color: #c1ff15;
    margin: 0 0 10px;
    font-size: 18px;
}

.info-item p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

.contact-form {
    flex: 1.3;

    background: transparent;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;

    padding: 35px;

    box-shadow: 0 8px 32px rgba(0,0,0,0.25);

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;

    padding: 14px 16px;

    color: white;
    font-family: inherit;
    font-size: 15px;

    transition: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid rgba(193,255,21,0.5);
    box-shadow: 0 0 15px rgba(193,255,21,0.15);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .contact {
        padding: 60px 25px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

/* ============================= */
/* MOBILE FIXES (max-width: 768px) */
/* ============================= */
@media (max-width: 768px) {

    /* HEADER / NAV */
    header {
        padding: 18px 20px;
        flex-wrap: wrap;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;

        background: rgba(0, 0, 0, 0.95);

        position: absolute;
        top: 100%;
        left: 0;

        padding: 10px 20px 20px;
    }

    nav.open {
        display: flex;
    }

    nav a {
        margin: 12px 0;
        font-size: 17px;
    }

    .hamburger {
        display: flex;
    }

    .order-btn {
        display: none;
    }

    /* HERO */
    .hero {
        min-height: 60vh;
        padding: 40px 20px;
        background-attachment: scroll;
    }

    .hero-text {
        margin-top: 20px;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* MENU */
    .menu {
        padding: 40px 20px 70px;
        background-attachment: scroll;
    }

    .menu h2 {
        font-size: 34px;
    }

    .card {
        width: 100%;
        max-width: 340px;
    }

    /* ABOUT / GALLERY / CONTACT backgrounds */
    .about,
    .gallery,
    .contact {
        background-attachment: scroll;
    }

    .about-text h2,
    .gallery h2,
    .contact h2 {
        font-size: 32px;
    }
}