* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.84)),
        url('images/brick-wall.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffc107;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.92);
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.logo-container {
    width: 650px;
    height: 250px;
    max-width: 100%;
    margin: 0 auto;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20%;
    box-shadow: 0 0 30px rgba(255, 152, 0, 0.65);
}

/* Navigation */
.navbar {
    background: rgba(18, 18, 18, 0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    padding: 0.8rem 1rem;
}

.nav-top {
    display: none;
}

.menu-btn {
    display: none;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: #111;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255,152,0,0.25);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.nav-links a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.nav-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255,152,0,0.35);
    background: rgba(255, 152, 0, 0.08);
}

/* Main & Sections */
main {
    padding: 2rem 1rem 3rem;
}

section {
    background: rgba(20, 20, 20, 0.88);
    padding: 4rem 2rem;
    border-radius: 22px;
    margin: 3rem auto;
    width: 90%;
    max-width: 1250px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    border: 1px solid rgba(255, 193, 7, 0.08);
}

h2 {
    text-align: center;
    margin-bottom: 1.2rem;
    color: #ffb74d;
    font-size: 2.2rem;
    font-family: 'Lora', serif;
}

#home p,
#about p {
    color: #ffe8b3;
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

/* Menu */
.menu-title {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.menu-subtitle {
    text-align: center;
    color: #ffe8b3;
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.menu-category {
    background: rgba(28, 28, 28, 0.94);
    border: 1px solid rgba(255, 152, 0, 0.14);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.menu-toggle {
    width: 100%;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: #111;
    font-size: 1.15rem;
    padding: 1rem 1.2rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,152,0,0.35);
}

.menu-items {
    display: none;
    margin-top: 1rem;
    animation: fadeInMenu 0.35s ease;
}

.menu-items.open {
    display: block;
}

.menu-subcategory {
    color: #ffcc66;
    font-size: 0.98rem;
    font-weight: bold;
    margin: 1.2rem 0 0.8rem 0;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255, 193, 7, 0.25);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.menu-items article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    background: linear-gradient(180deg, rgba(42,42,42,0.96), rgba(34,34,34,0.96));
    padding: 1rem 1.1rem;
    border-radius: 14px;
    margin-bottom: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    border: 1px solid transparent;
}

.menu-items article:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255,152,0,0.22);
    border: 1px solid #ff9800;
}

.menu-items h4 {
    color: #ffb74d;
    margin-bottom: 0.25rem;
    font-size: 1.03rem;
}

.menu-items p {
    color: #f4e2b8;
    font-size: 0.92rem;
    line-height: 1.5;
}

.price {
    color: #ffc107;
    font-weight: bold;
    font-size: 1.05rem;
    white-space: nowrap;
    padding-left: 1rem;
}

/* Location */
.location-container {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.location-info {
    flex: 1;
    min-width: 260px;
    color: #ffe8b3;
    font-size: 1rem;
    line-height: 1.8;
}

.location-map {
    flex: 2;
    min-width: 320px;
}

.location-map iframe {
    width: 100%;
    min-height: 360px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Contact */
.contact-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 220px;
    font-size: 1rem;
    line-height: 1.8;
    color: #ffe8b3;
}

.contact-info a {
    color: #ffcc66;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ff9800;
}

/* Gallery */
.gallery-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.gallery-images img {
    width: 280px;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255,152,0,0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.2rem;
    background-color: rgba(18,18,18,0.96);
    color: #ffb74d;
    box-shadow: 0 -8px 18px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 950px) {
    .menu-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile premium */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .logo-container {
        width: 260px;
        height: 120px;
    }

    .logo-container img {
        border-radius: 16px;
        box-shadow: 0 0 18px rgba(255, 152, 0, 0.45);
    }

    header {
        padding: 0.8rem 1rem;
    }

    .navbar {
        padding: 0.8rem 1rem;
    }

    .nav-top {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        margin-top: 0.8rem;
        gap: 0.6rem;
        padding-top: 0.6rem;
        border-top: 1px solid rgba(255, 193, 7, 0.15);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        text-align: center;
        width: 100%;
        background: rgba(255,255,255,0.03);
        padding: 0.95rem 1rem;
        border-radius: 12px;
    }

    .nav-links a:hover {
        transform: none;
        box-shadow: 0 8px 18px rgba(255,152,0,0.20);
    }

    section {
        width: 94%;
        padding: 2rem 1rem;
        margin: 1.5rem auto;
        border-radius: 18px;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    #home p,
    #about p,
    .menu-subtitle,
    .contact-info,
    .location-info {
        font-size: 0.97rem;
        line-height: 1.75;
    }

    .menu-title {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    form label {
        width: auto;
    }

    .menu-toggle {
        font-size: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .menu-items article {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        padding: 0.95rem 1rem;
    }

    .menu-items h4 {
        font-size: 1rem;
    }

    .menu-items p {
        font-size: 0.9rem;
    }

    .price {
        padding-left: 0;
        margin-top: 0.2rem;
        font-size: 1rem;
    }

    .location-map iframe {
        min-height: 260px;
    }

    .gallery-images img {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    form input,
    form textarea {
        font-size: 16px;
    }

    form button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Very small phones */
@media (max-width: 520px) {
    h2 {
        font-size: 1.7rem;
    }

    .menu-title {
        font-size: 1.95rem;
    }

    .menu-toggle {
        font-size: 0.98rem;
        padding: 0.9rem 1rem;
    }

    .gallery-images img {
        height: 200px;
    }
}

.contact-only {
    justify-content: center;
}

.contact-info-full {
    max-width: 500px;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 193, 7, 0.12);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.contact-info-full p {
    margin-bottom: 1rem;
}

.contact-info-full a {
    display: inline-block;
    margin: 0.2rem 0;
}

footer a {
    color: #ffcc66;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #ff9800;
    text-decoration: underline;
}
