/* CSS Variables */
:root {
    --primary-red: #c41e3a;
    --dark-red: #8b0000;
    --black: #1a1a1a;
    --dark-bg: #0d0d0d;
    --gold: #d4a574;
    --light-gold: #f0d9b5;
    --white: #ffffff;
    --off-white: #f8f5f0;
    --gray: #666666;
    --light-gray: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* Decorative Line */
.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    margin: 15px 0 25px;
}

.decorative-line.center {
    margin-left: auto;
    margin-right: auto;
}

.decorative-line.light {
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--primary-red) !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
}

.nav-btn::after {
    display: none !important;
}

.nav-btn:hover {
    background: var(--dark-red) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a0f0a 0%, #2c1810 50%, #0d0d0d 100%);
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25)),
        var(--hero-slide-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.halal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.halal-badge i {
    color: var(--dark-red);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.opening-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 1rem;
}

.opening-hours-badge i {
    font-size: 1.2rem;
}

.hero-slider-dots {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15);
}

.hero-dot:hover {
    border-color: var(--light-gold);
}

/* About Section */
.about {
    padding: 80px 0 100px;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--black);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(5px);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ── About Gallery ────────────────────────────────────────── */
.about-gallery {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 360px;
    position: relative;
}

.gallery-main {
    grid-row: span 2;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.gallery-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gallery-item {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}

.gallery-main img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-main:hover img,
.gallery-item:hover img {
    transform: scale(1.06);
}

/* Gold top-edge accent on hover */
.gallery-main::before,
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-main:hover::before,
.gallery-item:hover::before {
    opacity: 1;
}

/* Caption label */
.gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 14px 10px;
    background: linear-gradient(transparent, rgba(10, 5, 2, 0.82));
    backdrop-filter: blur(0px);
    transition: var(--transition);
    z-index: 1;
}

.gallery-main:hover .gallery-label,
.gallery-item:hover .gallery-label {
    padding-bottom: 14px;
}

.gallery-label > i {
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.gallery-label-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gallery-label-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.gallery-label-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Floating Halal badge */
.gallery-badge {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border: 3px solid var(--white);
    box-shadow: 0 6px 18px rgba(196, 30, 58, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 3;
    animation: pulse-badge 3s ease-in-out infinite;
}

.gallery-badge i {
    font-size: 1.1rem;
    color: var(--gold);
}

.gallery-badge span {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 8px 24px rgba(196,30,58,0.45); }
    50%       { box-shadow: 0 8px 36px rgba(196,30,58,0.7); }
}

/* Menu section banner image */
.menu-section-banner {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.menu-section-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: var(--off-white);
}

.menu h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.8);
}

/* Menu Navigation */
.menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.menu-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--gray);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
}

.menu-tab:hover {
    color: var(--primary-red);
}

.menu-tab.active {
    background: var(--primary-red);
    color: var(--white);
}

/* Menu Categories */
.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-category h3 i {
    color: var(--primary-red);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.drinks-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.menu-item {
    background: var(--white);
    padding: 15px 20px 15px 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-red);
}

.menu-item.featured {
    border-left-color: var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, #fdf8f3 100%);
}

.menu-item.veg {
    border-left-color: #4CAF50;
}

.menu-item.small {
    padding: 15px 20px;
}

.menu-item.small .item-info h4 {
    font-size: 1rem;
}

.item-info h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 5px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.item-detail {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.9rem;
}

.item-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    white-space: nowrap;
}

.veg-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 5px;
}

/* Specials Section */
.specials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2c1810 100%);
}

.specials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.special-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
}

.special-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.special-card.family {
    grid-column: span 2;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.special-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.special-badge.gold {
    background: linear-gradient(135deg, var(--gold), #b8956a);
    color: var(--black);
    padding: 25px 60px;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    border-radius: 60px;
}

.special-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.special-card.family h3 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.special-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.special-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 40px;
    height: 40px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--black);
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-red);
}

.contact-item a:hover {
    color: var(--dark-red);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.halal-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 165, 116, 0.2);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.allergy-note {
    margin-top: 10px;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .special-card.family {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-slider-dots {
        margin-top: 20px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    /* gallery responsive */
    .about-gallery {
        grid-template-columns: 1fr 1fr;
        height: 280px;
    }

    .menu-nav {
        gap: 8px;
        padding: 15px;
    }

    .menu-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .menu, .about, .contact, .specials {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem !important;
    }

    .menu-item {
        flex-direction: column;
        gap: 10px;
    }

    .price {
        align-self: flex-start;
    }
}

/* Smooth Scroll Offset for Fixed Nav */
section {
    scroll-margin-top: 80px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
