/* ==========================================================================
   Design Tokens & Resets
   ========================================================================== */
:root {
    /* Colors */
    --primary: #D35400; /* Saffron/Orange */
    --primary-light: #E67E22;
    --primary-dark: #A04000;
    --accent: #D4AF37; /* Metallic Gold */
    --bg-dark: #0D0A08; /* Very dark warm brown/black */
    --bg-card: #16110D;
    --bg-lighter: #1E1712;
    --text-main: #FDFBF7; /* Off white */
    --text-muted: #A89B96;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
    
    /* Spacing */
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, .logo-text, .section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-padding {
    padding: 100px 0;
}

.section-subtitle {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(26, 19, 17, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    color: var(--accent);
    backdrop-filter: blur(4px);
}

.badge-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(90deg, #110a05 0%, #2a1f0a 25%, #4a3a1f 50%, #2a1f0a 75%, #110a05 100%);
    background-size: 200% auto;
    animation: goldShine 8s linear infinite;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

@keyframes goldShine {
    to { background-position: 200% center; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.top-bar-item i {
    width: 16px;
    height: 16px;
    color: var(--accent);
    filter: drop-shadow(0 0 5px var(--accent));
}

.top-bar-item span {
    color: #f0f0f0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 10, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-card);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    font-size: 1.125rem;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/restaurant-front.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 10, 8, 0.6) 0%, rgba(13, 10, 8, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: var(--nav-height);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    margin: 24px 0;
    color: var(--text-main);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   Features
   ========================================================================== */
.features {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 24px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(211, 84, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(211, 84, 0, 0.2);
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-images {
    position: relative;
    height: 600px;
}

.image-wrapper {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.img-1 {
    top: 0;
    right: 0;
    width: 70%;
    height: 65%;
    z-index: 1;
}

.img-2 {
    bottom: 0;
    left: 0;
    width: 60%;
    height: 50%;
    z-index: 2;
    border: 8px solid var(--bg-dark);
}

.experience-badge {
    position: absolute;
    bottom: 15%;
    right: -20px;
    z-index: 3;
    background: var(--bg-card);
    padding: 24px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-gold);
    animation: float 6s ease-in-out infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu {
    background: var(--bg-lighter);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.menu-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.2);
}

.menu-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img {
    transform: scale(1.1);
}

.menu-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
}

.menu-info {
    padding: 24px;
}

.menu-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.menu-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Location & Footer
   ========================================================================== */
.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-muted);
}

.contact-text a {
    color: var(--accent);
}

.contact-text a:hover {
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 10, 8, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    backdrop-filter: blur(2px);
}

.map-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.map-overlay p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer {
    background: var(--bg-card);
    padding: 80px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

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

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ==========================================================================
   Special Menus
   ========================================================================== */
.special-menus {
    background: var(--bg-dark);
}

.menu-poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.menu-poster-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    cursor: zoom-in;
    aspect-ratio: 1 / 1.4;
    background: var(--bg-card);
}

.menu-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-poster-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.2);
    border-color: var(--accent);
}

.menu-poster-card:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Ambiance Section
   ========================================================================== */
.ambiance {
    background: var(--bg-card);
}

.ambiance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-flow: dense;
    gap: 16px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .ambiance-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
    }
    .ambiance-img-wrapper:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .ambiance-img-wrapper:nth-child(4) { grid-column: span 2; grid-row: span 1; }
    .ambiance-img-wrapper:nth-child(8) { grid-column: span 1; grid-row: span 2; }
}

.ambiance-grid:hover .ambiance-img-wrapper:not(:hover) {
    opacity: 0.5;
    filter: grayscale(50%);
}

.ambiance-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.ambiance-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.3);
    pointer-events: none;
    transition: var(--transition);
}

.ambiance-img-wrapper:hover::after {
    box-shadow: inset 0 0 0 rgba(0,0,0,0);
}

.ambiance-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.ambiance-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ambiance-img-wrapper:hover img {
    transform: scale(1.1);
}

/* ==========================================================================
   Customer Reviews
   ========================================================================== */
.reviews {
    background: var(--bg-lighter);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: -1;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-stars i {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.review-text {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Signature Dishes Section
   ========================================================================== */
.signature {
    background: var(--bg-lighter);
}

.marquee-container {
    display: flex;
    overflow: hidden;
    gap: 32px;
}

.marquee-content {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 32px)); }
}

.dish-card {
    width: 300px;
    flex-shrink: 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.dish-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-img img {
    transform: scale(1.08);
}

.dish-info {
    padding: 20px;
    text-align: center;
}

.dish-info h3 {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.25rem;
    margin: 0;
}

/* ==========================================================================
   Full Menu
   ========================================================================== */
.full-menu {
    background: var(--bg-dark);
}

.full-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.full-menu-page {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.full-menu-page:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.full-menu-page img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .about-container, .location-container {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 500px;
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 96px;
    }
    .logo {
        margin-top: 16px;
    }
    .top-bar {
        font-size: 0.7rem;
        padding: 6px 0;
    }
    .top-bar-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        justify-content: center;
    }
    .top-bar-item {
        justify-content: center;
    }
    .navbar {
        top: 50px;
    }
    .mobile-menu {
        top: calc(var(--nav-height) + 50px);
    }
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 180px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ==========================================================================
   Utility Animations
   ========================================================================== */
.pulse-scale {
    display: inline-block;
    animation: pulseScale 2s infinite ease-in-out;
}

@keyframes pulseScale {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   Halal Badge (3D Embossed)
   ========================================================================== */
.halal-badge {
    margin-bottom: 24px;
    display: inline-block;
}

.halal-text {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #eab308; /* vibrant gold */
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 
        0px 1px 0px #ca8a04,
        0px 2px 0px #a16207,
        0px 3px 0px #854d0e,
        0px 4px 0px #713f12,
        0px 5px 0px #422006,
        0px 8px 15px rgba(0,0,0,0.8),
        0px 0px 40px rgba(234, 179, 8, 0.5);
    animation: pulseScale 3s infinite ease-in-out;
}

@media (max-width: 768px) {
    .halal-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
}
