/* ============================================
   CURRY HOUSE - Premium Indian Restaurant
   ============================================ */

/* Accessibility - Visually Hidden (SEO Content) */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 100000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* CSS Variables */
:root {
    /* Primary Colors - Warm Indian Palette */
    --primary: #D35400;
    --primary-dark: #A04000;
    --primary-light: #E67E22;
    --secondary: #F39C12;
    --accent: #FFD93D;
    
    /* Background Colors */
    --bg-dark: #1A0F0A;
    --bg-gradient: linear-gradient(135deg, #8B2500 0%, #CD4F00 50%, #FF6B35 100%);
    --bg-light: #FFF8F0;
    --bg-cream: #FAF0E6;
    
    /* Text Colors */
    --text-dark: #1A0F0A;
    --text-light: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-gold: #FFD93D;
    
    /* Decorative */
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --maroon: #800020;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(211, 84, 0, 0.4);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Carattere', cursive;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.spice-bowl {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    margin: 0 auto 1rem;
    position: relative;
    animation: bowlPulse 2s ease-in-out infinite;
}

.steam {
    position: absolute;
    width: 8px;
    height: 30px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    border-radius: 10px;
    top: -35px;
    animation: steam 2s ease-in-out infinite;
}

.steam1 { left: 20px; animation-delay: 0s; }
.steam2 { left: 36px; animation-delay: 0.3s; }
.steam3 { left: 52px; animation-delay: 0.6s; }

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

@keyframes steam {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: translateY(-10px) scaleX(1.5);
    }
}

.loader span {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */
.language-selector {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
}

.lang-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gradient);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.lang-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.lang-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.language-selector:hover .lang-dropdown,
.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--bg-cream);
}

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

.lang-btn .flag {
    font-size: 1.2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    /* Glassmorphism Navbar */
    background: rgba(26, 15, 10, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 0.5rem 0;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 75px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(243, 156, 18, 0.4));
}

.navbar.scrolled .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.reserve-btn {
    background: var(--bg-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-gradient);
    padding: 6rem 2rem 2rem;
}

/* Ken Burns Animated Background */
.hero-ken-burns {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ken-burns-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out;
}

.ken-burns-slide.active {
    opacity: 1;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.ken-burns-slide:nth-child(1).active {
    animation-name: kenBurns1;
}

.ken-burns-slide:nth-child(2).active {
    animation-name: kenBurns2;
}

.ken-burns-slide:nth-child(3).active {
    animation-name: kenBurns3;
}

/* Ken Burns Animation Keyframes - Different movements for variety */
@keyframes kenBurns1 {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-2%, -1%);
    }
}

@keyframes kenBurns2 {
    0% {
        transform: scale(1.1) translate(-1%, 0);
    }
    100% {
        transform: scale(1) translate(1%, -2%);
    }
}

@keyframes kenBurns3 {
    0% {
        transform: scale(1) translate(1%, 1%);
    }
    100% {
        transform: scale(1.2) translate(-1%, 0);
    }
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 15, 6, 0.92) 0%,
        rgba(26, 15, 6, 0.85) 40%,
        rgba(26, 15, 6, 0.75) 100%
    );
    z-index: 1;
}

/* Cinematic vignette effect */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.mandala {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

.mandala-1 {
    width: 800px;
    height: 800px;
    top: -200px;
    right: -200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23FFD93D' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23FFD93D' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23FFD93D' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%23FFD93D' stroke-width='0.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.mandala-2 {
    width: 600px;
    height: 600px;
    bottom: -100px;
    left: -100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23FFD93D' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23FFD93D' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23FFD93D' stroke-width='0.5'/%3E%3C/svg%3E") center/contain no-repeat;
    animation-direction: reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-spice {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.spice-1 { top: 20%; left: 10%; animation-delay: 0s; }
.spice-2 { top: 60%; left: 5%; animation-delay: 2s; }
.spice-3 { top: 40%; right: 45%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
}

/* Centered Hero Layout */
.hero-content.hero-centered {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Logo - Large centered logo */
.hero-logo {
    display: block;
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-logo img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(211, 84, 0, 0.4));
    animation: heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* When scrolled - hide hero logo */
.hero-logo.hidden {
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
}

/* Navbar logo - initially hidden, shows on scroll */
.nav-logo {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.navbar.scrolled .nav-logo {
    opacity: 1;
    transform: translateY(0);
}

/* Hero centered adjustments */
.hero-centered .hero-buttons {
    justify-content: center;
}

.hero-centered .hero-stats {
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    /* Enhanced Glassmorphism */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.hero-title .line1 {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-light);
}

.hero-title .line2 {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    
    /* Liquid Flowing Text Effect */
    background: linear-gradient(
        90deg,
        var(--accent) 0%,
        #f39c12 15%,
        var(--secondary) 30%,
        #e67e22 45%,
        var(--accent) 60%,
        #f39c12 75%,
        var(--secondary) 90%,
        var(--accent) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: liquidFlow 4s ease-in-out infinite, elegantSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0s, 0.7s;
    position: relative;
}

/* Liquid Flow Animation */
@keyframes liquidFlow {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

/* Subtle wave distortion on hover */
.hero-title .line2:hover {
    animation: liquidFlow 2s ease-in-out infinite, textWave 0.5s ease-in-out;
}

@keyframes textWave {
    0%, 100% { transform: skewX(0deg); }
    25% { transform: skewX(2deg); }
    75% { transform: skewX(-2deg); }
}

.script-font {
    font-family: var(--font-script);
    font-weight: 400 !important;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--text-light);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary i {
    transition: var(--transition-normal);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

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

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 80px;
}

.stat-number,
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-display);
    line-height: 1;
}

.stat-icon {
    font-size: 2rem;
}

.stat-plus {
    display: inline;
    font-size: inherit;
    color: inherit;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--gold);
    animation: rotate 30s linear infinite;
}

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

.image-frame:hover img {
    transform: scale(1.1);
}

.floating-card {
    position: absolute;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.card-1 i {
    color: var(--secondary);
}

.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

.card-2 .fire {
    font-size: 1.2rem;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '✦';
    margin: 0 0.5rem;
    color: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--secondary);
    position: relative;
    /* Override the transparent text-fill-color from parent gradient effect */
    -webkit-text-fill-color: var(--secondary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #2A1810 100%);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-main {
    width: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-dark);
}

.img-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: 20%;
    background: var(--bg-gradient);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: white;
}

.experience-badge span:last-child {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-content .section-tag {
    display: block;
    text-align: left;
}

.about-content .section-tag::before {
    display: none;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

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

.about-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231A0F0A' d='M0,50 C200,100 400,0 600,50 C800,100 1000,0 1200,50 C1400,100 1440,50 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") center/cover no-repeat;
}

/* ============================================
   SPECIALTIES SECTION
   ============================================ */
.specialties {
    background: var(--bg-dark);
    padding: 6rem 0;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.specialty-card {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.specialty-card:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.specialty-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.specialty-card:hover::before {
    transform: scaleX(1);
}

.specialty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.specialty-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialty-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.specialty-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #2A1810 50%, var(--bg-dark) 100%);
    position: relative;
}

.menu-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30 Z' fill='none' stroke='%23FFD93D' stroke-width='0.5'/%3E%3C/svg%3E");
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.category-btn:hover {
    color: var(--text-light);
    border-color: var(--primary);
}

.category-btn.active {
    background: var(--bg-gradient);
    color: white;
    border-color: transparent;
}

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

.menu-item {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        var(--shadow-glow);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.menu-item.hidden {
    display: none;
}

.menu-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.menu-item-image .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.popular {
    background: var(--secondary);
    color: var(--text-dark);
}

.badge.bestseller {
    background: var(--primary);
    color: white;
}

.badge.veg {
    background: #27ae60;
    color: white;
}

.badge.healthy {
    background: #2ecc71;
    color: white;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.menu-item-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.price {
    background: var(--bg-gradient);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.menu-item-content > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.spice-level {
    font-size: 0.9rem;
}

.served-with {
    font-size: 0.8rem;
    color: var(--secondary);
    font-style: italic;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--bg-dark);
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #2A1810 100%);
    padding: 6rem 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
    text-transform: uppercase;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

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

/* ============================================
   RESERVATION SECTION
   ============================================ */
.reservation {
    background: var(--bg-gradient);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.reservation-content .section-tag {
    color: var(--accent);
}

.reservation-content .section-tag::before,
.reservation-content .section-tag::after {
    color: white;
}

.section-title.light {
    color: white;
}

.reservation-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.info-item h4 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-item p {
    color: white;
    font-weight: 600;
}

.reservation-form-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.form-group textarea {
    resize: none;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1.1rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-dark);
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-tag::before {
    display: none;
}

.contact-info .section-title {
    text-align: left;
}

.contact-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
    color: white;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item p {
    color: var(--text-light);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--bg-gradient);
    transform: translateY(-3px);
}

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

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0D0705;
    padding: 4rem 0 0;
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--bg-gradient);
}

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

.footer-brand {}

.footer-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
    object-fit: contain;
    transition: var(--transition-normal);
}

.footer-logo:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(243, 156, 18, 0.5));
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-hours h4,
.footer-newsletter h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-hours li span:last-child {
    color: var(--text-light);
    font-weight: 500;
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .image-frame {
        width: 300px;
        height: 300px;
    }

    .floating-card {
        display: none;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .reserve-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-tag::before {
        display: inline;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    /* Reduce/hide floating decorations on tablets */
    .floating-spice,
    .mandala,
    .parallax-layer {
        opacity: 0.3;
        transform: scale(0.5);
    }

    .spice-particle,
    .floating-emoji {
        display: none !important;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-logo img {
        width: 140px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .image-frame {
        width: 250px;
        height: 250px;
    }

    .scroll-indicator {
        display: none;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .language-selector {
        top: 80px;
        right: 10px;
    }

    .lang-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .hero-title .line1 {
        font-size: 1.3rem;
    }

    .hero-title .line2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        padding: 0 1rem;
    }

    .image-frame {
        width: 180px;
        height: 180px;
    }

    .menu-categories {
        gap: 0.4rem;
        padding: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        flex: 0 0 auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Mobile Menu Item Cards */
    .menu-item {
        border-radius: var(--radius-md);
    }

    .menu-item-image {
        height: 180px;
    }

    .menu-item-content {
        padding: 1rem;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-item-price {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }

    /* Mobile Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Mobile Specialty Cards */
    .specialty-card {
        padding: 1.5rem;
    }

    .specialty-icon {
        width: 60px;
        height: 60px;
    }

    /* Mobile Form */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .reservation-info {
        padding: 1.5rem;
    }

    /* Mobile Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Mobile Contact */
    .contact-item {
        padding: 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    /* Mobile About */
    .about-feature {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    /* Stats on mobile */
    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Hide ALL floating decorations on mobile */
    .floating-spice,
    .mandala,
    .spice-particle,
    .floating-emoji,
    .parallax-layer,
    #magicParticles,
    .spice-particle-container,
    .cursor-dot,
    .cursor-ring,
    .floating-decor-container,
    .floating-decor,
    .sparkle::after,
    [class*="float"],
    [class*="particle"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Mobile Reservation Form Improvements */
    .reservation-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: var(--radius-md);
    }

    .reservation-form {
        gap: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px !important; /* Prevents iOS zoom */
        border-radius: var(--radius-sm);
    }

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Mobile Reservation Info */
    .reservation-content {
        text-align: center;
    }

    .reservation-content .section-title {
        font-size: 1.8rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
    }

    .info-item i {
        margin: 0 auto;
    }

    /* Mobile Footer Improvements */
    .footer-grid {
        gap: 2rem;
        text-align: center;
    }

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

    .footer-logo {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem;
    }

    .footer-brand p {
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-hours ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-hours li {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-sm);
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .newsletter-form input {
        width: 100%;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.98), rgba(45, 25, 15, 0.98));
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 998;
    animation: mobileMenuFadeIn 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.nav-links.mobile-active li {
    opacity: 0;
    animation: mobileMenuItemSlide 0.4s ease forwards;
}

.nav-links.mobile-active li:nth-child(1) { animation-delay: 0.1s; }
.nav-links.mobile-active li:nth-child(2) { animation-delay: 0.15s; }
.nav-links.mobile-active li:nth-child(3) { animation-delay: 0.2s; }
.nav-links.mobile-active li:nth-child(4) { animation-delay: 0.25s; }
.nav-links.mobile-active li:nth-child(5) { animation-delay: 0.3s; }
.nav-links.mobile-active li:nth-child(6) { animation-delay: 0.35s; }

@keyframes mobileMenuItemSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-links.mobile-active a {
    font-size: 1.5rem;
    padding: 0.8rem 2rem;
    display: block;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-links.mobile-active a:hover,
.nav-links.mobile-active a:active {
    background: rgba(211, 84, 0, 0.2);
    color: var(--secondary);
}

.mobile-menu-btn {
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE-SPECIFIC ENHANCEMENTS
   ============================================ */

/* Touch-friendly tap targets (minimum 44px) */
@media (max-width: 768px) {
    a, button, .btn, .category-btn, .social-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        -webkit-tap-highlight-color: rgba(211, 84, 0, 0.2);
    }

    /* Prevent text selection on buttons */
    .btn, .category-btn, button {
        -webkit-user-select: none;
        user-select: none;
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Fix 100vh on mobile browsers */
    .hero {
        min-height: 100svh;
        min-height: -webkit-fill-available;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Better mobile images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile-friendly scrollable categories */
    .menu-categories {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 0.5rem;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .menu-categories::-webkit-scrollbar {
        display: none;
    }

    /* Mobile grid improvements */
    .menu-grid {
        gap: 1.5rem;
    }

    /* Better mobile spacing */
    .section-header {
        margin-bottom: 2rem;
    }

    /* Mobile testimonials horizontal scroll */
    .testimonials-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    /* Mobile specialties horizontal scroll */
    .specialties-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }

    .specialties-grid::-webkit-scrollbar {
        display: none;
    }

    .specialty-card {
        flex: 0 0 75%;
        scroll-snap-align: center;
    }

    /* Language selector mobile position */
    .language-selector {
        top: auto;
        bottom: 80px;
        right: 15px;
    }

    .language-selector .lang-dropdown {
        top: auto;
        bottom: 60px;
        transform: translateY(10px);
    }

    .language-selector.active .lang-dropdown {
        transform: translateY(0);
    }

    /* Back to top button mobile position */
    .back-to-top {
        bottom: 20px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    /* Mobile reservation form improvements */
    .reservation-form {
        padding: 1.5rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Mobile gallery improvements */
    .gallery-item {
        border-radius: var(--radius-md);
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    /* Mobile about section */
    .about-images {
        height: auto;
    }

    .about-image.main {
        position: relative;
        width: 100%;
        height: 250px;
    }

    .about-image.secondary {
        position: relative;
        width: 100%;
        height: 200px;
        margin-top: 1rem;
    }

    .experience-badge {
        position: absolute;
        top: -20px;
        right: 20px;
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }

    /* Mobile footer improvements */
    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Mobile contact improvements */
    .contact-form {
        padding: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-title .line2 {
        font-size: 1.8rem;
    }

    .image-frame {
        width: 150px;
        height: 150px;
    }

    .menu-item-image {
        height: 150px;
    }

    .category-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }

    .testimonial-card {
        flex: 0 0 90%;
    }

    .specialty-card {
        flex: 0 0 85%;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 2rem 2rem;
    }

    .hero-image {
        display: none;
    }

    .nav-links.mobile-active {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 2rem;
        padding: 5rem 2rem;
    }

    .nav-links.mobile-active a {
        font-size: 1.1rem;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer-bottom {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(15px, env(safe-area-inset-right));
    }
}

/* Touch device styles */
.touch-device .cursor-dot,
.touch-device .cursor-ring,
.touch-device .spice-particle {
    display: none !important;
}

/* Touch feedback */
.touch-active {
    transform: scale(0.97) !important;
    opacity: 0.9;
}

/* Scroll shadow indicators */
.scroll-start::before,
.scroll-end::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
}

.testimonials-slider,
.specialties-grid,
.menu-categories {
    position: relative;
}

.scroll-start::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.scroll-end::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

/* Swipe indicator - hidden on desktop */
.swipe-indicator {
    display: none;
}

/* Mobile swipe indicator for horizontal scroll - controlled by JS */
@media (max-width: 768px) {
    .testimonials-slider,
    .specialties-grid {
        position: relative;
    }

    .swipe-indicator {
        display: block;
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        color: var(--text-muted);
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        opacity: 1;
        transition: opacity 0.3s ease;
        z-index: 10;
        pointer-events: none;
    }

    .swipe-indicator.hidden {
        opacity: 0;
    }

    /* Remove old pseudo-element indicator */
    .testimonials-slider::after,
    .specialties-grid::after {
        content: none;
        display: none;
        opacity: 0.6;
    }
    
    .testimonials-slider.scrolled::after,
    .specialties-grid.scrolled::after {
        display: none;
    }
}

/* ============================================
   PAGE TRANSITION EFFECTS
   ============================================ */

/* Base state for all sections - hidden before animation */
.section-transition {
    opacity: 0;
    transform: translateY(60px);
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: 
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: 
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade up effect */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 
        opacity 0.6s ease-out,
        transform 0.6s ease-out;
}

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

/* Scale in effect */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: 
        opacity 0.5s ease-out,
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity 0.5s ease-out,
        transform 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.9s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 1.0s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal from bottom with clip */
.reveal-up {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
    clip-path: inset(0 0 0 0);
}

/* Blur in effect */
.blur-in {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.05);
    transition: 
        opacity 0.8s ease-out,
        filter 0.8s ease-out,
        transform 0.8s ease-out;
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* Rotate in 3D */
.rotate-in {
    opacity: 0;
    transform: perspective(1000px) rotateX(20deg) translateY(50px);
    transition: 
        opacity 0.7s ease-out,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.rotate-in.visible {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* Section header special animation */
.section-header {
    opacity: 0;
    transform: translateY(40px);
    transition: 
        opacity 0.8s ease-out,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Menu grid staggered reveal */
.menu-grid.visible .menu-item {
    animation: menuItemReveal 0.6s ease-out forwards;
    opacity: 0;
}

.menu-grid.visible .menu-item:nth-child(1) { animation-delay: 0.05s; }
.menu-grid.visible .menu-item:nth-child(2) { animation-delay: 0.1s; }
.menu-grid.visible .menu-item:nth-child(3) { animation-delay: 0.15s; }
.menu-grid.visible .menu-item:nth-child(4) { animation-delay: 0.2s; }
.menu-grid.visible .menu-item:nth-child(5) { animation-delay: 0.25s; }
.menu-grid.visible .menu-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes menuItemReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Gallery items reveal */
.gallery-grid.visible .gallery-item {
    animation: galleryReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.gallery-grid.visible .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid.visible .gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-grid.visible .gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-grid.visible .gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-grid.visible .gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-grid.visible .gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-grid.visible .gallery-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes galleryReveal {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-3deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* Testimonials slide in */
.testimonials-slider.visible .testimonial-card {
    animation: testimonialSlide 0.6s ease-out forwards;
    opacity: 0;
}

.testimonials-slider.visible .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-slider.visible .testimonial-card:nth-child(2) { animation-delay: 0.25s; }
.testimonials-slider.visible .testimonial-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes testimonialSlide {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Specialties grid animation */
.specialties-grid.visible .specialty-card {
    animation: specialtyPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.specialties-grid.visible .specialty-card:nth-child(1) { animation-delay: 0.1s; }
.specialties-grid.visible .specialty-card:nth-child(2) { animation-delay: 0.2s; }
.specialties-grid.visible .specialty-card:nth-child(3) { animation-delay: 0.3s; }
.specialties-grid.visible .specialty-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes specialtyPop {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .section-transition,
    .slide-left,
    .slide-right,
    .fade-up,
    .scale-in,
    .stagger-children > *,
    .reveal-up,
    .blur-in,
    .rotate-in,
    .section-header,
    .menu-grid .menu-item,
    .gallery-grid .gallery-item,
    .testimonials-slider .testimonial-card,
    .specialties-grid .specialty-card {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   GLASSMORPHISM UTILITY CLASSES
   ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.glass-primary {
    background: rgba(211, 84, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(211, 84, 0, 0.3);
    box-shadow: 
        0 8px 32px rgba(211, 84, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.visible { display: block; }

/* ============================================
   CURSOR FOLLOWER & MAGIC PARTICLES
   ============================================ */
.cursor-follower {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    z-index: 10001;
    pointer-events: none;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    z-index: 10000;
    pointer-events: none;
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: var(--primary);
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary);
}

.cursor-ring.clicking {
    transform: translate(-50%, -50%) scale(0.8);
}

/* ============================================
   CURSOR PARTICLE TRAIL - Golden Spice Effect
   ============================================ */
.cursor-particle-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.cursor-particle {
    position: fixed;
    pointer-events: none;
    font-family: sans-serif;
    will-change: transform, opacity;
}

@keyframes particleFadeOut {
    0% {
        opacity: 1;
        transform: rotate(var(--rotation, 0deg)) scale(1) translateY(0);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: rotate(var(--rotation, 0deg)) scale(0.3) translateY(-40px);
    }
}

/* Sparkle variation */
@keyframes particleSparkle {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% {
        filter: brightness(1.5);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
        filter: brightness(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
        filter: brightness(0.8);
    }
}

/* Float upward variation */
@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) translateX(var(--drift, 10px)) scale(0.5);
    }
}

/* Disable on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-particle-container {
        display: none !important;
    }
}

/* Magic Particles Container */
.magic-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.magic-particle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    animation: particleFade 1s ease-out forwards;
}

@keyframes particleFade {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0) translate(var(--tx), var(--ty));
    }
}

/* Spice emojis floating */
.floating-emoji {
    position: absolute;
    font-size: 1.5rem;
    pointer-events: none;
    animation: emojiFloat 2s ease-out forwards;
    z-index: 9999;
}

@keyframes emojiFloat {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg) scale(0.5);
    }
}

/* ============================================
   REALISTIC DISH EFFECTS
   ============================================ */
.menu-item {
    position: relative;
    overflow: hidden;
}

.menu-item-image {
    position: relative;
    overflow: hidden;
}

/* ============================================
   COOK-IN EFFECT - Grayscale to Color on Scroll
   ============================================ */

/* Initial state - desaturated/grayscale (before cooking) */
.menu-item.cook-in .menu-item-image img {
    filter: grayscale(100%) brightness(0.7) contrast(0.9);
    transform: scale(0.98);
    transition: 
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cooked state - full color and vibrancy */
.menu-item.cook-in.cooked .menu-item-image img {
    filter: grayscale(0%) brightness(1) contrast(1) saturate(1.1);
    transform: scale(1);
}

/* Steam/sizzle effect when cooking in */
.menu-item.cook-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(255, 200, 100, 0) 0%,
        rgba(255, 150, 50, 0.1) 50%,
        rgba(255, 100, 0, 0) 100%
    );
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.menu-item.cook-in.cooking::before {
    opacity: 1;
    animation: cookingGlow 0.8s ease-out forwards;
}

@keyframes cookingGlow {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Rising steam particles during cooking */
.menu-item.cook-in .cook-steam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
}

.menu-item.cook-in.cooking .cook-steam {
    animation: steamRise 1s ease-out forwards;
}

@keyframes steamRise {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -70%);
    }
}

/* Realistic image hover - zoom and brightness */
.menu-item-image img {
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.95);
}

.menu-item.cooked:hover .menu-item-image img,
.menu-item:not(.cook-in):hover .menu-item-image img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.15);
}

/* Subtle vignette effect */
.menu-item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-image::after {
    opacity: 0;
}

/* Shine sweep effect on hover */
.dish-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    pointer-events: none;
    transition: none;
}

.menu-item:hover .dish-shine {
    animation: shineSwipe 0.8s ease forwards;
}

@keyframes shineSwipe {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* Realistic steam effect - subtle wisps */
.steam-effect-realistic {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-item:hover .steam-effect-realistic {
    opacity: 1;
}

.steam-wisp {
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.15), transparent);
    border-radius: 50%;
    filter: blur(8px);
    animation: steamWisp 3s ease-in-out infinite;
}

.steam-wisp:nth-child(1) { 
    left: 25%; 
    animation-delay: 0s;
    width: 25px;
    height: 50px;
}

.steam-wisp:nth-child(2) { 
    left: 50%; 
    animation-delay: 1s;
    width: 35px;
    height: 70px;
}

.steam-wisp:nth-child(3) { 
    left: 75%; 
    animation-delay: 2s;
    width: 20px;
    height: 45px;
}

@keyframes steamWisp {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scaleY(1);
    }
    30% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scaleY(1.5);
    }
}

/* Appetizing glow on hover */
.menu-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.menu-item:hover::before {
    opacity: 0.5;
    filter: blur(10px);
}

/* ============================================
   PREMIUM ENHANCED ANIMATIONS
   ============================================ */

/* Elegant Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: textReveal 0.8s ease forwards;
}

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

/* Premium Staggered Hero Animations */
.hero-badge {
    animation: badgeFloat 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

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

.hero-title .line1 {
    animation: elegantSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-title .line2 {
    animation: elegantSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

@keyframes elegantSlideIn {
    from {
        opacity: 0;
        transform: translateY(60px) rotateX(15deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

.hero-subtitle {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.hero-stats {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.4s;
    opacity: 0;
}

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

/* Hero Image Elegant Entry */
.hero-image {
    animation: heroImageReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes heroImageReveal {
    from {
        opacity: 0;
        transform: scale(0.8) translateX(50px);
        filter: blur(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
        filter: blur(0);
    }
}

/* Floating Cards Elegant Animation */
.floating-card {
    animation: floatCardIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.floating-card.card-1 {
    animation-delay: 1.5s;
}

.floating-card.card-2 {
    animation-delay: 1.8s;
}

@keyframes floatCardIn {
    from {
        opacity: 0;
        transform: scale(0) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* Continuous Float for Cards */
.floating-card.card-1 {
    animation: floatCardIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               gentleFloat 4s ease-in-out infinite;
    animation-delay: 1.5s, 2.5s;
}

.floating-card.card-2 {
    animation: floatCardIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               gentleFloat 5s ease-in-out infinite;
    animation-delay: 1.8s, 2.8s;
}

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

/* Premium Section Reveals */
section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

section#home {
    opacity: 1;
    transform: none;
}

/* Elegant Stagger for Grid Items */
.menu-item,
.gallery-item,
.specialty-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-visible .menu-item,
.section-visible .gallery-item,
.section-visible .specialty-card {
    opacity: 1;
    transform: translateY(0);
}

.section-visible .menu-item:nth-child(1),
.section-visible .gallery-item:nth-child(1),
.section-visible .specialty-card:nth-child(1) { transition-delay: 0.1s; }

.section-visible .menu-item:nth-child(2),
.section-visible .gallery-item:nth-child(2),
.section-visible .specialty-card:nth-child(2) { transition-delay: 0.2s; }

.section-visible .menu-item:nth-child(3),
.section-visible .gallery-item:nth-child(3),
.section-visible .specialty-card:nth-child(3) { transition-delay: 0.3s; }

.section-visible .menu-item:nth-child(4),
.section-visible .gallery-item:nth-child(4),
.section-visible .specialty-card:nth-child(4) { transition-delay: 0.4s; }

.section-visible .menu-item:nth-child(5) { transition-delay: 0.5s; }
.section-visible .menu-item:nth-child(6) { transition-delay: 0.6s; }

/* Decorative Floating Elements */
.floating-decor {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    font-size: 2rem;
    animation: floatDecor 20s linear infinite;
}

@keyframes floatDecor {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Premium Mandala Rotation */
.mandala {
    animation: mandalaSpin 60s linear infinite;
}

.mandala-2 {
    animation: mandalaSpin 80s linear infinite reverse;
}

@keyframes mandalaSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Elegant Underline Animation for Links */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

/* Premium Button Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Elegant Icon Bounce */
.btn i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Section Title Animations */
.section-badge {
    animation: shimmerBadge 3s ease infinite;
}

@keyframes shimmerBadge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.section-title {
    background: linear-gradient(90deg, var(--text-light), var(--secondary), var(--text-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Premium Image Loading Effect */
.menu-item-image img,
.gallery-item img {
    animation: imageLoad 0.8s ease forwards;
}

@keyframes imageLoad {
    from {
        opacity: 0;
        filter: blur(10px) saturate(0);
    }
    to {
        opacity: 1;
        filter: blur(0) saturate(1);
    }
}

/* Elegant Form Input Animations */
.form-group input,
.form-group select,
.form-group textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.2);
}

/* Premium Testimonial Card */
.testimonial-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Animated Quote Icon */
.testimonial-card .quote-icon {
    animation: quoteFloat 3s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Premium Price Tag Animation */
.menu-item-price {
    position: relative;
    overflow: hidden;
}

.menu-item-price::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: priceShine 3s ease infinite;
}

@keyframes priceShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Elegant Category Button Animation */
.category-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
    opacity: 1;
}

.category-btn:hover {
    transform: translateY(-3px) scale(1.05);
    color: white;
}

/* Animated Background Gradient */
.hero {
    background: linear-gradient(-45deg, #8B2500, #CD4F00, #FF6B35, #F39C12, #8B2500);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulsing Glow Effects */
.hero-image .image-frame {
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(211, 84, 0, 0.3);
    }
    50% {
        box-shadow: 0 25px 80px rgba(211, 84, 0, 0.5);
    }
}

/* Scroll Indicator Premium Animation */
.scroll-indicator {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.scroll-indicator .mouse {
    animation: mouseScroll 2s ease-in-out infinite;
}

@keyframes mouseScroll {
    0%, 100% { 
        opacity: 1;
        transform: translateY(0);
    }
    50% { 
        opacity: 0.5;
        transform: translateY(5px);
    }
}

/* Elegant Border Animation */
.specialty-card {
    position: relative;
}

.specialty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.specialty-card:hover::before {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Premium Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.05) 100%);
    background-size: 200% 100%;
    animation: skeletonWave 1.5s ease infinite;
}

@keyframes skeletonWave {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Elegant Counter Animation */
.stat-number {
    display: inline-block;
    animation: countPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes countPop {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Premium Footer Wave */
.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231A0F0A' d='M0,50 C360,100 1080,0 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
    background-size: cover;
}

/* Animated Social Icons */
.social-link {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) rotate(10deg);
}

/* Premium Back to Top Animation */
.back-to-top {
    animation: backToTopPulse 2s ease infinite;
}

@keyframes backToTopPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(211, 84, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(211, 84, 0, 0.6);
    }
}

.back-to-top:hover {
    animation: none;
    transform: translateY(-5px) scale(1.1);
}

/* Decorative Animated Dots */
.decorative-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decorative-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: dotFloat 10s ease-in-out infinite;
}

@keyframes dotFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(-10px, -40px); }
    75% { transform: translate(15px, -20px); }
}

/* Premium Spice Level Indicator Animation */
.spice-level i,
.spice-level span {
    display: inline-block;
    animation: spiceWiggle 0.5s ease;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes spiceWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Magnetic Button Effect */
.btn-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-magnetic:hover {
    transform: translate(var(--magnetic-x, 0), var(--magnetic-y, 0));
}

/* Glowing Border Animation */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: glowRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-border:hover::before {
    opacity: 1;
}

@keyframes glowRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Shake animation for spicy items */
.spice-shake:hover {
    animation: spiceShake 0.5s ease-in-out;
}

@keyframes spiceShake {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-5px) rotate(-5deg); }
    50% { transform: translateX(5px) rotate(5deg); }
    75% { transform: translateX(-3px) rotate(-3deg); }
}

/* Bounce in animation */
.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Flip Card Effect */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Morphing Background */
.morphing-bg {
    background: linear-gradient(-45deg, #8B2500, #CD4F00, #FF6B35, #F39C12);
    background-size: 400% 400%;
    animation: morphGradient 15s ease infinite;
}

@keyframes morphGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ripple Effect on Click */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleExpand 0.6s linear;
    pointer-events: none;
}

@keyframes rippleExpand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Floating Animation Enhanced */
.float-enhanced {
    animation: floatEnhanced 6s ease-in-out infinite;
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}


/* Sparkle Effect */
.sparkle {
    position: relative;
}

.sparkle::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1rem;
    opacity: 0;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.sparkle:hover::after {
    opacity: 1;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
}

/* Stat Icon Styles */
.stat-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

/* Badge Icon Styles */
.badge-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.experience-badge {
    text-align: center;
}

/* Loading Shimmer Effect */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--secondary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blinkCaret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: var(--secondary); }
}

/* 3D Card Hover */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.card-3d:hover {
    transform: translateZ(20px) rotateX(5deg) rotateY(-5deg);
}

.card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: translateZ(30px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-3d:hover::before {
    opacity: 1;
}

/* Wave Animation for Footer */
.wave-divider {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

/* Neon Glow Text */
.neon-text {
    text-shadow:
        0 0 5px var(--secondary),
        0 0 10px var(--secondary),
        0 0 20px var(--secondary),
        0 0 40px var(--primary);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px var(--secondary),
            0 0 10px var(--secondary),
            0 0 20px var(--secondary),
            0 0 40px var(--primary);
    }
    to {
        text-shadow:
            0 0 2px var(--secondary),
            0 0 5px var(--secondary),
            0 0 10px var(--secondary),
            0 0 20px var(--primary);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--bg-gradient);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Interactive Hover Lift */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(211, 84, 0, 0.3);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-follower,
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}

/* ============================================
   PREMIUM GLOW FOLLOW EFFECT
   ============================================ */
.menu-item,
.specialty-card,
.testimonial-card {
    --glow-x: 50%;
    --glow-y: 50%;
}

.menu-item::after,
.specialty-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        300px circle at var(--glow-x) var(--glow-y),
        rgba(243, 156, 18, 0.15),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.menu-item:hover::after,
.specialty-card:hover::after {
    opacity: 1;
}

/* ============================================
   LETTER REVEAL ANIMATION
   ============================================ */
@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* ============================================
   PREMIUM GLASS MORPHISM
   ============================================ */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 15, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ============================================
   ANIMATED GRADIENT BORDER
   ============================================ */
.gradient-border-animated {
    position: relative;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
}

.gradient-border-animated::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        var(--gradient-angle, 0deg),
        var(--primary),
        var(--secondary),
        var(--accent),
        var(--primary)
    );
    border-radius: inherit;
    z-index: -1;
    animation: gradientBorderRotate 4s linear infinite;
}

@keyframes gradientBorderRotate {
    0% { --gradient-angle: 0deg; }
    100% { --gradient-angle: 360deg; }
}

@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* ============================================
   PREMIUM SPOTLIGHT EFFECT
   ============================================ */
.spotlight-container {
    position: relative;
    overflow: hidden;
}

.spotlight-container::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    animation: spotlightMove 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes spotlightMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10%, 10%); }
    50% { transform: translate(-5%, 15%); }
    75% { transform: translate(15%, -5%); }
}

/* ============================================
   ELEGANT LOADING SPINNER
   ============================================ */
.elegant-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--secondary);
    border-radius: 50%;
    animation: elegantSpin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes elegantSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   PREMIUM BADGE PULSE
   ============================================ */
.badge.popular,
.badge.bestseller {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(211, 84, 0, 0.3);
    }
}

/* ============================================
   MORPHING BLOB BACKGROUND
   ============================================ */
.blob-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blobMorph 15s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 50% 40% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 60% 50% 40% 60%;
        transform: translate(20px, -30px) rotate(90deg);
    }
    50% {
        border-radius: 40% 60% 50% 40%;
        transform: translate(-10px, 20px) rotate(180deg);
    }
    75% {
        border-radius: 50% 40% 60% 50%;
        transform: translate(30px, 10px) rotate(270deg);
    }
}

/* ============================================
   PREMIUM REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   PREMIUM TEXTURE OVERLAYS
   ============================================ */
.texture-grain {
    position: relative;
}

.texture-grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
}

/* ============================================
   ELEGANT LINE ANIMATIONS
   ============================================ */
.animated-line {
    position: relative;
    display: inline-block;
}

.animated-line::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated-line:hover::after,
.animated-line.active::after {
    width: 100%;
}

/* ============================================
   PREMIUM FOCUS STATES
   ============================================ */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
    transition: outline-offset 0.2s ease;
}

/* ============================================
   SMOOTH IMAGE TRANSITIONS
   ============================================ */
img {
    transition: filter 0.5s ease, transform 0.5s ease;
}

.gallery-item img:hover {
    filter: brightness(1.1) contrast(1.05);
}

/* ============================================
   ANIMATED DECORATIVE LINES
   ============================================ */
.decorative-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* ============================================
   PREMIUM NUMBER STYLING
   ============================================ */
.premium-number {
    font-family: var(--font-display);
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
}

/* ============================================
   STEAM/SMOKE ANIMATION
   ============================================ */
.steam-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-item:hover .steam-container {
    opacity: 1;
}

.steam {
    position: absolute;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: steamRise 2s ease-out infinite;
    filter: blur(5px);
}

.steam:nth-child(1) {
    left: 20%;
    width: 30px;
    height: 40px;
    animation-delay: 0s;
}

.steam:nth-child(2) {
    left: 40%;
    width: 25px;
    height: 35px;
    animation-delay: 0.3s;
}

.steam:nth-child(3) {
    left: 60%;
    width: 35px;
    height: 45px;
    animation-delay: 0.6s;
}

.steam:nth-child(4) {
    left: 75%;
    width: 20px;
    height: 30px;
    animation-delay: 0.9s;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) scaleX(1.5);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-80px) scaleX(2);
        opacity: 0;
    }
}

/* ============================================
   TYPEWRITER EFFECT
   ============================================ */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--secondary);
    white-space: nowrap;
    animation: typing 4s steps(60, end), blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--secondary); }
}

/* ============================================
   ANIMATED INDIAN MANDALA
   ============================================ */
.mandala-bg {
    position: fixed;
    pointer-events: none;
    opacity: 0.03;
    z-index: 0;
}

.mandala-bg.left {
    left: -200px;
    top: 20%;
    width: 400px;
    height: 400px;
    animation: mandalaRotate 60s linear infinite;
}

.mandala-bg.right {
    right: -200px;
    bottom: 20%;
    width: 500px;
    height: 500px;
    animation: mandalaRotate 80s linear infinite reverse;
}

@keyframes mandalaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mandala-pattern {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23F39C12' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23F39C12' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23F39C12' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%23F39C12' stroke-width='0.5'/%3E%3Cpath d='M100 10 L100 190 M10 100 L190 100 M30 30 L170 170 M170 30 L30 170' stroke='%23F39C12' stroke-width='0.3' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================
   FLIP COUNTER ANIMATION
   ============================================ */
.flip-counter {
    display: inline-flex;
    perspective: 500px;
}

.flip-digit {
    display: inline-block;
    position: relative;
    width: 0.6em;
    height: 1.2em;
    margin: 0 1px;
    font-family: var(--font-display);
    font-weight: 700;
}

.flip-digit-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-style: preserve-3d;
}

.flip-digit.flipping .flip-digit-inner {
    animation: flipDigit 0.6s ease-out;
}

@keyframes flipDigit {
    0% { transform: rotateX(0); }
    50% { transform: rotateX(-90deg); }
    100% { transform: rotateX(0); }
}

.flip-digit-front {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    border-radius: 4px;
}

/* ============================================
   MAGNETIC CURSOR EFFECT
   ============================================ */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.magnetic-inner {
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ============================================
   IMAGE REVEAL ON SCROLL
   ============================================ */
.reveal-image {
    position: relative;
    overflow: hidden;
}

.reveal-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    transform: scaleX(1);
    transform-origin: right;
    z-index: 2;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-image.revealed::before {
    transform: scaleX(0);
}

.reveal-image img {
    transform: scale(1.3);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-image.revealed img {
    transform: scale(1);
}

/* ============================================
   PARALLAX GALLERY
   ============================================ */
.parallax-gallery {
    perspective: 1000px;
}

.parallax-item {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.parallax-item:hover {
    transform: translateZ(30px) scale(1.02);
}

/* ============================================
   PHOTO LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.1rem;
}

/* ============================================
   STICKY ORDER BUTTON (Mobile)
   ============================================ */
.sticky-order {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, var(--bg-dark) 80%, transparent);
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-order.visible {
    transform: translateY(0);
}

.sticky-order-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(211, 84, 0, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

.sticky-order-btn i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .sticky-order {
        display: block;
    }
    
    /* Add padding to body so content isn't hidden behind sticky button */
    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   CLICK TO CALL STYLING
   ============================================ */
.click-to-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.click-to-call:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.click-to-call i {
    animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    50% { transform: rotate(0); }
}

/* ============================================
   GOOGLE MAPS EMBED
   ============================================ */
.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1), transparent);
    pointer-events: none;
}

/* ============================================
   REALISTIC FLOATING SPICE PARTICLES
   ============================================ */
.spice-world {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.realistic-spice {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: floatSpice 15s ease-in-out infinite;
}

@keyframes floatSpice {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) rotate(360deg) scale(0.5);
    }
}

/* Different spice types with varied animations */
.spice-chili { color: #e74c3c; }
.spice-turmeric { color: #f39c12; }
.spice-cardamom { color: #27ae60; }
.spice-star { color: #8b4513; }

/* ============================================
   LOTTIE ANIMATION CONTAINERS
   ============================================ */
.lottie-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.specialty-card .lottie-icon {
    width: 100px;
    height: 100px;
}

/* ============================================
   DYNAMIC CONTENT STYLES (Google Sheets)
   ============================================ */

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
}

.loading-state .loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Menu Item Badges */
.menu-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.menu-item-badge.new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    animation: badgePulse 2s ease-in-out infinite;
}

.menu-item-badge.bestseller {
    background: linear-gradient(135deg, var(--gold), var(--secondary));
    color: var(--bg-dark);
}

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

/* Vegetarian Icon */
.veg-icon {
    margin-left: 0.5rem;
    font-size: 0.9em;
}

/* Spicy Level Indicator */
.spicy-level {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Error State */
.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
    text-align: center;
}

.error-state i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.error-state .retry-btn {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
}

.error-state .retry-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Sheets Status Indicator (for debugging) */
.sheets-status {
    position: fixed;
    bottom: 100px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #2ecc71;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-family: monospace;
    z-index: 9999;
    display: none;
}

.sheets-status.error {
    color: #e74c3c;
}

.sheets-status.loading {
    color: #f39c12;
}

/* ============================================
   STICKY ORDER BUTTON
   ============================================ */

.sticky-order-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(211, 84, 0, 0.4);
    transition: all 0.3s ease;
    align-items: center;
    gap: 0.75rem;
}

.sticky-order-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 84, 0, 0.5);
}

.sticky-order-btn i {
    font-size: 1.1rem;
}

/* Show on mobile */
@media (max-width: 768px) {
    .sticky-order-btn {
        display: flex;
        bottom: 15px;
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Hide when at top of page */
.sticky-order-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

/* Order button in hero */
.order-now-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: white !important;
    border: none !important;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.4);
}

.order-now-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary)) !important;
    box-shadow: 0 12px 35px rgba(211, 84, 0, 0.5);
    transform: translateY(-3px);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(211, 84, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(211, 84, 0, 0.7);
    }
}

