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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-page);
    overflow-x: hidden;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.75rem; }
h2 { font-size: 3.125rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Colors and Variables */
:root {
    /* Primary Colors - Updated to match logo */
    --primary-700: #821A1A;
    --primary-900: #6D1515;
    
    /* Accent Colors - Updated to match logo gold/yellow */
    --accent-500: #F2A900;
    --accent-300: #D4A84D;
    --accent-700: #B7882F;
    
    /* Secondary Accent - Logo red */
    --accent-red: #BF0A0A;
    
    /* Neutral Colors */
    --bg-page: #FDF8F3;
    --bg-surface: #FFFFFF;
    --text-primary: #2D2D2D;
    --text-secondary: #555555;
    --text-inverse: #FFFFFF;
    
    /* Semantic Colors */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    --space-xxxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-md: 0 4px 12px rgba(130, 26, 26, 0.15);
    --shadow-lg: 0 10px 30px rgba(130, 26, 26, 0.2);
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Container and Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer .container {
    padding: 0 var(--space-lg);
}

.section {
    min-height: 100vh;
    padding: var(--space-xxxl) 0;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
}

.section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 60px; /* Adjusted for deliveroo banner */
    left: 0;
    right: 0;
    background: var(--primary-700);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-500);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.brand-logo-link {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-inverse);
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--accent-500);
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--text-inverse);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: var(--space-xs) 0;
    transition: all var(--transition-fast);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-500);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.btn-order {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--accent-500);
    color: var(--primary-900);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-smooth);
    border: 2px solid var(--accent-500);
}

.btn-order:hover {
    background: var(--accent-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-inverse);
    transition: all var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-500);
    color: var(--primary-900);
    border-color: var(--accent-500);
}

.btn-primary:hover {
    background: var(--accent-300);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: #3D332A;
    border-color: rgba(122, 102, 83, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(240, 234, 214, 0.1);
    color: var(--accent-500);
    border-color: var(--accent-500);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: var(--primary-700);
    z-index: -2;
}

.hero-pattern {
    display: none;
}

/* Animation removed - patterns removed */

.hero-content {
    max-width: 800px;
    z-index: 1;
    animation: heroFadeIn 1.5s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(232, 198, 111, 0.2);
    color: var(--accent-500);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(232, 198, 111, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 6rem;
    color: var(--text-inverse);
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 2px 2px 20px rgba(232, 198, 111, 0.5); }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--accent-500);
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-inverse);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced styling for "View Menu" button in hero section */
.hero .btn-secondary {
    background: rgba(129, 26, 26, 0.8);
    border: 2px solid var(--accent-500);
    color: var(--accent-500);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: rgba(129, 26, 26, 0.95);
    border-color: var(--accent-500);
    color: var(--accent-500);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 169, 0, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-inverse);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-icon {
    width: 24px;
    height: 24px;
}

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

/* Section Styles */
.section-title {
    text-align: center;
    color: var(--primary-700);
    margin-bottom: var(--space-sm);
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-500);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-xxl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxxl);
}

/* Featured Section */
.featured-section {
    padding: var(--space-lg) 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.featured-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    animation: cardSlideUp 0.6s ease-out;
}

.featured-card:nth-child(2) { animation-delay: 0.1s; }
.featured-card:nth-child(3) { animation-delay: 0.2s; }

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

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--accent-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-700);
}

.food-dhokla { background: #F2A900; }
.food-panipuri { background: #BF0A0A; }
.food-thali { background: #2D8B4B; }

.vegetarian-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--success);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-icon {
    width: 14px;
    height: 14px;
}

.featured-content {
    padding: var(--space-md);
}

.featured-title {
    color: var(--primary-700);
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.featured-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    line-height: 1.4;
}

.featured-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-500);
    margin-top: var(--space-xs);
}

/* Highlights Section */
.highlights-section {
    background: var(--primary-700);
    color: var(--text-inverse);
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.highlights-section::before {
    display: none;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.highlight-item {
    text-align: center;
    animation: highlightFadeIn 0.8s ease-out;
}

.highlight-item:nth-child(2) { animation-delay: 0.1s; }
.highlight-item:nth-child(3) { animation-delay: 0.2s; }
.highlight-item:nth-child(4) { animation-delay: 0.3s; }

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

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 198, 111, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.highlight-icon .icon {
    width: 30px;
    height: 30px;
    color: var(--accent-500);
}

.highlight-title {
    color: var(--text-inverse);
    margin-bottom: var(--space-sm);
}

.highlight-description {
    color: rgba(240, 234, 214, 0.8);
}

/* Menu Section */

.menu-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--space-xl);
}

.menu-filters {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-btn {
    padding: var(--space-md) var(--space-lg);
    border: 2px solid transparent;
    background: var(--bg-surface);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent-300);
}

.filter-btn.active {
    background: var(--accent-500);
    color: var(--primary-900);
    border-color: var(--accent-500);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

.menu-content {
    animation: menuSlideIn 0.6s ease-out;
}

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

.menu-category {
    margin-bottom: var(--space-xxl);
    opacity: 0;
    transform: translateY(20px);
    animation: categorySlideIn 0.6s ease-out forwards;
}

.menu-category:nth-child(1) { animation-delay: 0.1s; }
.menu-category:nth-child(2) { animation-delay: 0.2s; }
.menu-category:nth-child(3) { animation-delay: 0.3s; }
.menu-category:nth-child(4) { animation-delay: 0.4s; }

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

.category-title {
    background: var(--accent-500);
    color: var(--primary-700);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-title::before {
    display: none;
}

/* Shimmer animation removed - patterns removed */

.menu-items {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(232, 198, 111, 0.3);
    transition: all var(--transition-fast);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(232, 198, 111, 0.05);
    margin: 0 calc(-1 * var(--space-lg));
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    border-radius: var(--radius-md);
}

.item-info {
    flex: 1;
    padding-right: var(--space-md);
}

.item-name {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.item-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-500);
    white-space: nowrap;
    padding-left: var(--space-md);
}

/* Allergen Section */
.allergen-section {
    margin-top: var(--space-xxl);
}

.allergen-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.allergen-title {
    color: var(--primary-700);
    margin-bottom: var(--space-lg);
}

.allergen-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.vegetarian-badge-large {
    background: var(--success);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 1.125rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
    margin-bottom: var(--space-xxxl);
}

.about-text {
    animation: aboutSlideLeft 0.8s ease-out;
}

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

.about-subtitle {
    color: var(--primary-700);
    margin-bottom: var(--space-md);
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-500);
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    color: var(--primary-700);
    margin-bottom: var(--space-xs);
}

.feature-text {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.about-image {
    animation: aboutSlideRight 0.8s ease-out;
}

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

.image-placeholder.cooking-scene {
    background: var(--primary-700);
    height: 500px;
    border-radius: var(--radius-lg);
}

/* Values Section */

.values-title {
    text-align: center;
    color: var(--primary-700);
    margin-bottom: var(--space-xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-lg);
    animation: valueFadeIn 0.6s ease-out;
}

.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }
.value-card:nth-child(4) { animation-delay: 0.3s; }

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.value-icon .icon {
    width: 30px;
    height: 30px;
    color: var(--primary-900);
}

.value-title {
    color: var(--primary-700);
    margin-bottom: var(--space-sm);
}

.value-text {
    color: var(--text-secondary);
}

/* Contact Section - Redesigned */
.contact-section-redesigned {
    background: var(--bg-page);
    padding: var(--space-xxxl) 0;
}

.contact-hero {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.contact-main {
    margin-bottom: var(--space-xxl);
}

.contact-info-redesigned {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xxl);
    max-width: 1200px;
    margin-left: 0;
    padding-left: var(--space-xl);
}

@media (max-width: 900px) {
    .contact-info-redesigned {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card-redesigned {
    background: var(--bg-surface);
    border: 2px solid rgba(232, 198, 111, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    animation: contactCardSlideIn 0.6s ease-out;
}

.contact-card-redesigned:nth-child(2) { animation-delay: 0.1s; }
.contact-card-redesigned:nth-child(3) { animation-delay: 0.2s; }
.contact-card-redesigned:nth-child(4) { animation-delay: 0.3s; }

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

.contact-card-redesigned:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-500);
}

.contact-icon-redesigned {
    width: 60px;
    height: 60px;
    background: var(--accent-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
}

.contact-icon-redesigned .icon {
    width: 28px;
    height: 28px;
    color: var(--primary-900);
}

.contact-title-redesigned {
    color: var(--primary-700);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.contact-action {
    display: block;
    color: var(--accent-500);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
}

.contact-action:hover {
    color: var(--primary-700);
}

.contact-action-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--accent-500);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-action-link:hover {
    color: var(--primary-700);
}

.small-icon {
    width: 16px;
    height: 16px;
}

.contact-note {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(232, 198, 111, 0.2);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: var(--text-primary);
    font-weight: 500;
}

.time {
    color: var(--text-secondary);
    font-weight: 600;
}

.contact-address {
    color: var(--text-secondary);
    font-style: normal;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    text-align: center;
}

/* Map Section - Redesigned */
.map-section-redesigned {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.map-title {
    color: var(--primary-700);
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
}

.map-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.map-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-page);
}

.map-placeholder {
    width: 100%;
    background: var(--primary-700);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--text-inverse);
}

.map-details {
    max-width: 500px;
    margin: 0 auto;
}

.address-block {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.map-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-500);
    margin-top: 2px;
}

.map-location {
    color: var(--text-inverse);
    margin-bottom: var(--space-xs);
    font-size: 1.125rem;
}

.map-address {
    color: rgba(240, 234, 214, 0.9);
    line-height: 1.5;
}

.map-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .address-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
    }
}

/* Map section specific button overrides for visibility */
.map-section-redesigned .btn-secondary {
    color: var(--text-inverse);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-section-redesigned .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
    border-color: var(--accent-500);
}

/* Map Section - Redesigned is in the redesigned contact section above */

/* Footer */
.footer {
    background: var(--primary-700);
    color: var(--text-inverse);
    padding: var(--space-xl) 0 var(--space-lg);
}

@media (max-width: 768px) {
    .footer {
        padding: var(--space-lg) 0 var(--space-md);
    }
    
    .footer .container {
        padding: 0 var(--space-md);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    align-items: start;
}

.footer-brand {
    animation: footerSlideIn 0.6s ease-out;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-link {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-md);
}



.footer-description {
    color: rgba(240, 234, 214, 0.8);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(232, 198, 111, 0.2);
    border-radius: 50%;
    color: var(--accent-500);
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent-500);
    color: var(--primary-900);
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-title {
    color: var(--text-inverse);
    margin-bottom: var(--space-lg);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: var(--space-sm);
}

.footer-link {
    color: rgba(240, 234, 214, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-500);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: rgba(240, 234, 214, 0.8);
    margin-bottom: var(--space-xs);
    line-height: 1.5;
}

.contact-item span {
    flex: 1;
}

.contact-item .contact-link {
    flex: 1;
    color: rgba(240, 234, 214, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: pointer;
}

.contact-item .contact-link:hover {
    color: var(--accent-500);
    text-decoration: underline;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-500);
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 198, 111, 0.3);
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
}

.footer-copyright {
    color: rgba(240, 234, 214, 0.6);
    margin-bottom: 0;
}

.footer-attribution {
    color: rgba(240, 234, 214, 0.5);
    font-size: 0.75rem;
    margin-bottom: 0;
    font-style: italic;
}

.footer-vegetarian {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(240, 234, 214, 0.8);
    margin-bottom: 0;
}

.vegetarian-icon {
    width: 18px;
    height: 18px;
    color: var(--success);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .footer .container {
        padding: 0 var(--space-md);
    }
    
    .menu-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .menu-filters {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-sm);
        margin-bottom: var(--space-lg);
    }
    
    .filter-btn {
        flex: 1;
        min-width: 140px;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 700;
        padding: var(--space-lg);
        min-height: 48px;
        border-radius: var(--radius-lg);
        letter-spacing: 0.3px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .featured-section {
        padding: var(--space-md) 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xxxl: 4rem;
        --space-xxl: 3rem;
        --space-xl: 2rem;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Adjust navbar top position for deliveroo banner on tablet */
    .navbar {
        top: 58px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-section {
        padding: var(--space-md) 0;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .highlights-section {
        padding: var(--space-lg) 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .item-price {
        align-self: flex-end;
        padding-left: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-redesigned {
        grid-template-columns: 1fr;
        padding-left: var(--space-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    /* Adjust navbar top position for deliveroo banner on mobile */
    .navbar {
        top: 120px; /* Increased to account for taller banner in column layout */
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .menu-filters {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .filter-btn {
        width: 100%;
        font-size: 1.2rem;
        font-weight: 700;
        padding: var(--space-xl);
        min-height: 52px;
        border-radius: var(--radius-lg);
        margin-bottom: var(--space-sm);
        letter-spacing: 0.5px;
        box-shadow: var(--shadow-sm);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-section {
        padding: var(--space-md) 0;
    }
    
    /* Additional mobile navigation fixes for very small screens */
    .btn-order {
        padding: var(--space-xs);
        font-size: 0.75rem;
        gap: 2px;
    }
    
    .btn-order .btn-icon {
        width: 14px;
        height: 14px;
    }
    
    .nav-toggle {
        padding: var(--space-xs);
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll,
    .footer {
        display: none !important;
    }
    
    .section {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        page-break-inside: avoid;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Featured Items Enhancements */
.featured-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth);
}

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

.btn-order-featured {
    width: 100%;
    margin-top: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

/* Customer Reviews Section */
.reviews-section {
    padding: var(--space-xxxl) 0;
    background: var(--bg-page);
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.reviews-section .section-subtitle {
    text-align: center;
    margin-bottom: var(--space-xxl);
    color: var(--text-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.review-card {
    background: var(--bg-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-rating {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #FFD700;
    fill: currentColor;
}

.review-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    position: relative;
    padding-left: var(--space-md);
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-700);
    position: absolute;
    left: -var(--space-sm);
    top: -var(--space-sm);
    opacity: 0.3;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
}

.reviewer-location {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.reviews-action {
    text-align: center;
}



/* Notifications */
.order-notification {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg);
    z-index: 1000;
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.notification-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-700);
}

.notification-actions {
    display: flex;
    gap: var(--space-sm);
}

.notification-actions .btn {
    flex: 1;
    text-align: center;
}

/* About Section Image Enhancement */
.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .order-notification {
        right: var(--space-sm);
        left: var(--space-sm);
        min-width: auto;
    }
    
    .notification-actions {
        flex-direction: column;
    }
    
    /* Fix mobile navigation layout - Order Now button too big issue */
    .nav-actions {
        gap: var(--space-xs);
        flex-shrink: 0;
    }
    
    .btn-order {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.8rem;
        min-width: auto;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .nav-toggle {
        margin-left: var(--space-xs);
        flex-shrink: 0;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
    
    /* Responsive menu headers */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .category-title {
        font-size: 1.3rem;
        padding: var(--space-sm) var(--space-md);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .category-title {
        font-size: 1.2rem;
        padding: var(--space-sm);
        letter-spacing: 0.3px;
    }
    
    .filter-btn {
        font-size: 1.3rem;
        padding: var(--space-lg) var(--space-md);
        min-height: 56px;
        margin-bottom: var(--space-md);
    }
    
    .menu-filters {
        gap: var(--space-md);
    }
}
    
    /* Ensure proper spacing in mobile header */
    .nav-container {
        gap: var(--space-sm);
    }
}