* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
    background-color: #09090b; 
    color: #f4f4f5; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    line-height: 1.5; 
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.grid { display: grid; gap: 32px; }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

header { 
    position: fixed; top: 0; left: 0; width: 100%;
    background-color: rgba(24, 24, 27, 0.95); 
    backdrop-filter: blur(8px); z-index: 100;
    border-b: 1px solid #27272a; padding: 12px 0;
}
.nav-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-whatsapp-icon {
    background-color: #f59e0b; /* Official WhatsApp green */
    color: #09090b;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.2);
}

.logo { font-size: 24px; font-weight: 900; color: #f59e0b; text-decoration: none; letter-spacing: 1px; }
nav a { color: #d4d4d8; text-decoration: none; margin-right: 32px; font-weight: 500; transition: color 0.2s; }
nav a:hover { color: #f59e0b; }

.logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    height: 48px;
    flex-shrink: 1; /* Allows shrinkage on very narrow screens */
    min-width: 0; /* Prevents text overflow */
}
.logo-icon-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}
.logo-text {
    font-size: 20px;
    font-weight: 900;
    color: #f59e0b;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Desktop Navigation Default Options */
.desktop-nav { display: none; }
.btn-desktop-cta { display: none; }

/* Sandwich Toggle Button */
.sandwich-btn {
    background: none; border: none; color: #f4f4f5;
    font-size: 24px; cursor: pointer; display: flex; align-items: center;
}

/* Pull-Out Mobile Menu Overlay Drawer */
.mobile-menu-drawer {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background-color: #18181b; border-left: 1px solid #27272a;
    z-index: 200; padding: 40px 24px; display: flex; flex-direction: column;
    gap: 24px; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-drawer.active { right: 0; }
.close-drawer-btn {
    align-self: flex-end; background: none; border: none;
    color: #a1a1aa; font-size: 28px; cursor: pointer;
}
.mobile-menu-drawer nav { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.mobile-menu-drawer nav a {
    color: #f4f4f5; font-size: 18px; font-weight: 600; text-decoration: none;
    border-bottom: 1px solid #27272a; padding-bottom: 12px; transition: color 0.2s;
}
.mobile-menu-drawer nav a:hover { color: #f59e0b; }

/* Media Queries for Tablets and Desktop Screens */
@media (min-width: 768px) {
    .logo-text { font-size: 24px; letter-spacing: 1px; }
    .sandwich-btn { display: none; }
    .btn-whatsapp-icon { display: none; }
    .desktop-nav { display: flex; gap: 32px; }
    .desktop-nav a { color: #d4d4d8; text-decoration: none; font-weight: 500; transition: color 0.2s; }
    .desktop-nav a:hover { color: #f59e0b; }
    .btn-desktop-cta { 
        display: inline-block; background-color: #f59e0b; color: #09090b; font-weight: 700; 
        padding: 10px 24px; border-radius: 50px; text-decoration: none; font-size: 14px;
        box-shadow: 0 4px 12px rgba(245,158,11,0.15); transition: background 0.2s;
    }
    .btn-desktop-cta:hover { background-color: #d97706; }
}


.btn-cta { 
    background-color: #f59e0b; color: #09090b; font-weight: 700; 
    padding: 10px 24px; border-radius: 50px; text-decoration: none;
    font-size: 14px; transition: background 0.2s; box-shadow: 0 4px 12px rgba(245,158,11,0.15);
}
.btn-cta:hover { background-color: #d97706; }
.btn-secondary {
    background-color: #f4f4f5; color: #09090b; font-weight: 800;
    padding: 14px 32px; border-radius: 12px; text-decoration: none;
    display: inline-block; text-align: center; transition: background 0.2s;
}
.btn-secondary:hover { background-color: #e4e4e7; }

.carousel-container { position: relative; width: 100%; height: 100vh; overflow: hidden; }
.carousel-slide { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    opacity: 0; transition: opacity 0.8s ease-in-out; display: flex; align-items: center;
    background-size: cover; background-position: center;
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(9,9,11,0.95));
}
.carousel-content { position: relative; z-index: 10; width: 100%; padding-top: 80px; }
.hero-tag { 
    background-color: rgba(245,158,11,0.1); color: #fbbf24; font-size: 12px; 
    font-weight: 700; padding: 4px 12px; border-radius: 50px; border: 1px solid rgba(245,158,11,0.2);
    display: inline-block; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.carousel-content h2 { 
    font-size: 28px; /* Compact, punchy title size for mobile screens */
    font-weight: 900; 
    line-height: 1.2; 
    margin-bottom: 12px; 
}
.carousel-content h2 span { color: #f59e0b; }

.carousel-content p { 
    color: #a1a1aa; 
    font-size: 14px; /* Easier to read, zero text-spillover on phones */
    max-width: 500px; 
    margin-bottom: 20px; 
}
@media (min-width: 768px) {
    .carousel-content h2 { 
        font-size: 48px; 
        line-height: 1.1; 
        margin-bottom: 16px; 
    }
    .carousel-content p { 
        font-size: 18px; 
        margin-bottom: 24px; 
    }
}

.parent-tag { font-size: 12px; color: #52525b; margin-top: 12px; }

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
    background: rgba(24, 24, 27, 0.6); border: 1px solid #27272a; color: white;
    width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex;
    align-items: center; justify-content: center; font-weight: bold; transition: background 0.2s;
}
.carousel-btn:hover { background: #f59e0b; color: #09090b; border-color: #f59e0b; }
.prev { left: 24px; }
.next { right: 24px; }

/* Slide Indicators Dots Handles */
.carousel-dots {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 30; display: flex; gap: 12px;
}
.dot {
    width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(27, 27, 27, 0.2); cursor: pointer; transition: all 0.3s ease;
}
.dot.active { background: #f59e0b; width: 28px; border-radius: 6px; }

.section-padding { padding: 100px 0; border-bottom: 1px solid #18181b; }
.bg-zinc-dark { background-color: rgba(24, 24, 27, 0.4); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 32px; font-weight: 900; letter-spacing: 0.5px; text-transform: uppercase; }
.section-title p { color: #a1a1aa; margin-top: 8px; }

.category-heading { font-size: 20px; font-weight: 700; color: #f59e0b; border-bottom: 1px solid #27272a; padding-bottom: 8px; margin-bottom: 32px; text-transform: uppercase; letter-spacing: 1px;}
.menu-grid { margin-bottom: 48px; }

/* REVISION: Responsive Food Menu Card with Visual Layouts */
.menu-card { 
    background-color: #18181b; 
    border-radius: 16px; 
    border: 1px solid rgba(39, 39, 42, 0.8); 
    display: flex; 
    flex-direction: column; /* Stacked layout by default on mobile devices */
    gap: 16px;
    overflow: hidden;
}

@media (min-width: 480px) {
    .menu-card {
        flex-direction: row; /* Side-by-side row orientation on desktop/tablets */
        align-items: center;
        padding: 16px;
    }
}

.menu-item-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

@media (min-width: 480px) {
    .menu-item-img {
        width: 100px;
        height: 100px;
        border-radius: 12px; /* Smooth rounded corners for the food thumbnail */
    }
}

.card-details { 
    flex: 1; 
    padding: 16px;
}

@media (min-width: 480px) {
    .card-details {
        padding: 0;
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 12px;
}

.card-details h4 { font-size: 18px; font-weight: 700; color: #ffffff; }
.card-details p { color: #a1a1aa; font-size: 14px; line-height: 1.4; }
.price { color: #fbbf24; font-weight: 700; font-size: 18px; whitespace-nowrap: nowrap; }


.about-img {
    width: 100%; height: 350px; background-size: cover; background-position: center;
    border-radius: 16px; border: 1px solid #27272a;
    background-image: url('https://unsplash.com');
}
.about-text { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.about-text p { color: #a1a1aa; font-size: 16px; line-height: 1.7; }

.map-placeholder {
    width: 100%; height: 300px; background-color: #18181b; border: 1px solid #27272a;
    border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #71717a; text-align: center; padding: 20px;
}
.contact-details-box { display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { color: #f59e0b; font-weight: bold; font-size: 20px; }
.contact-info-text h5 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.contact-info-text p { color: #a1a1aa; font-size: 14px; }

footer { padding: 60px 0 30px 0; background-color: #09090b; border-top: 1px solid #18181b; color: #71717a; }
.footer-grid { border-bottom: 1px solid #18181b; padding-bottom: 40px; margin-bottom: 30px; }
.footer-col h4 { color: #e4e4e7; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.footer-col p { color: #a1a1aa; line-height: 1.6; }
.footer-bottom { display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 16px; font-size: 12px; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-links a { color: #71717a; text-decoration: none; margin-left: 24px; }
.footer-links a:hover { color: #e4e4e7; }
