:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(245, 240, 230, 1); /* Updated to a warmer beige */
  --color-cream-100: rgba(240, 235, 225, 1); /* Updated to a warmer cream */
  --color-gray-200: rgba(225, 220, 210, 1); /* Updated to a beige-gray */
  --color-gray-300: rgba(180, 175, 165, 1); /* Updated to a warmer gray */
  --color-gray-400: rgba(140, 135, 125, 1); /* Updated to a warmer gray */
  --color-slate-500: rgba(100, 100, 90, 1); /* Updated to an olive-slate */
  
  /* New olive palette */
  --color-olive-300: rgba(159, 166, 123, 1); /* Light olive */
  --color-olive-400: rgba(145, 155, 105, 1); /* Medium-light olive */
  --color-olive-500: rgba(128, 140, 90, 1); /* Medium olive */
  --color-olive-600: rgba(112, 128, 74, 1); /* Medium-dark olive */
  --color-olive-700: rgba(90, 102, 60, 1); /* Dark olive */
  
  /* Brown earth tones */
  --color-brown-300: rgba(200, 180, 160, 1); /* Light brown */
  --color-brown-400: rgba(185, 165, 145, 1); /* Medium-light brown */
  --color-brown-500: rgba(160, 140, 120, 1); /* Medium brown */
  --color-brown-600: rgba(130, 110, 90, 1); /* Medium-dark brown */
  --color-brown-700: rgba(115, 85, 55, 1); /* Dark brown */
  
  /* Accent colors (still needed for functionality) */
  --color-red-400: rgba(200, 120, 100, 1); /* Warmer, more earthy red */
  --color-red-500: rgba(180, 90, 70, 1); /* Deeper earthy red */
  --color-orange-400: rgba(210, 170, 120, 1); /* Warm sand color */
  --color-orange-500: rgba(190, 140, 90, 1); /* Deeper sand color */

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 130, 110, 90;
  --color-olive-500-rgb: 128, 140, 90;
  --color-olive-600-rgb: 112, 128, 74;
  --color-olive-700-rgb: 90, 102, 60;
  --color-brown-500-rgb: 160, 140, 120;
  --color-brown-700-rgb: 115, 85, 55;
  --color-red-500-rgb: 180, 90, 70;
  --color-red-400-rgb: 200, 120, 100;
  --color-orange-500-rgb: 190, 140, 90;
  --color-orange-400-rgb: 210, 170, 120;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(128, 140, 90, 0.08); /* Light olive */
  --color-bg-2: rgba(160, 140, 120, 0.08); /* Light brown */
  --color-bg-3: rgba(112, 128, 74, 0.08); /* Medium olive */
  --color-bg-4: rgba(130, 110, 90, 0.08); /* Medium brown */
  --color-bg-5: rgba(90, 102, 60, 0.08); /* Dark olive */
  --color-bg-6: rgba(190, 140, 90, 0.08); /* Warm sand */
  --color-bg-7: rgba(200, 180, 160, 0.08); /* Light brown */
  --color-bg-8: rgba(145, 155, 105, 0.08); /* Medium olive */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */

/* About section styling */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-32);
    align-items: start;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-text p {
    font-size: calc(var(--font-size-lg) + 2px); /* Slightly reduced to help with layout */
    line-height: 1.6; /* Balanced line spacing */
    margin-bottom: var(--space-20); /* Reduced margin for tighter layout */
    color: #2d2d2d; /* Higher contrast dark color */
    font-weight: 450; /* Slightly bolder for better readability */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-24);
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.7);
    padding: var(--space-16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card h4 {
    margin-top: 0;
    margin-bottom: var(--space-8);
    font-size: var(--font-size-xl); /* Increased from default */
    color: var(--color-olive-600); /* Using the olive green from the palette */
}

.feature-card p {
    margin: 0;
    font-size: calc(var(--font-size-md) + 4px); /* Increased for better readability */
    color: #2d2d2d; /* Higher contrast for better readability */
    line-height: 1.6;
    font-weight: 450;
}

/* Section styling */
.section {
    padding: var(--space-32) 0;
}

/* Inner page styling - push content below fixed header */
.page-section {
    padding-top: 60px; /* Reduced top padding by half */
}

/* Only apply normal padding to index.html sections */
body:not(.home-page) main {
    padding-top: 50px; /* Updated to match new header height */
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-32);
    color: var(--color-olive-700);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--color-olive-500);
    margin: var(--space-12) auto var(--space-24);
}
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 128, 140, 90;
  --color-error-rgb: 180, 90, 70;
  --color-warning-rgb: 190, 140, 90;
  --color-info-rgb: 160, 140, 120;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 18px;
  --font-size-sm: 20px;
  --font-size-base: 22px;
  --font-size-md: 25px;
  --font-size-lg: 28px;
  --font-size-xl: 32px;
  --font-size-2xl: 40px;
  --font-size-3xl: 48px;
  --font-size-4xl: 62px;
  --font-size-5xl: 78px;
  --font-size-6xl: 92px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.4;
  --line-height-snug: 1.5;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2.1;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 3px;
  --space-4: 5px;
  --space-6: 8px;
  --space-8: 10px;
  --space-10: 13px;
  --space-12: 15px;
  --space-16: 20px;
  --space-20: 25px;
  --space-24: 30px;
  --space-32: 40px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-base: 10px;
  --radius-md: 13px;
  --radius-lg: 15px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}



[data-color-scheme="light"] {
  /* RGB versions for opacity control (light mode) */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  
  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: 'Caveat', cursive;
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1, h2, .section-title, .hero-tagline {
  font-weight: 700;
  font-size: 1.2em;
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}



.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}







/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}



/* Enhanced Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
  
  .nav-link {
    border: 1px solid currentColor;
  }
  
  .section-title {
    color: #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid #0066cc; /* High contrast blue focus ring */
  outline-offset: 3px;
  border-radius: 2px;
}

/* Enhanced focus styles for better visibility */
.btn:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(0, 102, 204, 0.2);
}



@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Hero background and layout */
.hero {
    min-height: 100vh; /* Use min-height instead of fixed height */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('images/heroimage.jpeg') center top 15%/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color-white);
    padding: 0;
    overflow: visible; /* Allow natural content flow */
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        height: 100vh;
        background-position: center center;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto; /* Let content determine height */
    margin: 0 auto;
    overflow: visible; /* No scrolling */
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-16);
    color: var(--color-white);
}

.hero-logo {
    height: 150px; /* Increased logo size */
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
    background-color: rgba(255, 255, 255, 0.8);
    padding: var(--space-4); /* Reduced padding to maintain layout */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-8); /* Minimal top margin */
    margin-bottom: var(--space-12); /* Reduced bottom margin */
    flex-shrink: 0;
}

.hero-text-content {
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-12); /* Reduced padding to accommodate larger logo */
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: var(--space-8);
    width: 95%;
    max-height: none; /* Remove height limit */
    overflow: visible; /* Remove scrolling */
    flex-shrink: 1;
}

.hero-tagline {
    font-size: 1.3rem; /* Smaller to fit in box without scrolling */
    margin-bottom: var(--space-8);
    color: var(--color-cream-100);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-opening-times,
.hero-phone {
    text-align: center;
    font-size: 1.8rem; /* Match hero description size */
    margin-bottom: var(--space-4);
    color: var(--color-cream-100);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.0rem; /* Smaller to fit in box */
    line-height: 1.4;
    margin: var(--space-8) 0;
    color: var(--color-cream-100);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-rating {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--space-16);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-12);
    margin-top: var(--space-12);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-16); /* Reduced gap to save space */
    margin-top: var(--space-16);
    margin-bottom: var(--space-20);
}

.hero-contact-info {
    margin-top: var(--space-20);
    padding-top: var(--space-12);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.btn {
    display: inline-block;
    padding: 14px 28px; /* Reduced padding to fit better */
    border-radius: var(--radius-md);
    font-size: 1.1rem; /* Smaller text to fit in hero box */
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    min-height: 44px; /* Still accessible touch target */
    min-width: 100px;
}

.btn-primary {
    background-color: var(--color-olive-600);
    color: var(--color-cream-100);
    border: 2px solid var(--color-olive-600);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: var(--color-olive-700);
    border-color: var(--color-olive-700);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-sand-600);
    color: var(--color-olive-900);
    border: 2px solid var(--color-sand-600);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Enhanced mobile visibility for menu button */
@media (max-width: 768px) {
    .btn-secondary {
        border: 2px solid var(--color-cream-100) !important;
        background-color: rgba(var(--color-sand-600-rgb), 0.9) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    }
}

.btn-secondary:hover {
    background-color: var(--color-sand-700);
    border-color: var(--color-sand-700);
    transform: translateY(-2px);
}

.rating {
    font-size: 1.4rem;
    color: #FFD700;
    display: inline-block;
    margin-right: var(--space-8);
}

.hero-details p {
    margin: var(--space-4) 0;
    font-size: var(--font-size-md);
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--color-cream-100);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Navigation - Modern, clean design */
.header {
    position: fixed;
    top: -120px; /* Hide the header initially */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--color-olive-800-rgb), 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--duration-normal) var(--ease-standard);
    height: 100px; /* Increased header height to fit logo */
}

.header.scrolled {
    top: 0; /* Show the header when scrolled */
}

.nav-container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-24);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px; /* Increased to match header height */
}

.nav-logo {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: var(--space-6) var(--space-10);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 70px; /* Increased logo size */
    width: auto;
    max-width: 100%;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-8);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2d2d2d; /* Higher contrast */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem; /* Larger text */
    padding: var(--space-16) var(--space-20); /* Larger touch targets */
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: block;
    position: relative;
    min-height: 44px; /* Minimum touch target */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-sand-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-olive-600);
    background: rgba(var(--color-olive-600-rgb), 0.1);
}

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

.nav-link.active {
    color: var(--color-olive-600);
    font-weight: 700;
    background: rgba(var(--color-olive-600-rgb), 0.15);
}

/* Home page specific navigation styling for better contrast */
.home-page .nav-link {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    color: var(--color-cream-50);
}

.home-page .nav-link:hover {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.2);
}

.home-page .nav-link.active {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.25);
}

/* No mobile-specific menu styles */

/* New Navigation Styles */
.logo {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 100%;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    color: var(--color-olive-700);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Caveat', cursive;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    text-shadow: none;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: rgba(255, 255, 255, 1);
    color: var(--color-olive-800);
}

/* Cookie Notice Popup */
.cookie-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-notice.show {
    opacity: 1;
    visibility: visible;
}

.cookie-notice-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 20px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-notice.show .cookie-notice-content {
    transform: scale(1);
}

.cookie-notice-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.cookie-notice-text strong {
    color: var(--color-olive-700);
    font-size: 1.1rem;
}

.cookie-notice-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-btn-accept {
    background: var(--color-olive-600);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--color-olive-700);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-btn-decline:hover {
    background: #e9e9e9;
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: #2d5a2d;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav.show {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    margin: 10px 0;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    background: rgba(45, 90, 45, 0.1);
    color: #2d5a2d;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Caveat', cursive;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: #2d5a2d;
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-hide {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-alt {
    background: var(--color-bg-1);
}

.section-title {
    text-align: center;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-20);
    color: #2d5a2d; /* Higher contrast green */
    letter-spacing: 1px;
    font-weight: 600;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 20px auto 0;
    background-color: var(--color-olive-500);
}

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

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-32);
    margin-bottom: var(--space-32);
}

.menu-category {
    background: var(--color-surface);
    padding: var(--space-24);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-sm);
}

.menu-category h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-20);
    color: var(--color-olive-500);
    text-align: center;
    border-bottom: 2px solid var(--color-olive-500);
    padding-bottom: var(--space-8);
}

.menu-item {
    margin-bottom: var(--space-20);
    padding-bottom: var(--space-16);
    border-bottom: 1px solid var(--color-border);
}

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

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-8);
}

.item-header h4 {
    font-size: calc(var(--font-size-lg) + 2px); /* Larger menu item names */
    color: #2d5a2d; /* Higher contrast green */
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.price {
    font-weight: var(--font-weight-bold);
    color: #2d5a2d; /* Higher contrast for prices */
    font-size: calc(var(--font-size-lg) + 2px); /* Larger price text */
    margin-left: var(--space-16);
}

.menu-item p {
    color: #333333; /* Higher contrast for descriptions */
    line-height: 1.6;
    margin: 0;
    font-size: calc(var(--font-size-md) + 2px); /* Moderately larger text */
    font-weight: 450;
}

.dietary-info {
    text-align: center;
    padding: var(--space-20);
    background: var(--color-bg-3);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-border);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Give more space to text column */
    gap: var(--space-32);
    align-items: center; /* Center align to balance the layout */
    min-height: 400px; /* Ensure consistent height */
}

/* About: media + text layout */
.about-media { 
    display: flex;
    align-items: center; /* Center the image vertically */
    justify-content: center;
    height: 100%;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-surface);
    height: clamp(280px, 30vw, 380px); /* Fixed height for center alignment */
    margin: auto; /* Center the image */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-right { display: grid; gap: 12px; }

/* Align About heading flush with image top */
.about-right .section-title {
    margin-top: 0;
}

/* Aspect ratio utilities */
.aspect-4-5 { aspect-ratio: 4 / 5; }
.aspect-16-10 { aspect-ratio: 16 / 10; }

/* About gallery under the text */
.about-gallery {
    margin-top: var(--space-32);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-16);
}

/* Responsive gallery layout */
@media (max-width: 768px) {
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-tile {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--color-surface);
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive: stack About columns on small screens */
@media (max-width: 600px) {
    .about-content { grid-template-columns: 1fr; }
}

.about-text p {
    margin-bottom: var(--space-16);
    line-height: var(--line-height-normal);
    color: var(--color-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-16);
    margin-top: var(--space-32);
}

/* Responsive features layout */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--color-surface);
    padding: var(--space-16);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
    text-align: center;
}

.feature-card h4 {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-8);
    color: var(--color-olive-500);
}

.feature-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin: 0;
}

/* Menu Section Styles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.menu-category {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--color-card-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-olive-600);
    margin-bottom: var(--space-16);
    text-align: center;
    border-bottom: 2px solid var(--color-olive-300);
}

/* Mobile menu category titles */
@media (max-width: 768px) {
    .menu-category h3 {
        font-size: 1.3rem !important;
        margin-bottom: var(--space-12) !important;
        padding-bottom: var(--space-8);
    }
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(var(--color-brown-600-rgb), 0.1);
}

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

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

.menu-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brown-700);
    margin: 0;
    line-height: 1.3;
}

.price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-olive-600);
    white-space: nowrap;
    background: rgba(var(--color-olive-600-rgb), 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.menu-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-brown-600);
    margin: 0;
    font-style: italic;
}

/* Responsive menu layout */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .price {
        align-self: flex-start;
    }
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-32);
}

/* Location maps section - right column with map and what3words */
.location-maps {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

/* What3words container styling */
.w3w-container {
    background: var(--color-surface);
    padding: var(--space-20);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
    text-align: center;
}

.w3w-container h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-12);
    color: var(--color-olive-600);
}

.w3w-container p {
    color: var(--color-olive-600);
    margin-bottom: var(--space-12);
}

.w3w-link {
    display: inline-block;
    background-color: var(--color-olive-600);
    color: var(--color-white);
    padding: var(--space-8) var(--space-16);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    margin: var(--space-8) 0;
    transition: all 0.3s ease;
}

.w3w-link:hover {
    background-color: var(--color-olive-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.w3w-icon {
    font-weight: var(--font-weight-bold);
    margin-right: var(--space-4);
}

.w3w-info {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    margin-top: var(--space-12);
}

.directions-button-container {
    margin-top: var(--space-16);
}

.directions-button {
    display: inline-block;
    background-color: var(--color-olive-600);
    color: white;
    padding: var(--space-8) var(--space-16);
    text-decoration: none;
    border-radius: var(--radius-base);
    font-weight: 600;
    transition: all 0.3s ease;
}

.directions-button:hover {
    background-color: var(--color-olive-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

.address-card,
.contact-card,
.directions-card {
    background: var(--color-surface);
    padding: var(--space-20);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
}

.address-card h3,
.contact-card h3,
.directions-card h3,
.w3w-container h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-12);
    color: var(--color-olive-600);
    font-weight: var(--font-weight-semibold);
}

.address-card p,
.contact-card p,
.directions-card p,
.w3w-container p {
    color: var(--color-brown-700);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    font-size: calc(var(--font-size-md) + 1px);
}

.map-container {
    background: var(--color-surface);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
    overflow: hidden;
    height: 400px;
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-24);
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(8, 1fr); }
  .polaroid-box { grid-column: span 4; }
  .polaroid-box:nth-child(2n),
  .polaroid-box:nth-child(3n) { grid-column: span 4; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .polaroid-box,
  .polaroid-box:nth-child(2n),
  .polaroid-box:nth-child(3n) { grid-column: span 4; }
}



/* Ensure nice spacing below section */
.gallery-section .section-subtitle { margin-bottom: var(--space-24); }

#google-map {
    height: 100%;
    width: 100%;
}

/* Events Section */
.events-content {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 var(--space-24);
    text-align: left;
}

.event-info {
    margin-bottom: var(--space-32);
}

.event-info p {
    color: var(--color-brown-700);
    line-height: 1.6;
    margin-bottom: var(--space-16);
    font-size: calc(var(--font-size-md) + 1px);
}

.event-info h3,
.seasonal-events h3,
.event-contact h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-16);
    color: var(--color-olive-600);
    font-weight: var(--font-weight-semibold);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-24);
    margin-bottom: var(--space-32);
}

.event-card {
    background: var(--color-surface);
    padding: var(--space-20);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
    text-align: center;
}

.event-card p {
    color: var(--color-brown-700);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    font-size: calc(var(--font-size-md) + 1px);
}

.event-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-12);
    color: var(--color-olive-600);
    font-weight: var(--font-weight-semibold);
}

.event-contact {
    background: var(--color-surface);
    padding: var(--space-32);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
    margin-top: var(--space-48);
    text-align: center;
}

.event-contact p {
    color: var(--color-brown-700);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    font-size: calc(var(--font-size-md) + 1px);
}

/* Facebook Integration Styles */
.facebook-info {
    max-width: 100%;
    margin: 0 auto var(--space-48) auto;
    text-align: center;
}

.facebook-intro {
    font-size: calc(var(--font-size-lg) + 2px);
    color: var(--color-brown-700);
    margin-bottom: var(--space-12);
    line-height: 1.6;
}

.facebook-link-container {
    margin-bottom: var(--space-32);
}

.facebook-link {
    display: flex;
    align-items: center;
    gap: var(--space-20);
    background: #1877f2;
    color: white;
    padding: var(--space-24);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-standard);
    box-shadow: var(--shadow-sm);
    max-width: 500px;
    margin: 0 auto;
}

.facebook-link:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
    text-decoration: none;
}

.facebook-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-icon svg {
    width: 24px;
    height: 24px;
}

.facebook-text {
    text-align: left;
    flex-grow: 1;
}

.facebook-text h3 {
    margin: 0 0 var(--space-4) 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
}

.facebook-text p {
    margin: 0;
    font-size: var(--font-size-md);
    opacity: 0.9;
    line-height: 1.4;
}

.faceb.footer h4 {
  color: var(--color-olive-700);
  margin-bottom: var(--space-12);
  font-size: 1.4rem;
  font-weight: 700;
}

.footer p {
  margin-bottom: var(--space-8);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: var(--line-height-relaxed);
}

/* Responsive adjustments for Facebook link */
@media (max-width: 768px) {
    .facebook-link {
        flex-direction: column;
        text-align: center;
        gap: var(--space-16);
    }
    
    .facebook-text {
        text-align: center;
    }
}

/* Event Photos Section */
.event-photos {
    margin-top: var(--space-32);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-16);
    width: 100%;
}

.photo-tile {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-fast) var(--ease-standard);
}

.photo-tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-normal) var(--ease-standard);
}

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

/* Responsive adjustments for photo grid */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
}

@media (max-width: 480px) {
    .photo-grid {
        gap: var(--space-8);
    }
}

/* Contact Link Styles */
.contact-link {
    color: var(--color-olive-400);
    text-decoration: underline;
    text-decoration-color: var(--color-olive-300);
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--color-olive-700);
    border-bottom-color: var(--color-olive-600);
    text-decoration: none;
}

/* Corporate Events Section */
.corporate-section {
    background: var(--color-surface);
    padding: var(--space-32);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
    margin: var(--space-48) 0;
}

.corporate-section h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-20);
    color: var(--color-olive-600);
    font-weight: var(--font-weight-semibold);
}

.corporate-section p {
    color: var(--color-brown-700);
    line-height: 1.7;
    margin-bottom: var(--space-24);
    font-size: calc(var(--font-size-md) + 1px);
}

.corporate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-20);
    margin: var(--space-24) 0;
    padding: 0 var(--space-12);
}

.feature-item {
    background: rgba(var(--color-olive-500-rgb), 0.05);
    padding: var(--space-20);
    border-radius: var(--radius-base);
    border-left: 4px solid var(--color-olive-500);
}

.feature-item strong {
    color: var(--color-olive-600);
    font-size: calc(var(--font-size-md) + 1px);
    display: block;
    margin-bottom: var(--space-8);
}

/* Special Occasions Section */
.special-occasions-section {
    background: var(--color-surface);
    padding: var(--space-32);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
    margin: var(--space-48) 0;
}

.special-occasions-section h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-20);
    color: var(--color-olive-600);
    font-weight: var(--font-weight-semibold);
}

.special-occasions-section p {
    color: var(--color-brown-700);
    line-height: 1.7;
    margin-bottom: var(--space-24);
    font-size: calc(var(--font-size-md) + 1px);
}

.occasions-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-20);
    margin: var(--space-24) 0;
    padding: 0 var(--space-12);
}

.occasions-features .feature-item {
    background: rgba(var(--color-brown-500-rgb), 0.05);
    border-left: 4px solid var(--color-brown-500);
}

.occasions-features .feature-item strong {
    color: var(--color-brown-600);
}

.occasions-note {
    font-style: italic;
    color: var(--color-brown-600);
    text-align: center;
    margin-top: var(--space-24);
    padding: var(--space-20);
    background: rgba(var(--color-olive-500-rgb), 0.03);
    border-radius: var(--radius-base);
}

.contact-link:focus-visible {
    outline: 2px solid var(--color-olive-300);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Corporate Section Styles */
.corporate-section {
    background: var(--color-surface);
    padding: var(--space-24);
    border-radius: var(--radius-base);
    border: 1px solid var(--color-card-border);
    margin-top: var(--space-32);
    text-align: center;
}

.corporate-section h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-16);
    color: var(--color-olive-600);
    font-weight: var(--font-weight-semibold);
}

.corporate-section p {
    color: var(--color-brown-700);
    line-height: 1.6;
    margin-bottom: var(--space-20);
    font-size: calc(var(--font-size-md) + 1px);
}

.corporate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-16);
    margin-top: var(--space-20);
}

.feature-item {
    background: rgba(var(--color-olive-500-rgb), 0.05);
    padding: var(--space-16);
    border-radius: var(--radius-base);
    border: 1px solid rgba(var(--color-olive-500-rgb), 0.1);
    text-align: left;
}

.feature-item strong {
    color: var(--color-olive-600);
    display: block;
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-semibold);
}

/* Responsive adjustments for event features */
@media (max-width: 768px) {
    .corporate-features,
    .occasions-features {
        grid-template-columns: 1fr;
        padding: 0 var(--space-8);
    }
    
    .feature-item {
        margin: 0 auto;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Menu Sections - Alternating Layout */
.menu-sections {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-48);
    align-items: center;
    margin-bottom: var(--space-48);
    padding: var(--space-32);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-card-border);
}

.menu-section:last-child {
    margin-bottom: 0;
}

/* Left layout: content left, image right */
.menu-section-left {
    grid-template-areas: "content image";
}

.menu-section-left .menu-content {
    grid-area: content;
}

.menu-section-left .menu-image {
    grid-area: image;
}

/* Right layout: image left, content right */
.menu-section-right {
    grid-template-areas: "image content";
    grid-template-columns: 1fr 2fr;
}

.menu-section-right .menu-content {
    grid-area: content;
}

.menu-section-right .menu-image {
    grid-area: image;
}

.menu-content h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-20);
    color: var(--color-olive-600);
    font-weight: var(--font-weight-bold);
}

.menu-content .menu-item p {
    font-size: calc(var(--font-size-md) + 4px);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
}

.menu-image {
    width: 80%;
    height: 350px;
    border-radius: var(--radius-base);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 0 auto;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-standard);
}

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

/* Responsive adjustments for menu sections */
@media (max-width: 768px) {
    .menu-section,
    .menu-section-left,
    .menu-section-right {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "content"
            "image";
        gap: var(--space-24);
        text-align: center;
    }
    
    .menu-image {
        height: 250px;
    }
}

/* Charity Banner Styles - Bistro Aesthetic */
.charity-banner {
    background: linear-gradient(135deg, var(--color-cream-50) 0%, #f8f6f0 100%);
    color: #2d2d2d;
    padding: var(--space-32);
    border-radius: var(--radius-lg);
    margin: var(--space-32) 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-brown-300);
}

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

.charity-content {
    position: relative;
    z-index: 1;
}

/* New dual charity layout */
.charity-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-32);
    margin-top: var(--space-32);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.charity-item {
    display: flex;
    justify-content: center;
}

.charity-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: var(--space-24);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--color-brown-300);
    transition: all 0.3s ease;
    min-height: 180px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.charity-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--color-brown-500);
    background: rgba(255, 255, 255, 0.95);
}

.charity-logo {
    height: 80px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: var(--space-12);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3)) brightness(1.1);
    transition: all 0.3s ease;
}

.charity-logo {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: var(--space-16);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.charity-link:hover .charity-logo {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
    transform: scale(1.05);
}

.charity-name {
    font-size: calc(var(--font-size-md) + 2px); /* Larger for accessibility */
    font-weight: 600;
    color: var(--color-brown-700);
    text-align: center;
    line-height: 1.4;
    transition: all 0.3s ease;
    font-family: 'Caveat', cursive;
}

/* Charity-specific accent colors */
.charity-item:nth-child(1) .charity-link {
    border-left: 4px solid #dc2626; /* Red accent for Air Ambulance */
}

.charity-item:nth-child(2) .charity-link {
    border-left: 4px solid #16a34a; /* Green accent for Hospice */
}

.charity-item:nth-child(1) .charity-link:hover {
    border-left-color: #b91c1c;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15);
}

.charity-item:nth-child(2) .charity-link:hover {
    border-left-color: #15803d;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.15);
}

.charity-banner h3 {
    font-size: calc(var(--font-size-2xl) + 2px); /* Larger for accessibility */
    margin-bottom: var(--space-16);
    color: var(--color-brown-700);
    font-weight: 600;
    position: relative;
    z-index: 2;
    font-family: 'Caveat', cursive;
}

.charity-banner p {
    margin-bottom: var(--space-20);
    font-size: calc(var(--font-size-lg) + 2px); /* Larger for accessibility */
    line-height: 1.6;
    color: var(--color-brown-600);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.charity-banner p:last-child {
    margin-bottom: 0;
}

.charity-banner strong {
    color: var(--color-cream-50);
    font-weight: var(--font-weight-bold);
}

.charity-description {
    opacity: 0.9;
    font-style: italic;
}

.charity-link {
    margin-top: var(--space-16);
}

.charity-more-link {
    color: var(--color-cream-50);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    border-bottom: 1px solid transparent;
    transition: all var(--duration-fast) var(--ease-standard);
    display: inline-block;
}

.charity-more-link:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-cream-50);
    text-decoration: none;
    transform: translateX(2px);
}

/* Responsive adjustments for charity banner */
@media (max-width: 768px) {
    .charity-banner {
        padding: var(--space-20) var(--space-24);
        margin: var(--space-32) 0;
    }
    
    .charity-banner h3 {
        font-size: var(--font-size-lg);
    }
    
    .charity-banner p {
        font-size: var(--font-size-md);
    }
}

/* Contact styles removed */

/* FAQ Section removed */

/* Footer */
.footer {
    background: var(--color-olive-700);
    color: var(--color-gray-200);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-32);
    margin-bottom: var(--space-24);
}

.footer-section h4 {
    color: #ffffff; /* Higher contrast white */
    margin-bottom: var(--space-12);
    font-size: calc(var(--font-size-lg) + 2px); /* Larger footer headings */
    font-weight: 600;
}

.footer-section p {
    margin-bottom: var(--space-8);
    color: #e5e5e5; /* Higher contrast light gray */
    font-size: calc(var(--font-size-base) + 2px); /* Larger footer text */
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-20);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-olive-300);
}

.website-credit {
    margin-top: var(--space-8);
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.credit-link {
    color: var(--color-olive-300);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-standard);
}

.credit-link:hover {
    color: var(--color-olive-200);
    text-decoration: underline;
}

/* Responsive Design */
/* iPad Pro and larger tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        max-width: 700px;
        padding: 0 var(--space-20);
    }
    
    .hero-logo {
        height: 140px;
    }
    
    .hero-text-content {
        padding: var(--space-20);
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        gap: var(--space-20);
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .about-content {
        gap: var(--space-24);
        padding: var(--space-24);
    }
    
    .menu-image {
        height: 300px;
    }
    
    .menu-section {
        gap: var(--space-32);
        padding: var(--space-24);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-20);
    }
}

/* iPad and smaller tablets */
@media (max-width: 768px) {
    /* Standard responsive base font size for tablets */
    html {
        font-size: 18px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(var(--color-olive-700-rgb), 0.95);
        width: 100%;
        text-align: center;
        transition: var(--duration-normal);
        padding: var(--space-24) 0; /* Increased padding */
        gap: var(--space-20); /* Increased gap */
        backdrop-filter: blur(10px);
    }
    
    .nav-link {
        font-size: calc(var(--font-size-base) + 4px); /* Larger nav links */
        padding: var(--space-12) var(--space-16);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: calc(var(--font-size-4xl) - 4px); /* Larger than before */
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: calc(var(--font-size-xl) + 2px); /* Larger tagline */
        line-height: 1.4;
    }
    
    .hero-opening-times,
    .hero-phone {
        font-size: calc(var(--font-size-base) + 2px); /* Match hero description size */
        line-height: 1.6;
    }
    
    .hero-description {
        font-size: calc(var(--font-size-base) + 2px); /* Larger description */
        line-height: 1.6;
    }
    
    .hero-info {
        flex-direction: column;
        gap: var(--space-20); /* Increased gap */
    }
    
    .hero-content {
        padding: var(--space-24); /* Increased padding */
        margin: var(--space-16);
    }
    
    .btn {
        padding: 16px 24px; /* Larger buttons */
        font-size: calc(var(--font-size-base) + 2px);
        font-weight: 500;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-24); /* Increased gap */
    }
    
    .about-text p {
        font-size: calc(var(--font-size-lg) + 4px); /* Much larger body text */
        line-height: 1.7;
        margin-bottom: var(--space-20);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-20); /* Increased gap */
    }
    
    .feature-card {
        padding: var(--space-20); /* Increased padding */
    }
    
    .feature-card h4 {
        font-size: calc(var(--font-size-xl) + 4px); /* Larger feature titles */
        line-height: 1.4;
        margin-bottom: var(--space-12);
    }
    
    .feature-card p {
        font-size: calc(var(--font-size-md) + 4px); /* Larger feature text */
        line-height: 1.6;
    }
    
    .section-title {
        font-size: calc(var(--font-size-3xl) + 4px); /* Larger section titles */
        margin-bottom: var(--space-24);
        line-height: 1.3;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price {
        margin-left: 0;
        margin-top: var(--space-6); /* Increased spacing */
        font-size: calc(var(--font-size-md) + 2px); /* Larger prices */
        font-weight: 600;
    }
}

/* iPhone and small mobile devices - PROPER RESPONSIVE DESIGN */
@media (max-width: 480px) {
    /* Base font size for mobile - standard responsive size */
    html {
        font-size: 16px;
    }
    
    /* Proper spacing for mobile */
    .section {
        padding: 30px 0 40px;
    }
    
    /* Standard paragraph spacing */
    p {
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    /* Standard button sizing */
    .btn {
        padding: 10px 16px;
        min-width: 120px;
        font-size: 1rem;
    }
    
    /* Proper spacing between elements */
    .hero-description {
        margin-bottom: 16px;
        font-size: 1.1rem;
    }
    
    /* Standard form elements */
    input, textarea, select {
        font-size: 1rem;
        padding: 10px;
        margin-bottom: 15px;
    }
    
    /* Proper container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Proper hero content sizing */
    .hero-logo {
        height: 100px;
    }
    
    /* Proper text sizing */
    .hero-opening-times,
    .hero-phone {
        font-size: 1.1rem; /* Match hero description size for small screens */
    }
    
    /* Proper heading sizes */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    h5, h6 {
        font-size: 1.1rem;
    }

    
    .container {
        padding-left: 0 !important; /* No padding for full width */
        padding-right: 0 !important;
    }
    
    .hero-content {
        margin: 0;
        padding: 0;
        max-height: none;
        justify-content: center;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-logo {
        height: 120px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .hero-text-content {
        padding: 10px;
        margin: 0;
        max-height: none;
        width: 90%;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 8px;
    }

    
    .hero-title {
        font-size: 1.8rem !important; /* Reduced size for mobile */
        line-height: 1.2 !important;
    }
    
    .hero-tagline {
        font-size: 1.2rem !important; /* Reduced size for mobile */
        line-height: 1.3 !important;
    }
    
    .hero-opening-times,
    .hero-phone {
        font-size: 1.4rem !important; /* Match hero description size */
        line-height: 1.6 !important;
    }
    
    .hero-description {
        font-size: 1.4rem !important; /* Match about us text size */
        line-height: 1.6 !important;
        margin-bottom: 12px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    
    .btn {
        width: auto;
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        min-width: 100px;
    }
    
    .section-title {
        font-size: 2.5rem !important; /* Much larger section titles */
        margin-bottom: var(--space-24);
        line-height: 1.2 !important;
    }
    
    .about-text {
        text-align: center !important;
        padding: 0 15px !important; /* Add horizontal padding to prevent text cutoff */
    }
    
    .about-text p {
        font-size: 1.4rem !important; /* Much larger body text */
        line-height: 1.6 !important; /* Better line spacing */
        margin-bottom: var(--space-20);
        text-align: center !important;
    }
    
    /* Force larger text on all paragraphs */
    p {
        font-size: 1.3rem !important;
        line-height: 1.6 !important;
    }
    
    /* Force larger text on all headings */
    h1 { font-size: 3rem !important; }
    h2 { font-size: 2.2rem !important; }
    h3 { font-size: 2rem !important; }
    h4 { font-size: 1.8rem !important; }
    h5 { font-size: 1.6rem !important; }
    h6 { font-size: 1.4rem !important; }
    
    .features-grid {
        gap: var(--space-16); /* Increased gap */
    }
    
    .feature-card {
        padding: var(--space-20); /* Increased padding */
    }
    
    .feature-card h4 {
        font-size: calc(var(--font-size-xl) + 2px); /* Larger feature titles */
        margin-bottom: var(--space-12);
        line-height: 1.4;
    }
    
    .feature-card p {
        font-size: calc(var(--font-size-md) + 4px); /* Larger feature text */
        line-height: 1.6;
    }
    
    .menu-section {
        padding: var(--space-24); /* Increased padding */
        gap: var(--space-24);
    }
    
    .menu-content h3 {
        font-size: calc(var(--font-size-2xl) + 2px); /* Larger menu headings */
        line-height: 1.3;
    }
    
    .menu-content p {
        font-size: calc(var(--font-size-md) + 2px); /* Larger menu descriptions */
        line-height: 1.6;
    }
    
    .menu-image {
        height: 200px;
        width: 90%;
    }
    
    .menu-category {
        padding: var(--space-12) 0 !important; /* Only top/bottom padding */
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: var(--space-8) 0;
        border-radius: 0 !important; /* Remove border radius for full width */
    }
    
    .contact-form,
    .contact-item,
    .address-card,
    .contact-card,
    .directions-card {
        padding: var(--space-20); /* Increased padding */
    }
    
    /* Menu item styling for mobile - compact like index page */
    .menu-item {
        margin-bottom: var(--space-12); /* Reduced space between items */
        padding-bottom: var(--space-8);
        padding-left: var(--space-16) !important; /* Add some inner content padding */
        padding-right: var(--space-16) !important;
    }
    
    .menu-item h4 {
        font-size: 1.2rem !important; /* Smaller menu item names */
        line-height: 1.2 !important;
        margin-bottom: var(--space-4);
    }
    
    .menu-item .price {
        font-size: 1.1rem !important; /* Smaller prices */
        font-weight: 600 !important;
    }
    
    .menu-item p {
        font-size: 0.95rem !important; /* Smaller descriptions */
        line-height: 1.4 !important;
        margin-top: var(--space-4);
        margin-bottom: var(--space-4);
    }
    
    .facebook-link {
        padding: var(--space-20); /* Increased padding */
        flex-direction: column;
        gap: var(--space-16);
        text-align: center;
        font-size: calc(var(--font-size-base) + 2px); /* Larger text */
    }
    
    .facebook-text {
        text-align: center;
        font-size: calc(var(--font-size-md) + 2px); /* Larger Facebook text */
        line-height: 1.5;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12); /* Increased gap */
    }
    
    .charity-banner {
        padding: var(--space-20); /* Increased padding */
        margin: var(--space-24) 0;
    }
    
    .charity-banner h3 {
        font-size: calc(var(--font-size-xl) + 2px); /* Larger charity headings */
        line-height: 1.4;
    }
    
    .charity-banner p {
        font-size: calc(var(--font-size-md) + 2px); /* Larger charity text */
        line-height: 1.6;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-24); /* Increased gap */
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.8rem !important; /* Much larger footer headings */
        margin-bottom: var(--space-16);
    }
    
    .footer-section p {
        font-size: 1.3rem !important; /* Much larger footer text */
        line-height: 1.6 !important;
        margin-bottom: var(--space-12);
    }
    
    .website-credit {
        font-size: var(--font-size-sm); /* Increased from xs */
        line-height: 1.5;
    }
}

/* Mobile Touch Optimizations */
/* Ensure touch targets are at least 44px for accessibility */
.nav-link,
.btn,
.contact-link,
.facebook-link,
.charity-more-link,
.credit-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Improve touch feedback */
.nav-link:active,
.btn:active,
.contact-link:active,
.facebook-link:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Prevent zoom on input focus on iOS */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    font-size: 16px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    /* Prevent horizontal scrolling on mobile */
    overflow-x: hidden;
}

body {
    /* Prevent horizontal scrolling */
    overflow-x: hidden;
    /* Improve text rendering on mobile */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Focus states for accessibility */
.nav-link:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--color-olive-300);
    outline-offset: 2px;
}

/* Animation for cards */
.menu-category:hover,
.feature-card:hover,
.event-card:hover,
.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-fast) var(--ease-standard);
}