/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One:wght@400&family=Inter:wght@300;400;500;600;700&display=swap');

/* Root variables for consistent theming */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --accent-color: #ffcc02;
  --dark-color: #2d3748;
  --light-color: #f7fafc;
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
  --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-primary: 0 10px 30px rgba(255, 107, 53, 0.3);
  --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 15px;
  
  /* Light mode specific variables */
  --bg-color: #F5F2ED;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --nav-bg: rgba(250, 247, 242, 0.95);
  --nav-bg-hover: rgba(250, 247, 242, 1);
  --card-bg: #FFFBF7;
  --text-color: #2d3748;
  --text-light: #4a5568;
  --muted-text: #718096;
  --border-color: rgba(255, 107, 53, 0.1);
  --input-border: #e2e8f0;
  --surface-bg: #FAF7F2;
  --light-color: #FAF7F2;
}

/* Dark mode variables */
[data-theme="dark"] {
  --bg-color: #1a202c;
  --bg-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  --nav-bg: rgba(26, 32, 44, 0.95);
  --nav-bg-hover: rgba(26, 32, 44, 1);
  --card-bg: #2d3748;
  --text-color: #e2e8f0;
  --text-light: #a0aec0;
  --muted-text: #718096;
  --border-color: rgba(255, 107, 53, 0.3);
  --input-border: #4a5568;
  --surface-bg: #374151;
  --light-color: #374151;
  --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.3);
  --dark-color: #e2e8f0;
}

/* Auto dark mode based on system preference */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg-color: #1a202c;
    --bg-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    --nav-bg: rgba(26, 32, 44, 0.95);
    --nav-bg-hover: rgba(26, 32, 44, 1);
    --card-bg: #2d3748;
    --text-color: #e2e8f0;
    --text-light: #a0aec0;
    --border-color: rgba(255, 107, 53, 0.3);
    --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}

html {
  height: 100%;
  width: 100%;
  /* Smooth scroll only enabled after user interaction to prevent page jump on load */
}

html.smooth-scroll {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  min-height: 100vh;
  position: relative;
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Add animated background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

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

/* Enhanced Navigation */
nav {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--primary-color);
  box-shadow: var(--shadow-secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

nav:hover {
  background: var(--nav-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* The Scran Van title - BIGGER and more dramatic */
nav li strong {
  font-family: 'Fredoka One', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

nav li strong:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(255, 107, 53, 0.4));
}

/* Navigation links */
nav ul li a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

nav ul li a:hover::before {
  left: 0;
}

nav ul li a:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

nav ul li a[role="button"] {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

nav ul li a[role="button"]:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Theme Toggle Button */
.theme-toggle {
  background: var(--card-bg);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-secondary);
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

.theme-toggle:hover {
  background: var(--primary-color);
  transform: scale(1.1) rotate(15deg);
  box-shadow: var(--shadow-primary);
  color: white;
}

.theme-toggle:focus {
  outline: none;
  background: var(--card-bg);
  color: var(--text-color);
}

.theme-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.theme-toggle:hover .theme-icon {
  transform: scale(1.2);
}

/* Responsive text display */
.mobile-text {
  display: none;
}

.desktop-text {
  display: inline;
}

@media screen and (max-width: 768px) {
  .mobile-text {
    display: inline;
  }
  
  .desktop-text {
    display: none;
  }
}

/* Main content container */
main {
  background: var(--card-bg);
  margin: 2rem auto;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  transition: background 0.3s ease;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

/* Enhanced typography */
h2, h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

hgroup h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

hgroup h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-style: italic;
}

/* Enhanced sections */
section {
  padding: 3rem;
}

section h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-top: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Enhanced images */
figure {
  margin: 3rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s ease;
}

figure:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

figure img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

figure:hover img {
  transform: scale(1.05);
}

figcaption {
  padding: 1rem;
  background: var(--surface-bg);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Enhanced paragraphs */
p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Notifications section */
#notifications {
  background: var(--gradient-secondary);
  margin: 0;
  padding: 4rem 0;
}

#notifications article {
  background: var(--card-bg);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s ease;
}

#notifications article:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

#notifications h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.notifications-bell-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  animation: bellRing 3s ease-in-out infinite;
}

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

.notifications-actions {
  margin: 2rem 0 1.5rem;
}

#page-notify-btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

#page-notify-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

#page-notify-btn.notify-subscribed {
  background: linear-gradient(135deg, #48bb78, #38a169);
  box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
}

#page-notify-btn.notify-subscribed:hover {
  box-shadow: 0 15px 40px rgba(72, 187, 120, 0.5);
}

.notify-status {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 0;
}

/* Enhanced form elements */
input {
  border-radius: var(--border-radius) !important;
  border: 2px solid var(--input-border) !important;
  padding: 1rem 1.5rem !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  background: var(--card-bg) !important;
  color: var(--text-color) !important;
}

input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
  transform: translateY(-2px) !important;
}

button[type="submit"] {
  background: var(--gradient-primary) !important;
  border: none !important;
  border-radius: var(--border-radius) !important;
  padding: 1rem 2rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: var(--shadow-primary) !important;
  transition: all 0.3s ease !important;
}

button[type="submit"]:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4) !important;
}

/* Enhanced footer */
footer {
  text-align: center;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  margin-top: 2rem;
}

footer a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

footer a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  nav li strong {
    font-size: 2.5rem;
  }
  
  hgroup h2 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 2rem;
  }
  
  main {
    margin: 1rem;
    border-radius: 20px;
  }
}

/* Open/Closed Status - Neon Diner Sign Styling */
:root {
  --neon-green: #39ff14;
  --neon-green-glow: rgba(57, 255, 20, 0.8);
  --neon-red: #ff073a;
  --neon-red-glow: rgba(255, 7, 58, 0.6);
}

[data-theme="dark"] {
  --neon-green: #39ff14;
  --neon-green-glow: rgba(57, 255, 20, 0.9);
  --neon-red: #ff073a;
  --neon-red-glow: rgba(255, 7, 58, 0.7);
}

.open-status {
  margin: 2rem 0;
  padding: 2.5rem;
  text-align: center;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 20px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.open-status::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 3px
    );
  pointer-events: none;
}

.status-main {
  font-family: 'Fredoka One', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.status-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.open-status.is-open .status-main {
  color: var(--neon-green);
  text-shadow: 
    0 0 10px var(--neon-green-glow),
    0 0 20px var(--neon-green-glow),
    0 0 30px var(--neon-green-glow),
    0 0 40px var(--neon-green-glow),
    0 0 70px var(--neon-green-glow),
    0 0 80px var(--neon-green-glow);
  animation: neonPulseGreen 2s ease-in-out infinite;
}

.open-status.is-open .status-subtitle {
  color: var(--neon-green);
  text-shadow: 
    0 0 5px var(--neon-green-glow),
    0 0 10px var(--neon-green-glow);
}

.open-status.is-open {
  border-color: var(--neon-green);
  box-shadow: 
    0 0 20px var(--neon-green-glow),
    0 0 40px var(--neon-green-glow),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.open-status.is-closed .status-main {
  color: var(--neon-red);
  text-shadow: 
    0 0 8px var(--neon-red-glow),
    0 0 15px var(--neon-red-glow),
    0 0 25px var(--neon-red-glow);
  opacity: 0.7;
  animation: neonFlickerRed 4s ease-in-out infinite;
}

.open-status.is-closed .status-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.open-status.is-closed {
  border-color: var(--neon-red);
  box-shadow: 
    0 0 15px var(--neon-red-glow),
    0 0 30px var(--neon-red-glow),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}

@keyframes neonPulseGreen {
  0%, 100% {
    text-shadow: 
      0 0 10px var(--neon-green-glow),
      0 0 20px var(--neon-green-glow),
      0 0 30px var(--neon-green-glow),
      0 0 40px var(--neon-green-glow),
      0 0 70px var(--neon-green-glow),
      0 0 80px var(--neon-green-glow);
  }
  50% {
    text-shadow: 
      0 0 5px var(--neon-green-glow),
      0 0 10px var(--neon-green-glow),
      0 0 15px var(--neon-green-glow),
      0 0 20px var(--neon-green-glow),
      0 0 35px var(--neon-green-glow),
      0 0 40px var(--neon-green-glow);
  }
}

@keyframes neonFlickerRed {
  0%, 100% {
    opacity: 0.7;
    text-shadow: 
      0 0 8px var(--neon-red-glow),
      0 0 15px var(--neon-red-glow),
      0 0 25px var(--neon-red-glow);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.75;
  }
  30% {
    opacity: 0.6;
  }
  40%, 80% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.65;
  }
}

/* Menu styling */
.menu-highlight {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 2rem 0;
  box-shadow: var(--shadow-primary);
  transform: perspective(1000px) rotateX(2deg);
  transition: all 0.3s ease;
}

.menu-highlight:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.menu-highlight h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-highlight p {
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--border-radius) * 0.75);
  margin: 0;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Desktop layout optimization for chips & sides + drinks & snacks */
@media (min-width: 769px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr 0.6fr;
    grid-template-areas: 
      "sandwiches burgers chips-sides"
      "sandwiches burgers drinks-snacks"
      "extras extras extras";
  }
  
  .menu-section:nth-child(1) { /* Sandwiches & Wraps */
    grid-area: sandwiches;
  }
  
  .menu-section:nth-child(2) { /* Burgers */
    grid-area: burgers;
  }
  
  .menu-section:nth-child(3) { /* Chips & Sides */
    grid-area: chips-sides;
  }
  
  .menu-section:nth-child(4) { /* Drinks & Snacks */
    grid-area: drinks-snacks;
  }
  
  .extras-section { /* Extras - full width row */
    grid-area: extras;
  }
}

.menu-section {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-secondary);
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.menu-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.menu-section h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--surface-bg);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.menu-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(5px);
}

.menu-item.featured {
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid var(--primary-color);
  font-weight: 600;
}

.menu-item span:first-child {
  font-weight: 500;
  color: var(--text-color);
  flex: 1;
  text-align: center;
}

.menu-item span:last-child {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  flex: 1;
  text-align: center;
}

.extras-section {
  background: rgba(255, 204, 2, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 3rem 0;
  border: 2px dashed var(--accent-color);
}

.extras-section h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.extras-section .menu-item {
  display: flex !important;
  flex-direction: column !important;
  padding: 0.75rem;
  font-size: 0.95rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.extras-section .menu-item span:first-child,
.extras-section .menu-item span:last-child {
  text-align: center;
  flex: none;
  width: 100%;
}

.extras-tier {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-secondary);
  border: 2px solid var(--accent-color);
}

.extras-tier h5 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.extras-tier p {
  margin: 0;
  color: var(--dark-color);
  font-weight: 500;
}

/* Contact section styling */
.contact-section {
  margin: 3rem 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-secondary);
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card li {
  padding: 0.5rem 0;
  color: var(--dark-color);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-card li:last-child {
  border-bottom: none;
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-primary);
}

.social-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
  color: white;
}

/* Chef's Recommendations styling */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.recommendation-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.recommendation-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.recommendation-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.recommendation-content {
  padding: 1.5rem;
}

.recommendation-content h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.recommendation-content p {
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.recommendation-content strong {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Photo Gallery styling */
.photo-gallery {
  margin: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-item figcaption {
  padding: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  text-align: center;
  background: var(--light-color);
  min-height: 4.5rem;
}

/* Location section styling */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
}

.location-info {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-secondary);
}

.location-info h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-info p {
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hours-info {
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.hours-info h5 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hours-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-info li {
  padding: 0.5rem 0;
  color: var(--dark-color);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
}

.map-container iframe {
  height: 100% !important;
  min-height: 100%;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: var(--nav-bg);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 2rem 1.5rem;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
  float: right;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li a {
  display: block;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 200px;
  box-sizing: border-box;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a[role="button"] {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(10px);
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide all navigation links except theme toggle and hamburger - use nth-of-type for stability */
  nav ul:nth-of-type(2) li:not(:nth-last-child(1)):not(:nth-last-child(2)) {
    display: none;
  }
  
  nav ul:first-child {
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  
  nav ul:nth-of-type(2) {
    gap: 1rem;
    align-items: center;
  }

  nav li strong {
    font-size: 2.2rem;
  }
  
  hgroup h2 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 2rem;
  }
  
  main {
    margin: 1rem;
    border-radius: 20px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .open-status {
    padding: 1.5rem;
  }
  
  .status-main {
    font-size: 2.5rem;
  }
  
  .status-subtitle {
    font-size: 1.1rem;
  }
  
  .menu-highlight h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile navigation fixes */
  nav ul li a {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  
  nav li strong {
    font-size: 1.75rem;
  }
  
  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .menu-grid {
    gap: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .location-section {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .recommendation-card, .menu-section {
    padding: 1.5rem;
  }
}

/* Add subtle animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.8s ease-out;
}

/* Interactive Menu Tooltip Styles */
.menu-tooltip {
  position: fixed;
  background: var(--card-bg);
  color: var(--text-color);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--border-color);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 280px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: none;
  backdrop-filter: blur(10px);
}

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

.menu-tooltip::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--card-bg);
}

.tooltip-content {
  font-weight: 400;
  color: var(--text-light);
}

/* Interactive Menu Item Styling */
.interactive-menu-item {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.interactive-menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

.interactive-menu-item:hover::before {
  left: 100%;
}

.interactive-menu-item:hover {
  transform: translateX(5px);
  background: var(--surface-bg);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.interactive-menu-item:hover .menu-item-name {
  color: var(--primary-color);
  font-weight: 500;
}

.interactive-menu-item:hover .menu-item-price {
  font-weight: 600;
  color: var(--secondary-color);
}

/* Mobile tap styles */
.interactive-menu-item:active {
  transform: scale(0.98);
}

/* Featured item special styling */
.interactive-menu-item.featured:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

/* Dark mode tooltip adjustments */
[data-theme="dark"] .menu-tooltip {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
}

[data-theme="dark"] .menu-tooltip::before {
  border-top-color: var(--card-bg);
}

[data-theme="dark"] .interactive-menu-item:hover {
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

/* Mobile tooltip adjustments */
@media (max-width: 768px) {
  .menu-tooltip {
    max-width: calc(100vw - 2rem);
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
  
  .interactive-menu-item:hover {
    transform: none;
  }
}

/* Daily Specials Section */
.daily-specials {
  margin: 1.5rem 0;
  animation: fadeInUp 0.6s ease-out;
}

.specials-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.specials-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.specials-banner h4 {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.special-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1rem;
  border-radius: calc(var(--border-radius) * 0.75);
  margin: 1rem 0;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.special-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.special-price {
  font-size: 1.2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: calc(var(--border-radius) * 0.5);
}

.special-description {
  margin: 0.75rem 0 0 0;
  font-size: 0.9rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Admin Panel Styles */
.admin-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.admin-content {
  background: var(--card-bg);
  color: var(--text-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid var(--border-color);
}

.admin-content h3 {
  margin: 0 0 1rem 0;
  color: var(--primary-color);
  text-align: center;
  font-size: 1.3rem;
}

/* Admin Login Specific Styles */
.admin-login {
  max-width: 400px;
}

.login-error {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  border-radius: calc(var(--border-radius) * 0.75);
  text-align: center;
}

.login-error p {
  margin: 0;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Enhanced Admin Panel Layout */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.admin-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.admin-session {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.logout-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: #c82333;
  transform: translateY(-1px);
}

/* Admin Tab Sections */
.admin-tab-section {
  margin-bottom: 1.5rem;
  padding: 0;
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.admin-tab-section h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.admin-tab-section h4:hover {
  background: rgba(255, 107, 53, 0.08);
}

.admin-tab-section h4::after {
  content: '▼';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.admin-tab-section.collapsed h4::after {
  transform: rotate(-90deg);
}

.admin-tab-content {
  padding: 1rem 1.2rem;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  max-height: 5000px;
  opacity: 1;
}

.admin-tab-section.collapsed .admin-tab-content {
  max-height: 0;
  opacity: 0;
  padding: 0 1.2rem;
  overflow: hidden;
}

/* Toggle Controls */
.admin-toggle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) * 0.75);
  border: 2px solid #dc3545;
  transition: all 0.3s ease;
  position: relative;
}

.admin-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Toggle states - Red when OFF, Green when ON */
.admin-toggle {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
}

.admin-toggle.active {
  background: rgba(40, 167, 69, 0.1);
  border-color: #28a745;
}

.admin-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #28a745;
}

.toggle-label {
  font-weight: 500;
  color: var(--text-color);
  user-select: none;
  transition: color 0.3s ease;
}

.admin-toggle input[type="checkbox"]:checked + .toggle-label {
  color: #28a745;
  font-weight: 600;
}

.admin-toggle:not(.active) .toggle-label {
  color: #dc3545;
}

/* Status indicator */
.admin-toggle::after {
  content: "OFF";
  position: absolute;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: bold;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: calc(var(--border-radius) * 0.5);
  transition: all 0.3s ease;
}

.admin-toggle.active::after {
  content: "ON";
  color: #28a745;
  background: rgba(40, 167, 69, 0.2);
}

/* Admin Footer */
.admin-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.admin-close-btn {
  background: var(--border-color);
  color: var(--text-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.admin-close-btn:hover {
  background: var(--text-color);
  color: var(--card-bg);
  transform: translateY(-2px);
}

/* Photo Gallery Admin Styles */
.gallery-admin-controls {
  margin-top: 1rem;
}

.admin-gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

/* Recommendations Admin Styles */
.recommendations-admin-controls {
  margin-top: 1rem;
}

.admin-recommendations-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.admin-recommendation-item {
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) * 0.75);
  padding: 0.75rem;
  border: 2px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
}

.admin-recommendation-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.admin-recommendation-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: calc(var(--border-radius) * 0.5);
  margin-bottom: 0.75rem;
}

.admin-recommendation-item h6 {
  margin: 0.5rem 0;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
}

.admin-recommendation-item p {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.8;
}

.admin-recommendation-item .price {
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0.5rem 0;
}

.admin-recommendation-item .controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.admin-recommendation-item .controls button {
  flex: 1;
  min-width: 60px;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  border: none;
  border-radius: calc(var(--border-radius) * 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.admin-recommendation-item .controls .edit-btn {
  background: var(--primary-color);
  color: white;
}

.admin-recommendation-item .controls .delete-btn {
  background: #dc3545;
  color: white;
}

.admin-recommendation-item .controls .move-btn {
  background: var(--surface-bg);
  color: var(--text-color);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.admin-recommendation-item .controls button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.admin-photo-item {
  background: var(--card-bg);
  border-radius: calc(var(--border-radius) * 0.75);
  padding: 1rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.admin-photo-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.admin-photo-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: calc(var(--border-radius) * 0.5);
  margin-bottom: 0.75rem;
}

.admin-photo-item .photo-description {
  font-size: 0.85rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.admin-photo-item .photo-controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-photo-item button {
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.admin-photo-item .edit-btn {
  background: #17a2b8;
  color: white;
}

.admin-photo-item .edit-btn:hover {
  background: #138496;
}

.admin-photo-item .delete-btn {
  background: #dc3545;
  color: white;
}

.admin-photo-item .delete-btn:hover {
  background: #c82333;
}

.admin-photo-item .move-btn {
  background: #ffc107;
  color: #212529;
}

.admin-photo-item .move-btn:hover {
  background: #e0a800;
}

.admin-photo-item .photo-order {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.photo-upload-area {
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.photo-upload-area:hover {
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.05);
}

.photo-upload-area.dragover {
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
  transform: scale(1.02);
}

#add-photo-btn {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#add-photo-btn:hover {
  background: #e55a47;
  transform: translateY(-2px);
}

#add-photo-btn:disabled {
  background: var(--border-color);
  cursor: not-allowed;
  transform: none;
}

.rotation-indicator {
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid #ffc107;
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
  color: #856404;
  font-weight: 500;
}

.rotation-indicator .rotation-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.admin-section {
  margin-bottom: 0.75rem;
}

.admin-section label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: var(--text-color);
  font-size: 0.9rem;
}

.admin-section input,
.admin-section textarea {
  width: 100%;
  padding: 0.6rem;
  border: 2px solid var(--border-color);
  border-radius: calc(var(--border-radius) * 0.75);
  background: var(--card-bg);
  color: var(--text-color);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.admin-section input:focus,
.admin-section textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.admin-section textarea {
  min-height: 80px;
  resize: vertical;
}

.admin-row {
  margin-bottom: 1rem;
}

.admin-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.admin-row input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.admin-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.admin-buttons button {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: none;
  border-radius: calc(var(--border-radius) * 0.75);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  font-size: 0.9rem;
}

#save-special {
  background: var(--primary-color);
  color: white;
}

#save-special:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

#clear-special {
  background: #dc3545;
  color: white;
}

#clear-special:hover {
  background: #c82333;
  transform: translateY(-2px);
}

#close-admin {
  background: var(--border-color);
  color: var(--text-color);
}

#close-admin:hover {
  background: var(--text-color);
  color: var(--card-bg);
  transform: translateY(-2px);
}

.admin-help {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.admin-help small {
  color: var(--text-color);
  opacity: 0.7;
}

/* Mobile responsive adjustments for admin and specials */
@media (max-width: 768px) {
  .special-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .admin-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .admin-buttons {
    flex-direction: column;
  }
  
  .admin-buttons button {
    width: 100%;
  }
}

/* Customer Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.reviews-section hgroup {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-section h2 {
  color: var(--primary-color);
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.reviews-section h3 {
  color: var(--text-color);
  opacity: 0.8;
  font-weight: 400;
  font-size: 1.2rem;
}

.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-container {
  position: relative;
  min-height: 250px;
  transition: height 0.6s ease;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  backdrop-filter: blur(10px);
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 1;
}

.review-content {
  margin-bottom: 1.5rem;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.star {
  color: #ffc107;
  font-size: 1.2rem;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info h4 {
  margin: 0;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
}

.author-info p {
  margin: 0;
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Navigation dots */
.reviews-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.5rem;
}

.nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 4px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  outline: none;
}

.nav-dot:hover {
  background: rgba(255, 107, 53, 0.6);
  transform: scale(1.15);
}

.nav-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Platform badge — absolute top-right on card */
.review-platform-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #666;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 0.2rem 0.6rem;
  pointer-events: none;
}

.review-platform-badge svg {
  flex-shrink: 0;
}

/* Platform-coloured left border accent (additive classes) */
.review-card--google {
  border-left: 3px solid #4285F4;
}

.review-card--google .star {
  color: #FBBC04;
}

.review-card--facebook {
  border-left: 3px solid #1877F2;
}

/* Dark mode adjustments */
[data-theme="dark"] .review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-color: var(--secondary-color);
}

[data-theme="dark"] .review-card--google {
  border-color: #4285F4;
}

[data-theme="dark"] .review-card--facebook {
  border-color: #1877F2;
}

[data-theme="dark"] .review-platform-badge {
  background: rgba(40, 40, 40, 0.9);
  color: #aaa;
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .review-text::before {
  color: var(--secondary-color);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .reviews-section {
    padding: 3rem 0;
  }
  
  .reviews-section h2 {
    font-size: 2rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-text {
    font-size: 1rem;
  }
  
  .review-text::before {
    font-size: 2rem;
    top: -0.3rem;
    left: -0.5rem;
  }
  
  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .nav-dot {
    width: 10px;
    height: 10px;
  }
}

/* Menu Management Styles */
.menu-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-form-grid .admin-input,
.menu-form-grid .admin-select {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.6rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.menu-form-grid .admin-input:focus,
.menu-form-grid .admin-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.admin-btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  grid-column: span 2;
}

.admin-btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.menu-sections-list {
  margin-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.menu-section-admin {
  background: var(--surface-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.menu-section-header {
  background: rgba(255, 107, 53, 0.1);
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-actions {
  display: flex;
  gap: 0.5rem;
}

.menu-section-header h6 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.menu-items-admin {
  padding: 0;
}

.menu-item-admin {
  display: grid;
  grid-template-columns: 2fr 1fr 3fr auto auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  align-items: center;
  transition: all 0.3s ease;
  text-align: center;
}

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

.menu-item-admin:hover {
  background: rgba(255, 107, 53, 0.05);
}

.menu-item-admin.featured {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--primary-color);
}

.menu-item-name {
  font-weight: 600;
  color: var(--text-color);
}

.menu-item-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

.menu-item-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.menu-item-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 85px;
  white-space: nowrap;
}

.menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-btn.featured-btn {
  background: #28a745;
}

.menu-btn.featured-btn:hover {
  background: #218838;
}

.menu-btn.featured-btn.active {
  background: #ffc107;
  color: #212529;
}

.menu-btn.edit-btn {
  background: #17a2b8;
}

.menu-btn.edit-btn:hover {
  background: #138496;
}

.menu-btn.delete-btn {
  background: #dc3545;
}

.menu-btn.delete-btn:hover {
  background: #c82333;
}

.featured-indicator {
  background: #ffc107;
  color: #212529;
  padding: 0.2rem 0.5rem;
  border-radius: calc(var(--border-radius) * 0.5);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .menu-form-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-btn-primary {
    grid-column: span 1;
  }
  
  .menu-item-admin {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }
  
  .menu-item-actions {
    justify-content: center;
  }
}

/* ========== HALLOWEEN THEME ========== */
[data-halloween="true"] {
  /* Spooky Halloween color palette */
  --primary-color: #ff6b00;
  --secondary-color: #8b00ff;
  --accent-color: #00ff41;
  --bg-color: #1a0d00;
  --bg-gradient: linear-gradient(135deg, #1a0d00 0%, #2d1b00 50%, #1a0000 100%);
  --nav-bg: rgba(20, 10, 0, 0.98);
  --nav-bg-hover: rgba(20, 10, 0, 1);
  --card-bg: #2d1b00;
  --text-color: #ffcc99;
  --text-light: #ff9966;
  --muted-text: #996633;
  --border-color: rgba(255, 107, 0, 0.5);
  --input-border: #8b4513;
  --surface-bg: #3d2b1f;
  --light-color: #4a3728;
  --shadow-primary: 0 10px 40px rgba(255, 107, 0, 0.6);
  --shadow-secondary: 0 5px 25px rgba(139, 0, 255, 0.4);
  --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ffa500 100%);
  --gradient-secondary: linear-gradient(135deg, #8b00ff 0%, #9932cc 100%);
}

/* Halloween body effects */
[data-halloween="true"] body {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(139, 0, 255, 0.05) 50px,
      rgba(139, 0, 255, 0.05) 52px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(255, 107, 0, 0.05) 50px,
      rgba(255, 107, 0, 0.05) 52px
    ),
    var(--bg-gradient);
  animation: halloween-pulse 4s ease-in-out infinite;
}

@keyframes halloween-pulse {
  0%, 100% { 
    filter: brightness(1) contrast(1);
  }
  50% { 
    filter: brightness(1.1) contrast(1.05);
  }
}

/* Spooky navigation */
[data-halloween="true"] nav {
  border-bottom: 2px solid #ff6b00;
  box-shadow: 0 5px 30px rgba(255, 107, 0, 0.5), 0 0 20px rgba(139, 0, 255, 0.3);
}

/* Creepy cards with glowing borders */
[data-halloween="true"] .menu-section,
[data-halloween="true"] .review-card,
[data-halloween="true"] .recommendation-card,
[data-halloween="true"] .photo-card,
[data-halloween="true"] article {
  border: 2px solid rgba(255, 107, 0, 0.3);
  box-shadow: 
    0 0 20px rgba(255, 107, 0, 0.3),
    0 0 40px rgba(139, 0, 255, 0.2),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

[data-halloween="true"] .menu-section::before,
[data-halloween="true"] .review-card::before,
[data-halloween="true"] .recommendation-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b00, #8b00ff, #ff6b00);
  border-radius: var(--border-radius);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: halloween-border-pulse 3s linear infinite;
}

[data-halloween="true"] .menu-section:hover::before,
[data-halloween="true"] .review-card:hover::before,
[data-halloween="true"] .recommendation-card:hover::before {
  opacity: 0.6;
}

@keyframes halloween-border-pulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Spooky buttons */
[data-halloween="true"] button,
[data-halloween="true"] [role="button"] {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
  transition: all 0.3s ease;
}

[data-halloween="true"] button:hover,
[data-halloween="true"] [role="button"]:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.7);
  transform: translateY(-2px) scale(1.02);
}

/* Glowing text effects */
[data-halloween="true"] h1,
[data-halloween="true"] h2,
[data-halloween="true"] h3 {
  text-shadow: 
    0 0 10px rgba(255, 107, 0, 0.8),
    0 0 20px rgba(255, 107, 0, 0.5),
    0 0 30px rgba(139, 0, 255, 0.3);
  animation: halloween-glow 2s ease-in-out infinite;
}

@keyframes halloween-glow {
  0%, 100% { 
    text-shadow: 
      0 0 10px rgba(255, 107, 0, 0.8),
      0 0 20px rgba(255, 107, 0, 0.5),
      0 0 30px rgba(139, 0, 255, 0.3);
  }
  50% { 
    text-shadow: 
      0 0 15px rgba(255, 107, 0, 1),
      0 0 30px rgba(255, 107, 0, 0.7),
      0 0 45px rgba(139, 0, 255, 0.5);
  }
}

/* Spooky hero section */
[data-halloween="true"] .hero {
  background: 
    radial-gradient(ellipse at top, rgba(139, 0, 255, 0.2), transparent),
    radial-gradient(ellipse at bottom, rgba(255, 107, 0, 0.2), transparent),
    var(--bg-gradient);
}

/* Halloween badge */
[data-halloween="true"] .open-status-badge {
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.8);
  animation: halloween-badge-pulse 2s ease-in-out infinite;
}

@keyframes halloween-badge-pulse {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.8);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 50px rgba(255, 107, 0, 1);
    transform: scale(1.02);
  }
}

/* Spooky menu items */
[data-halloween="true"] .menu-item {
  border-left: 3px solid #ff6b00;
  transition: all 0.3s ease;
}

[data-halloween="true"] .menu-item:hover {
  border-left-color: #8b00ff;
  background: rgba(139, 0, 255, 0.1);
  transform: translateX(5px);
}

/* Readable price text in Halloween mode */
[data-halloween="true"] .menu-item-price,
[data-halloween="true"] .price {
  color: #ffa500 !important;
  text-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
  font-weight: 700;
}

/* Spooky form inputs */
[data-halloween="true"] input,
[data-halloween="true"] textarea,
[data-halloween="true"] select {
  border: 2px solid #ff6b00;
  background: rgba(45, 27, 0, 0.8);
  color: var(--text-color);
}

[data-halloween="true"] input:focus,
[data-halloween="true"] textarea:focus,
[data-halloween="true"] select:focus {
  border-color: #8b00ff;
  box-shadow: 0 0 20px rgba(139, 0, 255, 0.5);
}

/* ============================================================
   DECORATION SAFE ZONE (standing rule for ALL seasonal themes)
   ------------------------------------------------------------
   Fixed/absolute decorations positioned near the TOP-RIGHT of
   the screen must not cover the dark/light mode toggle in the
   nav bar. The nav is ~90-100px tall, so any decoration anchored
   near the top-right corner must use:
     - top >= 130px on desktop
     - top >= 120px on mobile (max-width: 768px)
   Apply this rule when adding decorations to any future theme.
   ============================================================ */

/* Floating pumpkins - mobile only */
@media screen and (max-width: 768px) {
  [data-halloween="true"]::after {
    content: '🎃';
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 2.5rem;
    animation: pumpkin-float 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.8));
  }
}

@keyframes pumpkin-float {
  0%, 100% { 
    transform: translateY(0px) rotate(-5deg);
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.8));
  }
  50% { 
    transform: translateY(-15px) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 1));
  }
}

/* Floating ghost - right side */
[data-halloween="true"] nav::before {
  content: '👻';
  position: fixed;
  top: 130px; /* decoration safe zone: keep clear of nav dark/light toggle */
  right: 30px;
  font-size: 2.5rem;
  animation: ghost-float 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

@keyframes ghost-float {
  0%, 100% { 
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-20px);
    opacity: 0.9;
  }
}

/* Flying bat */
[data-halloween="true"] nav::after {
  content: '🦇';
  position: fixed;
  top: 80px;
  left: 50%;
  font-size: 2rem;
  animation: bat-fly 8s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(139, 0, 255, 0.6));
  z-index: 9999;
}

@keyframes bat-fly {
  0%, 100% { 
    transform: translate(-50%, 0) scale(1);
  }
  25% { 
    transform: translate(-150px, 40px) scale(0.9);
  }
  50% { 
    transform: translate(-100px, -30px) scale(1.1);
  }
  75% { 
    transform: translate(0px, 20px) scale(0.95);
  }
}

/* Witch floating */
[data-halloween="true"] main::before {
  content: '🧙';
  position: fixed;
  bottom: 60px;
  right: 40px;
  font-size: 2.5rem;
  animation: witch-hover 6s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 15px rgba(139, 0, 255, 0.7));
  z-index: 1;
}

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

/* Pumpkin decorations on cards */
[data-halloween="true"] .menu-section::after,
[data-halloween="true"] .review-card::after {
  content: '🎃';
  position: absolute;
  top: -12px;
  right: -12px;
  font-size: 1.8rem;
  opacity: 0.7;
  animation: pumpkin-glow 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pumpkin-glow {
  0%, 100% { 
    opacity: 0.7;
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.6));
  }
  50% { 
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 1));
  }
}

/* Skull in footer */
[data-halloween="true"] footer::after {
  content: '💀';
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1.2rem;
  animation: skull-shake 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.6));
  vertical-align: middle;
}

@keyframes skull-shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}

/* Mobile adjustments for Halloween theme */
@media screen and (max-width: 768px) {
  /* Smaller Halloween mode indicator */
  [data-halloween="true"]::before {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
    top: 5px;
    right: 5px;
  }
  
  /* Reduce decoration size on mobile */
  [data-halloween="true"] nav::after,
  [data-halloween="true"] nav::before,
  [data-halloween="true"] main::before {
    font-size: 1.5rem;
  }
  
  /* Adjust positioning on mobile */
  [data-halloween="true"] nav::before {
    top: 120px; /* decoration safe zone: keep clear of nav dark/light toggle */
    right: 15px;
  }
  
  [data-halloween="true"] nav::after {
    left: 30%;
  }
  
  [data-halloween="true"] main::before {
    bottom: 40px;
    right: 15px;
  }
}

/* ===========================
   AUTUMN THEME
   ========================== */

/* Autumn color scheme */
[data-autumn="true"] {
  --primary-color: #D2691E;
  --secondary-color: #CD853F;
  --accent-color: #B8860B;
  --text-glow: #FF8C00;
  --bg-color: #F5E6D3;
  --card-bg: #FFF8F0;
  --nav-bg: rgba(245, 230, 211, 0.95);
  --nav-bg-hover: rgba(245, 230, 211, 1);
  background: linear-gradient(135deg, #3E2723 0%, #5D4037 50%, #4E342E 100%);
}

/* Autumn-themed backgrounds */
[data-autumn="true"] body {
  background: linear-gradient(135deg, #3E2723 0%, #5D4037 50%, #4E342E 100%);
  background-attachment: fixed;
  animation: autumn-bg-shift 20s ease-in-out infinite;
  position: relative;
  overflow-x: hidden;
}

@keyframes autumn-bg-shift {
  0%, 100% { 
    filter: brightness(1) contrast(1);
  }
  50% { 
    filter: brightness(1.1) contrast(1.05);
  }
}

/* Autumn overlay pattern */
[data-autumn="true"] body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(210, 105, 30, 0.03) 100px, rgba(210, 105, 30, 0.03) 102px),
    repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(139, 69, 19, 0.03) 100px, rgba(139, 69, 19, 0.03) 102px);
  opacity: 0.5;
}

/* Headings */
[data-autumn="true"] h1,
[data-autumn="true"] h2,
[data-autumn="true"] h3 {
  color: #D2691E;
  text-shadow: 0 0 20px rgba(210, 105, 30, 0.6);
}

/* Navigation links */
[data-autumn="true"] nav a {
  color: #DEB887;
  text-shadow: 0 0 10px rgba(222, 184, 135, 0.5);
}

[data-autumn="true"] nav a:hover {
  color: #F4A460;
  text-shadow: 0 0 15px rgba(244, 164, 96, 0.8);
}

/* Cards and sections */
[data-autumn="true"] .card,
[data-autumn="true"] article {
  background: rgba(62, 39, 35, 0.7);
  border: 3px solid rgba(210, 105, 30, 0.7);
  box-shadow: 0 4px 20px rgba(210, 105, 30, 0.3);
}

/* Buttons */
[data-autumn="true"] button,
[data-autumn="true"] [role="button"] {
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  border-color: #B8860B;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

[data-autumn="true"] button:hover,
[data-autumn="true"] [role="button"]:hover {
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
  box-shadow: 0 0 20px rgba(210, 105, 30, 0.5);
}

/* Price colors */
[data-autumn="true"] .price,
[data-autumn="true"] .menu-item-price {
  color: #FFFFFF !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

/* Falling leaves - 8 leaves at different positions */
[data-autumn="true"] body::after {
  content: '🍂';
  position: fixed;
  top: -50px;
  left: 10%;
  font-size: 2rem;
  animation: leaf-fall-1 12s linear infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

[data-autumn="true"] .autumn-leaf-2,
[data-autumn="true"] .autumn-leaf-3,
[data-autumn="true"] .autumn-leaf-4,
[data-autumn="true"] .autumn-leaf-5,
[data-autumn="true"] .autumn-leaf-6,
[data-autumn="true"] .autumn-leaf-7,
[data-autumn="true"] .autumn-leaf-8 {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  font-size: 2rem;
}

[data-autumn="true"] .autumn-leaf-2 {
  top: -50px;
  left: 25%;
  animation: leaf-fall-2 15s linear infinite 2s;
}

[data-autumn="true"] .autumn-leaf-3 {
  top: -50px;
  left: 45%;
  animation: leaf-fall-3 13s linear infinite 4s;
}

[data-autumn="true"] .autumn-leaf-4 {
  top: -50px;
  left: 60%;
  animation: leaf-fall-4 14s linear infinite 1s;
}

[data-autumn="true"] .autumn-leaf-5 {
  top: -50px;
  left: 75%;
  animation: leaf-fall-5 16s linear infinite 3s;
}

[data-autumn="true"] .autumn-leaf-6 {
  top: -50px;
  left: 85%;
  animation: leaf-fall-6 11s linear infinite 5s;
}

[data-autumn="true"] .autumn-leaf-7 {
  top: -50px;
  left: 35%;
  animation: leaf-fall-7 13.5s linear infinite 6s;
}

[data-autumn="true"] .autumn-leaf-8 {
  top: -50px;
  left: 55%;
  animation: leaf-fall-8 14.5s linear infinite 2.5s;
}

/* Leaf falling animations with rotation and sway */
@keyframes leaf-fall-1 {
  0% { 
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) rotate(360deg) translateX(50px);
    opacity: 0.8;
  }
}

@keyframes leaf-fall-2 {
  0% { 
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) rotate(-360deg) translateX(-30px);
    opacity: 0.8;
  }
}

@keyframes leaf-fall-3 {
  0% { 
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) rotate(360deg) translateX(40px);
    opacity: 0.8;
  }
}

@keyframes leaf-fall-4 {
  0% { 
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) rotate(-360deg) translateX(-50px);
    opacity: 0.8;
  }
}

@keyframes leaf-fall-5 {
  0% { 
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) rotate(360deg) translateX(60px);
    opacity: 0.8;
  }
}

@keyframes leaf-fall-6 {
  0% { 
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) rotate(-360deg) translateX(-40px);
    opacity: 0.8;
  }
}

@keyframes leaf-fall-7 {
  0% { 
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) rotate(360deg) translateX(35px);
    opacity: 0.8;
  }
}

@keyframes leaf-fall-8 {
  0% { 
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) rotate(-360deg) translateX(-45px);
    opacity: 0.8;
  }
}

/* Leaf pile at the bottom */
[data-autumn="true"] footer::before {
  content: '🍂 🍁 🍂 🍁 🍂 🍁 🍂 🍁 🍂 🍁';
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: leaf-pile-sway 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(210, 105, 30, 0.4));
}

@keyframes leaf-pile-sway {
  0%, 100% { 
    transform: translateX(0);
  }
  50% { 
    transform: translateX(5px);
  }
}

/* Additional falling leaf on nav */
[data-autumn="true"] nav::after {
  content: '🍁';
  position: fixed;
  top: -50px;
  left: 25%;
  font-size: 2rem;
  animation: leaf-fall-2 15s linear infinite 2s;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

/* Nav brand container for title and mushrooms */
.nav-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Mushroom cluster positioned under "The Scran Van" title */
.seasonal-mushrooms {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-0.05em);
  display: flex;
  gap: 0.4rem;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
  z-index: 10;
  line-height: 1;
}

.seasonal-mushrooms span {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 8px rgba(210, 105, 30, 0.4));
  animation: mushroom-sway 3s ease-in-out infinite;
}

.seasonal-mushrooms span:nth-child(1) { animation-delay: 0s; }
.seasonal-mushrooms span:nth-child(2) { animation-delay: 0.5s; }
.seasonal-mushrooms span:nth-child(3) { animation-delay: 1s; }
.seasonal-mushrooms span:nth-child(4) { animation-delay: 1.5s; }
.seasonal-mushrooms span:nth-child(5) { animation-delay: 2s; }

@keyframes mushroom-sway {
  0%, 100% { 
    transform: rotate(-2deg);
  }
  50% { 
    transform: rotate(2deg);
  }
}

/* Mobile: static positioning in normal flow */
@media (max-width: 768px) {
  .seasonal-mushrooms {
    position: static;
    transform: none;
    margin-top: -3px;
    gap: 0.25rem;
  }
  
  .seasonal-mushrooms span {
    font-size: 1rem;
  }
}

/* Additional falling leaves using existing sections */
[data-autumn="true"] main::after {
  content: '🍂';
  position: fixed;
  top: -50px;
  left: 45%;
  font-size: 2rem;
  animation: leaf-fall-3 13s linear infinite 4s;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

[data-autumn="true"] footer::after {
  content: '🍁';
  position: fixed;
  top: -50px;
  left: 60%;
  font-size: 2rem;
  animation: leaf-fall-4 14s linear infinite 1s;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

/* Review and menu card decorations */
[data-autumn="true"] .review-card::after,
[data-autumn="true"] .menu-card::after {
  content: '🍁';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2rem;
  opacity: 0.6;
  animation: leaf-spin 8s linear infinite;
  pointer-events: none;
}

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

/* Mobile adjustments for Autumn theme */
@media screen and (max-width: 768px) {
  /* Smaller Autumn mode indicator */
  [data-autumn="true"]::before {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
    top: 5px;
    right: 5px;
  }
  
  /* Reduce decoration size on mobile */
  [data-autumn="true"] nav::before,
  [data-autumn="true"] main::before {
    font-size: 1.5rem;
  }
  
  /* Adjust positioning on mobile */
  [data-autumn="true"] nav::before {
    top: 80px;
    right: 20px;
  }
  
  [data-autumn="true"] main::before {
    bottom: 80px;
    left: 15px;
  }
  
  /* Smaller falling leaves on mobile */
  [data-autumn="true"] body::after,
  .autumn-leaf-2,
  .autumn-leaf-3,
  .autumn-leaf-4,
  .autumn-leaf-5,
  .autumn-leaf-6,
  .autumn-leaf-7,
  .autumn-leaf-8 {
    font-size: 1.5rem;
  }
  
  /* Smaller leaf pile on mobile */
  [data-autumn="true"] footer::before {
    font-size: 1.2rem;
  }
}

/* ===========================
   WINTER THEME
   ========================== */

/* Winter color scheme - Light Mode */
[data-winter="true"] {
  --primary-color: #00BCD4;
  --secondary-color: #4DD0E1;
  --accent-color: #80DEEA;
  --text-glow: #E0F7FA;
  --bg-color: #F0F8FF;
  --card-bg: #FFFFFF;
  --nav-bg: rgba(240, 248, 255, 0.95);
  --nav-bg-hover: rgba(240, 248, 255, 1);
  --border-color: rgba(0, 188, 212, 0.3);
}

/* Winter Dark Mode */
[data-winter="true"][data-theme="dark"] {
  --primary-color: #4DD0E1;
  --secondary-color: #80DEEA;
  --accent-color: #B2EBF2;
  --text-glow: #00BCD4;
  --bg-color: #0A1929;
  --card-bg: #1A2942;
  --nav-bg: rgba(10, 25, 41, 0.95);
  --nav-bg-hover: rgba(10, 25, 41, 1);
  --text-color: #E3F2FD;
  --text-light: #B3E5FC;
  --border-color: rgba(77, 208, 225, 0.4);
}

/* Winter-themed backgrounds - Light Mode */
[data-winter="true"] body {
  background: linear-gradient(135deg, #E3F2FD 0%, #F0F8FF 50%, #E1F5FE 100%);
  background-attachment: fixed;
  animation: winter-shimmer 15s ease-in-out infinite;
  position: relative;
  overflow-x: hidden;
}

/* Winter Dark Mode Background */
[data-winter="true"][data-theme="dark"] body {
  background: linear-gradient(135deg, #0A1929 0%, #1A2942 50%, #0D2136 100%);
  background-attachment: fixed;
}

@keyframes winter-shimmer {
  0%, 100% { 
    filter: brightness(1) contrast(1);
  }
  50% { 
    filter: brightness(1.05) contrast(1.02);
  }
}

/* Frosty crystalline overlay pattern - enhanced visibility */
[data-winter="true"] body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0, 188, 212, 0.08) 40px, rgba(0, 188, 212, 0.08) 42px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(77, 208, 225, 0.08) 40px, rgba(77, 208, 225, 0.08) 42px),
    repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(128, 222, 234, 0.05) 60px, rgba(128, 222, 234, 0.05) 61px);
  opacity: 0.9;
  animation: crystal-shimmer 8s ease-in-out infinite;
}

@keyframes crystal-shimmer {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.7; }
}

/* Headings */
[data-winter="true"] h1,
[data-winter="true"] h2,
[data-winter="true"] h3 {
  color: #00BCD4;
  text-shadow: 0 0 20px rgba(0, 188, 212, 0.4), 0 2px 4px rgba(255, 255, 255, 0.3);
}

[data-winter="true"][data-theme="dark"] h1,
[data-winter="true"][data-theme="dark"] h2,
[data-winter="true"][data-theme="dark"] h3 {
  color: #4DD0E1;
  text-shadow: 0 0 20px rgba(77, 208, 225, 0.6), 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation links */
[data-winter="true"] nav a {
  color: #00ACC1;
  text-shadow: 0 0 10px rgba(0, 172, 193, 0.3);
}

[data-winter="true"] nav a:hover {
  color: #00BCD4;
  text-shadow: 0 0 15px rgba(0, 188, 212, 0.6);
}

[data-winter="true"][data-theme="dark"] nav a {
  color: #80DEEA;
  text-shadow: 0 0 10px rgba(128, 222, 234, 0.4);
}

[data-winter="true"][data-theme="dark"] nav a:hover {
  color: #B2EBF2;
  text-shadow: 0 0 15px rgba(178, 235, 242, 0.7);
}

/* Cards and sections - Frosted glass effect */
[data-winter="true"] .card,
[data-winter="true"] article {
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid rgba(0, 188, 212, 0.5);
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.2), 0 0 30px rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(10px);
}

[data-winter="true"][data-theme="dark"] .card,
[data-winter="true"][data-theme="dark"] article {
  background: rgba(26, 41, 66, 0.8);
  border: 3px solid rgba(77, 208, 225, 0.6);
  box-shadow: 0 4px 20px rgba(77, 208, 225, 0.3), 0 0 30px rgba(77, 208, 225, 0.1) inset;
  backdrop-filter: blur(10px);
}

/* Buttons */
[data-winter="true"] button,
[data-winter="true"] [role="button"] {
  background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 100%);
  border-color: #00ACC1;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
}

[data-winter="true"] button:hover,
[data-winter="true"] [role="button"]:hover {
  background: linear-gradient(135deg, #4DD0E1 0%, #00BCD4 100%);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.5);
}

/* Price colors */
[data-winter="true"] .price,
[data-winter="true"] .menu-item-price {
  color: #FFFFFF !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

[data-winter="true"][data-theme="dark"] .price,
[data-winter="true"][data-theme="dark"] .menu-item-price {
  color: #B2EBF2 !important;
  text-shadow: 0 0 10px rgba(178, 235, 242, 0.5);
  font-weight: 700;
}

/* Tooltips for winter theme */
[data-winter="true"] .menu-tooltip {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 188, 212, 0.6);
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
  backdrop-filter: blur(15px);
}

[data-winter="true"][data-theme="dark"] .menu-tooltip {
  background: rgba(26, 41, 66, 0.95);
  border: 2px solid rgba(77, 208, 225, 0.6);
  box-shadow: 0 10px 30px rgba(77, 208, 225, 0.4);
}

[data-winter="true"] .menu-tooltip::before {
  border-top-color: rgba(255, 255, 255, 0.95);
}

[data-winter="true"][data-theme="dark"] .menu-tooltip::before {
  border-top-color: rgba(26, 41, 66, 0.95);
}

/* Menu item hover - improved contrast */
[data-winter="true"] .menu-item:hover,
[data-winter="true"] .interactive-menu-item:hover {
  background: rgba(0, 188, 212, 0.15);
  border-left-color: #00BCD4;
  transform: translateX(5px);
}

[data-winter="true"][data-theme="dark"] .menu-item:hover,
[data-winter="true"][data-theme="dark"] .interactive-menu-item:hover {
  background: rgba(77, 208, 225, 0.2);
  border-left-color: #4DD0E1;
}

/* Menu item text - ensure good contrast */
[data-winter="true"] .menu-item-name,
[data-winter="true"] .menu-item-description {
  color: #0A1929;
}

[data-winter="true"][data-theme="dark"] .menu-item-name,
[data-winter="true"][data-theme="dark"] .menu-item-description {
  color: #E3F2FD;
}

/* Falling snowflakes - Multiple layers */
[data-winter="true"] body::after {
  content: '❄';
  position: fixed;
  top: -50px;
  left: 10%;
  font-size: 2rem;
  animation: snowfall-1 10s linear infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  color: #E3F2FD;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

[data-winter="true"] nav::after {
  content: '❄';
  position: fixed;
  top: -50px;
  left: 30%;
  font-size: 1.5rem;
  animation: snowfall-2 12s linear infinite 2s;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  color: #E1F5FE;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

[data-winter="true"] main::after {
  content: '❄';
  position: fixed;
  top: -50px;
  left: 50%;
  font-size: 2.5rem;
  animation: snowfall-3 11s linear infinite 4s;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  color: #F0F8FF;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

[data-winter="true"] footer::after {
  content: '❄';
  position: fixed;
  top: -50px;
  left: 70%;
  font-size: 1.8rem;
  animation: snowfall-4 13s linear infinite 1s;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
  color: #E3F2FD;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Snowfall animations */
@keyframes snowfall-1 {
  0% { 
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) translateX(30px) rotate(360deg);
    opacity: 0.8;
  }
}

@keyframes snowfall-2 {
  0% { 
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) translateX(-20px) rotate(-360deg);
    opacity: 0.7;
  }
}

@keyframes snowfall-3 {
  0% { 
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) translateX(40px) rotate(360deg);
    opacity: 0.9;
  }
}

@keyframes snowfall-4 {
  0% { 
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.75;
  }
  100% { 
    transform: translateY(calc(100vh + 100px)) translateX(-35px) rotate(-360deg);
    opacity: 0.75;
  }
}

/* Snowman decoration - positioned at bottom of nav for sticky behavior */
[data-winter="true"] .snowman-decoration {
  position: absolute;
  bottom: 5px;
  left: 20px;
  font-size: 3rem;
  pointer-events: none;
  z-index: 150;
  filter: drop-shadow(0 0 15px rgba(77, 208, 225, 0.5));
  display: block;
  animation: snowman-wave-desktop 4s ease-in-out infinite;
}

@keyframes snowman-wave-desktop {
  0%, 100% { 
    transform: rotate(-3deg);
  }
  50% { 
    transform: rotate(3deg);
  }
}

/* Mobile: smaller snowman zooms left to right at bottom of nav bar */
@media (max-width: 768px) {
  [data-winter="true"] .snowman-decoration {
    bottom: 5px;
    left: 5%;
    font-size: 2rem;
    animation: snowman-slide-mobile 8s ease-in-out infinite;
  }
  
  @keyframes snowman-slide-mobile {
    0%, 100% { 
      left: 5%;
      transform: rotate(-3deg);
    }
    50% { 
      left: 85%;
      transform: rotate(3deg);
    }
  }
}

/* Winter theme menu item styling - add frosty effect to all menu items */
[data-winter="true"] .menu-item {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.08), rgba(135, 206, 250, 0.05));
  border: 1px solid rgba(77, 208, 225, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(77, 208, 225, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

[data-winter="true"] .menu-item:hover {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.15), rgba(135, 206, 250, 0.1));
  border-color: rgba(77, 208, 225, 0.4);
  box-shadow: 0 4px 10px rgba(77, 208, 225, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-winter="true"] .menu-item.featured {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.25), rgba(135, 206, 250, 0.15));
  border: 2px solid rgba(77, 208, 225, 0.5);
  box-shadow: 0 4px 12px rgba(77, 208, 225, 0.3),
              0 0 20px rgba(77, 208, 225, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Winter theme for menu highlight / Full English Breakfast */
[data-winter="true"] .menu-highlight {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.4), rgba(135, 206, 250, 0.3));
  border: 3px solid rgba(77, 208, 225, 0.6);
  box-shadow: 0 8px 20px rgba(77, 208, 225, 0.4),
              0 0 30px rgba(77, 208, 225, 0.2),
              inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

[data-winter="true"] .menu-highlight:hover {
  box-shadow: 0 12px 30px rgba(77, 208, 225, 0.5),
              0 0 40px rgba(77, 208, 225, 0.3),
              inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* CSS-drawn icicles hanging from nav - realistic triangular shapes */
[data-winter="true"] .icicles-container {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  height: 25px;
  pointer-events: none;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 35px;
  overflow: visible;
}

[data-winter="true"] .icicle {
  position: relative;
  width: 8px;
  height: 22px;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(200, 230, 255, 0.9) 30%,
    rgba(135, 206, 250, 0.85) 60%,
    rgba(77, 208, 225, 0.7) 100%);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  filter: drop-shadow(0 2px 4px rgba(77, 208, 225, 0.5));
  animation: icicle-drip 3s ease-in-out infinite;
  transform-origin: top center;
}

[data-winter="true"] .icicle:nth-child(1) { height: 18px; animation-delay: 0s; }
[data-winter="true"] .icicle:nth-child(2) { height: 24px; animation-delay: 0.3s; }
[data-winter="true"] .icicle:nth-child(3) { height: 15px; animation-delay: 0.6s; }
[data-winter="true"] .icicle:nth-child(4) { height: 28px; animation-delay: 0.1s; }
[data-winter="true"] .icicle:nth-child(5) { height: 20px; animation-delay: 0.5s; }
[data-winter="true"] .icicle:nth-child(6) { height: 25px; animation-delay: 0.2s; }
[data-winter="true"] .icicle:nth-child(7) { height: 16px; animation-delay: 0.7s; }
[data-winter="true"] .icicle:nth-child(8) { height: 22px; animation-delay: 0.4s; }

@keyframes icicle-drip {
  0%, 100% { 
    transform: scaleY(1);
    opacity: 1;
  }
  50% { 
    transform: scaleY(1.08);
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(77, 208, 225, 0.7));
  }
}

/* Drip drop animation - water drops falling from icicles */
[data-winter="true"] .icicle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(135, 206, 250, 0.9) 0%, rgba(77, 208, 225, 0.6) 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0;
  animation: water-drop 4s ease-in infinite;
}

[data-winter="true"] .icicle:nth-child(1)::after { animation-delay: 0.5s; }
[data-winter="true"] .icicle:nth-child(2)::after { animation-delay: 1.2s; }
[data-winter="true"] .icicle:nth-child(3)::after { animation-delay: 2.1s; }
[data-winter="true"] .icicle:nth-child(4)::after { animation-delay: 0.8s; }
[data-winter="true"] .icicle:nth-child(5)::after { animation-delay: 1.7s; }
[data-winter="true"] .icicle:nth-child(6)::after { animation-delay: 0.3s; }
[data-winter="true"] .icicle:nth-child(7)::after { animation-delay: 2.5s; }
[data-winter="true"] .icicle:nth-child(8)::after { animation-delay: 1.0s; }

@keyframes water-drop {
  0%, 80% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(0.5);
  }
  85% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.8);
  }
}

/* Tinsel decoration at footer */
[data-winter="true"] footer::before {
  content: '🎄 ✨ 🎄 ✨ 🎄 ✨ 🎄 ✨ 🎄';
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: tinsel-sparkle 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 188, 212, 0.4));
}

@keyframes tinsel-sparkle {
  0%, 100% { 
    filter: drop-shadow(0 2px 8px rgba(0, 188, 212, 0.4));
  }
  50% { 
    filter: drop-shadow(0 2px 15px rgba(0, 188, 212, 0.7));
  }
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
  /* Adjust icicles on mobile - smaller, tighter, avoid controls */
  [data-winter="true"] .icicles-container {
    gap: 18px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  [data-winter="true"] .icicle {
    width: 5px;
  }
  
  [data-winter="true"] .icicle:nth-child(1) { height: 10px; }
  [data-winter="true"] .icicle:nth-child(2) { height: 14px; }
  [data-winter="true"] .icicle:nth-child(3) { height: 8px; }
  [data-winter="true"] .icicle:nth-child(4) { height: 16px; }
  [data-winter="true"] .icicle:nth-child(5) { height: 12px; }
  [data-winter="true"] .icicle:nth-child(6) { height: 15px; }
  [data-winter="true"] .icicle:nth-child(7) { height: 9px; }
  [data-winter="true"] .icicle:nth-child(8) { height: 13px; }
  
  /* Hide water drops on mobile for cleaner look */
  [data-winter="true"] .icicle::after {
    display: none;
  }
  
  /* Smaller snowflakes on mobile */
  [data-winter="true"] body::after,
  [data-winter="true"] nav::after,
  [data-winter="true"] main::after,
  [data-winter="true"] footer::after {
    font-size: 1.5rem;
  }
  
  /* Smaller tinsel on mobile */
  [data-winter="true"] footer::before {
    font-size: 1.2rem;
  }
}

/* ============================================================
   SPRING THEME
   ============================================================ */

/* Spring colour palette */
[data-spring="true"] {
  --primary-color: #9b7fd4;
  --secondary-color: #6dbf67;
  --accent-color: #f7c948;
  --gradient-primary: linear-gradient(135deg, #9b7fd4 0%, #6dbf67 50%, #a8d48b 100%);
  --shadow-primary: 0 10px 30px rgba(155, 127, 212, 0.3);
  --border-color: rgba(155, 127, 212, 0.2);
}

/* Spring light mode */
[data-spring="true"]:not([data-theme="dark"]),
[data-spring="true"][data-theme="light"] {
  --bg-gradient: linear-gradient(135deg, #f0ecfa 0%, #e8f5e9 50%, #f5f0e8 100%);
  --nav-bg: rgba(244, 241, 252, 0.95);
  --nav-bg-hover: rgba(244, 241, 252, 1);
  --card-bg: #faf8fe;
  --surface-bg: #f4f0fa;
  --bg-color: #f0ecfa;
}

/* Spring dark mode */
[data-spring="true"][data-theme="dark"] {
  --bg-gradient: linear-gradient(135deg, #3d1f2e 0%, #1e3d1f 50%, #2e1f3d 100%);
  --nav-bg: rgba(40, 20, 35, 0.95);
  --card-bg: #2d1a28;
  --surface-bg: #38203a;
  --bg-color: #2d1a28;
}

@media (prefers-color-scheme: dark) {
  [data-spring="true"]:not([data-theme="light"]) {
    --bg-gradient: linear-gradient(135deg, #3d1f2e 0%, #1e3d1f 50%, #2e1f3d 100%);
    --nav-bg: rgba(40, 20, 35, 0.95);
    --card-bg: #2d1a28;
    --surface-bg: #38203a;
    --bg-color: #2d1a28;
  }
}

/* Nav brand gradient override */
[data-spring="true"] nav li strong {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav border */
[data-spring="true"] nav {
  border-bottom-color: var(--primary-color);
}

/* Headings gradient */
[data-spring="true"] hgroup h2,
[data-spring="true"] section[aria-label="Subscribe example"] h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-spring="true"] section h3 {
  color: #9b7fd4;
}

[data-spring="true"] section h3::after {
  background: var(--gradient-primary);
}

/* Buttons */
[data-spring="true"] button[type="submit"],
[data-spring="true"] nav ul li a[role="button"] {
  background: var(--gradient-primary) !important;
}

/* ---- Bunny decoration (inside nav, absolute, sticks on scroll) ---- */
/* Hops across the full nav width with a bouncing vertical motion */
.bunny-decoration {
  position: absolute;
  font-size: 2.2rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(-1);
  animation: bunny-hop 12s linear infinite;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(155, 127, 212, 0.4));
}

@keyframes bunny-hop {
  0%   { left: -5%;  transform: translateY(-50%) scaleX(-1); opacity: 0; }
  5%   { left: 3%;   transform: translateY(-50%) scaleX(-1); opacity: 1; }
  /* hop 1 */
  9%   { left: 10%;  transform: translateY(calc(-50% - 4px))  scaleX(-1); }
  12%  { left: 14%;  transform: translateY(calc(-50% - 14px)) scaleX(-1); }
  15%  { left: 18%;  transform: translateY(calc(-50% - 18px)) scaleX(-1); }
  18%  { left: 22%;  transform: translateY(calc(-50% - 14px)) scaleX(-1); }
  21%  { left: 25%;  transform: translateY(calc(-50% - 4px))  scaleX(-1); }
  23%  { left: 27%;  transform: translateY(-50%) scaleX(-1); }
  /* pause on ground */
  26%  { left: 30%;  transform: translateY(-50%) scaleX(-1); }
  /* hop 2 */
  30%  { left: 35%;  transform: translateY(calc(-50% - 4px))  scaleX(-1); }
  33%  { left: 39%;  transform: translateY(calc(-50% - 14px)) scaleX(-1); }
  36%  { left: 43%;  transform: translateY(calc(-50% - 18px)) scaleX(-1); }
  39%  { left: 47%;  transform: translateY(calc(-50% - 14px)) scaleX(-1); }
  42%  { left: 50%;  transform: translateY(calc(-50% - 4px))  scaleX(-1); }
  44%  { left: 52%;  transform: translateY(-50%) scaleX(-1); }
  /* pause on ground */
  47%  { left: 55%;  transform: translateY(-50%) scaleX(-1); }
  /* hop 3 */
  51%  { left: 60%;  transform: translateY(calc(-50% - 4px))  scaleX(-1); }
  54%  { left: 64%;  transform: translateY(calc(-50% - 14px)) scaleX(-1); }
  57%  { left: 68%;  transform: translateY(calc(-50% - 18px)) scaleX(-1); }
  60%  { left: 72%;  transform: translateY(calc(-50% - 14px)) scaleX(-1); }
  63%  { left: 75%;  transform: translateY(calc(-50% - 4px))  scaleX(-1); }
  65%  { left: 77%;  transform: translateY(-50%) scaleX(-1); }
  /* pause on ground */
  68%  { left: 80%;  transform: translateY(-50%) scaleX(-1); }
  /* hop 4 */
  72%  { left: 85%;  transform: translateY(calc(-50% - 4px))  scaleX(-1); }
  75%  { left: 89%;  transform: translateY(calc(-50% - 14px)) scaleX(-1); }
  78%  { left: 93%;  transform: translateY(calc(-50% - 18px)) scaleX(-1); }
  81%  { left: 97%;  transform: translateY(calc(-50% - 14px)) scaleX(-1); }
  84%  { left: 100%; transform: translateY(calc(-50% - 4px))  scaleX(-1); }
  86%  { left: 102%; transform: translateY(-50%) scaleX(-1); opacity: 1; }
  90%  { left: 106%; transform: translateY(-50%) scaleX(-1); opacity: 0; }
  91%  { left: -5%;  transform: translateY(-50%) scaleX(-1); opacity: 0; }
  100% { left: -5%;  transform: translateY(-50%) scaleX(-1); opacity: 0; }
}

@media screen and (max-width: 768px) {
  .bunny-decoration {
    font-size: 1.6rem;
  }
}

/* ---- Flower cluster under nav brand title ---- */
.seasonal-flowers {
  display: flex;
  justify-content: flex-start;
  gap: 2px;
  margin-top: 2px;
  font-size: 1.1rem;
  pointer-events: none;
  animation: flowers-sway 4s ease-in-out infinite;
}

.seasonal-flowers span:nth-child(odd) {
  animation: flower-bob 2.5s ease-in-out infinite;
}

.seasonal-flowers span:nth-child(even) {
  animation: flower-bob 2.5s ease-in-out infinite 0.4s;
}

@keyframes flowers-sway {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(3px); }
}

@keyframes flower-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}

@media screen and (max-width: 768px) {
  .seasonal-flowers {
    font-size: 0.9rem;
    justify-content: flex-start;
  }
}

/* ---- Falling petals ---- */
[data-spring="true"] body::after {
  content: '🌼';
  position: fixed;
  font-size: 1.8rem;
  top: -50px;
  left: 8%;
  animation: petal-fall 7s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.85;
}

.spring-petal-2 {
  position: fixed;
  font-size: 1.5rem;
  top: -50px;
  left: 22%;
  animation: petal-fall 9s 1.5s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
}

.spring-petal-3 {
  position: fixed;
  font-size: 2rem;
  top: -50px;
  left: 40%;
  animation: petal-fall 8s 3s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.75;
}

.spring-petal-4 {
  position: fixed;
  font-size: 1.4rem;
  top: -50px;
  left: 58%;
  animation: petal-fall 11s 0.8s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
}

.spring-petal-5 {
  position: fixed;
  font-size: 1.6rem;
  top: -50px;
  left: 73%;
  animation: petal-fall 7.5s 2s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.85;
}

.spring-petal-6 {
  position: fixed;
  font-size: 1.9rem;
  top: -50px;
  left: 85%;
  animation: petal-fall 10s 4.5s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
}

.spring-petal-7 {
  position: fixed;
  font-size: 1.3rem;
  top: -50px;
  left: 15%;
  animation: petal-fall 8.5s 6s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
}

.spring-petal-8 {
  position: fixed;
  font-size: 1.7rem;
  top: -50px;
  left: 50%;
  animation: petal-fall 9.5s 2.8s linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.75;
}

@keyframes petal-fall {
  0% {
    top: -60px;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.85;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    top: 110vh;
    transform: translateX(40px) rotate(360deg);
    opacity: 0;
  }
}


/* ---- Footer blossom decoration ---- */
[data-spring="true"] footer::before {
  content: '🌸 🌷 🌼 🐇 🌼 🌷 🌸';
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: blossom-pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(155, 127, 212, 0.4));
}

@keyframes blossom-pulse {
  0%, 100% { filter: drop-shadow(0 2px 8px rgba(155, 127, 212, 0.4)); }
  50%       { filter: drop-shadow(0 2px 15px rgba(155, 127, 212, 0.7)); }
}

/* ---- Card freshness ---- */
[data-spring="true"] .menu-item {
  border-left: 3px solid rgba(155, 127, 212, 0.3);
}

[data-spring="true"] .menu-item.featured {
  border-left-color: #9b7fd4;
  background: linear-gradient(135deg, rgba(155, 127, 212, 0.05) 0%, rgba(109, 191, 103, 0.05) 100%);
}

/* Featured breakfast card (uses .menu-highlight class) */
[data-spring="true"] .menu-highlight {
  border-color: rgba(155, 127, 212, 0.4);
  background: linear-gradient(135deg, rgba(155, 127, 212, 0.08) 0%, rgba(109, 191, 103, 0.08) 50%, rgba(168, 212, 139, 0.08) 100%);
}

[data-spring="true"] .menu-highlight:hover {
  border-color: #9b7fd4;
  box-shadow: 0 8px 25px rgba(155, 127, 212, 0.2);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  [data-spring="true"] footer::before {
    font-size: 1.2rem;
    content: '🌸 🌷 🐇 🌷 🌸';
  }
  
  [data-spring="true"] body::after,
  .spring-petal-2, .spring-petal-3, .spring-petal-4,
  .spring-petal-5, .spring-petal-6, .spring-petal-7, .spring-petal-8 {
    font-size: 1.2rem;
  }
}
/* ============================================================
   SUMMER THEME (BLAZING HOT)
   ============================================================ */

/* Summer colour palette */
[data-summer="true"] {
  --primary-color: #ff4500;
  --secondary-color: #ff8c00;
  --accent-color: #ffd700;
  --gradient-primary: linear-gradient(135deg, #ff4500 0%, #ff8c00 50%, #ffd700 100%);
  --shadow-primary: 0 10px 30px rgba(255, 69, 0, 0.35);
  --border-color: rgba(255, 69, 0, 0.2);
}

/* Summer light mode - scorching sun colours */
[data-summer="true"]:not([data-theme="dark"]),
[data-summer="true"][data-theme="light"] {
  --bg-gradient: linear-gradient(135deg, #fff3d6 0%, #ffe0b3 40%, #a8dcf5 100%);
  --nav-bg: rgba(255, 248, 230, 0.95);
  --nav-bg-hover: rgba(255, 248, 230, 1);
  --card-bg: #fffaf0;
  --surface-bg: #fff3e0;
  --bg-color: #fff3d6;
}

/* Summer dark mode - heatwave sunset night */
[data-summer="true"][data-theme="dark"] {
  --bg-gradient: linear-gradient(135deg, #3d1408 0%, #4a1a3d 50%, #2b0f3a 100%);
  --nav-bg: rgba(50, 18, 12, 0.95);
  --card-bg: #33150f;
  --surface-bg: #421e28;
  --bg-color: #33150f;
  --border-color: rgba(255, 105, 60, 0.35);
}

@media (prefers-color-scheme: dark) {
  [data-summer="true"]:not([data-theme="light"]) {
    --bg-gradient: linear-gradient(135deg, #3d1408 0%, #4a1a3d 50%, #2b0f3a 100%);
    --nav-bg: rgba(50, 18, 12, 0.95);
    --card-bg: #33150f;
    --surface-bg: #421e28;
    --bg-color: #33150f;
    --border-color: rgba(255, 105, 60, 0.35);
  }
}

/* Nav brand gradient override */
[data-summer="true"] nav li strong {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: summer-heat-glow 2.5s ease-in-out infinite;
}

@keyframes summer-heat-glow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 69, 0, 0.4)); }
  50%       { filter: drop-shadow(0 0 14px rgba(255, 140, 0, 0.8)); }
}

/* Nav border */
[data-summer="true"] nav {
  border-bottom-color: var(--primary-color);
}

/* Headings gradient */
[data-summer="true"] hgroup h2,
[data-summer="true"] section[aria-label="Subscribe example"] h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-summer="true"] section h3 {
  color: #ff4500;
}

[data-summer="true"] section h3::after {
  background: var(--gradient-primary);
}

/* Buttons */
[data-summer="true"] button[type="submit"],
[data-summer="true"] nav ul li a[role="button"] {
  background: var(--gradient-primary) !important;
}

/* ---- Heat-haze shimmer on the hero section ---- */
[data-summer="true"] main .grid section > hgroup:first-child,
[data-summer="true"] main .grid section > hgroup:first-child + p {
  animation: heat-haze 3s ease-in-out infinite;
}

@keyframes heat-haze {
  0%, 100% { transform: translateY(0) skewX(0deg); filter: blur(0); }
  25%       { transform: translateY(-1px) skewX(0.3deg); filter: blur(0.3px); }
  50%       { transform: translateY(0.5px) skewX(-0.3deg); filter: blur(0); }
  75%       { transform: translateY(-0.5px) skewX(0.2deg); filter: blur(0.2px); }
}

/* ---- Blazing sun in the top corner with pulsing rays ---- */
.blazing-sun {
  position: fixed;
  top: 130px; /* decoration safe zone: keep clear of nav dark/light toggle */
  right: 25px;
  font-size: 4rem;
  z-index: 9998;
  pointer-events: none;
  animation: blazing-sun-pulse 3s ease-in-out infinite, blazing-sun-spin 24s linear infinite;
  filter: drop-shadow(0 0 20px rgba(255, 200, 0, 0.9));
}

@keyframes blazing-sun-pulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 200, 0, 0.7)); }
  50%       { filter: drop-shadow(0 0 40px rgba(255, 140, 0, 1)) drop-shadow(0 0 60px rgba(255, 69, 0, 0.6)); }
}

@keyframes blazing-sun-spin {
  from { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.12); }
  to   { transform: rotate(360deg) scale(1); }
}

/* ---- Thermometer about to burst ---- */
.summer-thermometer {
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 2.8rem;
  z-index: 9998;
  pointer-events: none;
  animation: thermometer-burst 1.6s ease-in-out infinite;
}

@keyframes thermometer-burst {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.5)); }
  40%       { transform: scale(1.15) rotate(-3deg); filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.9)); }
  50%       { transform: scale(1.22) rotate(3deg); filter: drop-shadow(0 0 20px rgba(255, 0, 0, 1)); }
  60%       { transform: scale(1.15) rotate(-2deg); filter: drop-shadow(0 0 14px rgba(255, 0, 0, 0.9)); }
}

/* ---- Rising heat wisps from the bottom of the screen ---- */
.heat-wisp {
  position: fixed;
  bottom: -60px;
  font-size: 1.6rem;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
}

.heat-wisp-1 { left: 8%;  animation: heat-rise 7s   linear infinite; }
.heat-wisp-2 { left: 28%; animation: heat-rise 9s   2s linear infinite; font-size: 1.3rem; }
.heat-wisp-3 { left: 50%; animation: heat-rise 8s   4s linear infinite; font-size: 1.8rem; }
.heat-wisp-4 { left: 70%; animation: heat-rise 10s  1s linear infinite; font-size: 1.4rem; }
.heat-wisp-5 { left: 88%; animation: heat-rise 7.5s 3s linear infinite; font-size: 1.5rem; }

@keyframes heat-rise {
  0% {
    bottom: -60px;
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }
  10% { opacity: 0.7; }
  50% { transform: translateX(-15px) scale(1); opacity: 0.6; }
  80% { opacity: 0.35; }
  100% {
    bottom: 105vh;
    transform: translateX(15px) scale(1.2);
    opacity: 0;
  }
}

/* ---- Sun with sunglasses nav decoration (sticky, like snowman/bunny) ---- */
.summer-sun-decoration {
  position: absolute;
  font-size: 2.4rem;
  top: 50%;
  left: 24%;
  transform: translateY(-50%);
  animation: summer-sun-bounce 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 0 10px rgba(255, 200, 0, 0.8));
}

@keyframes summer-sun-bounce {
  0%, 100% { transform: translateY(-50%) rotate(-8deg) scale(1); }
  25%       { transform: translateY(calc(-50% - 8px)) rotate(0deg) scale(1.08); }
  50%       { transform: translateY(-50%) rotate(8deg) scale(1); }
  75%       { transform: translateY(calc(-50% - 5px)) rotate(0deg) scale(1.05); }
}

@media screen and (max-width: 768px) {
  .summer-sun-decoration {
    font-size: 1.7rem;
    left: auto;
    right: 110px;
    animation: summer-sun-slide 9s ease-in-out infinite;
  }
  
  @keyframes summer-sun-slide {
    0%, 100% { transform: translateY(-50%) rotate(0deg); opacity: 1; }
    25%       { transform: translateY(calc(-50% - 6px)) rotate(15deg); }
    50%       { transform: translateY(-50%) rotate(-15deg); }
    75%       { transform: translateY(calc(-50% - 4px)) rotate(10deg); }
  }
}

/* ---- Ice lolly / beach treat cluster under nav brand title ---- */
.seasonal-summer-treats {
  display: flex;
  justify-content: flex-start;
  gap: 2px;
  margin-top: 2px;
  font-size: 1.1rem;
  pointer-events: none;
  animation: treats-sway 4s ease-in-out infinite;
}

.seasonal-summer-treats span:nth-child(odd) {
  animation: treat-wobble 2.2s ease-in-out infinite;
}

.seasonal-summer-treats span:nth-child(even) {
  animation: treat-wobble 2.2s ease-in-out infinite 0.35s;
}

@keyframes treats-sway {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(3px); }
}

@keyframes treat-wobble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-3px) rotate(6deg); }
}

@media screen and (max-width: 768px) {
  .seasonal-summer-treats {
    font-size: 0.9rem;
  }
}

/* ---- Floating/drifting summer elements ---- */
.summer-floater-1,
.summer-floater-2,
.summer-floater-3,
.summer-floater-4,
.summer-floater-5,
.summer-floater-6,
.summer-floater-7 {
  position: fixed;
  top: -60px;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
}

.summer-floater-1 { left: 5%;  font-size: 1.8rem; animation: summer-drift 12s  linear infinite; }
.summer-floater-2 { left: 20%; font-size: 1.5rem; animation: summer-drift 15s  3s linear infinite; }
.summer-floater-3 { left: 38%; font-size: 1.6rem; animation: summer-drift 13s  6s linear infinite; }
.summer-floater-4 { left: 55%; font-size: 1.4rem; animation: summer-drift 16s  1.5s linear infinite; }
.summer-floater-5 { left: 68%; font-size: 1.9rem; animation: summer-drift-bounce 11s 4s linear infinite; }
.summer-floater-6 { left: 82%; font-size: 1.7rem; animation: summer-drift 14s  8s linear infinite; }
.summer-floater-7 { left: 92%; font-size: 1.5rem; animation: summer-drift 12.5s 10s linear infinite; }

@keyframes summer-drift {
  0% {
    top: -60px;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  6%  { opacity: 0.85; }
  50% { transform: translateX(-30px) rotate(180deg); }
  90% { opacity: 0.7; }
  100% {
    top: 110vh;
    transform: translateX(25px) rotate(360deg);
    opacity: 0;
  }
}

/* Beach ball gets a bouncier fall */
@keyframes summer-drift-bounce {
  0% {
    top: -60px;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  6%  { opacity: 0.9; }
  25% { transform: translateX(-40px) rotate(200deg); }
  45% { transform: translateX(20px) rotate(380deg); }
  65% { transform: translateX(-25px) rotate(560deg); }
  90% { opacity: 0.75; }
  100% {
    top: 110vh;
    transform: translateX(30px) rotate(720deg);
    opacity: 0;
  }
}

/* ---- Seagull flying across the screen ---- */
.summer-seagull {
  position: fixed;
  top: 18%;
  left: -80px;
  font-size: 2rem;
  pointer-events: none;
  z-index: 9997;
  animation: seagull-fly 18s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes seagull-fly {
  0%   { left: -80px;  top: 18%; transform: scaleX(1) rotate(5deg); }
  20%  { top: 14%; transform: scaleX(1) rotate(-5deg); }
  40%  { top: 20%; transform: scaleX(1) rotate(5deg); }
  60%  { top: 12%; transform: scaleX(1) rotate(-3deg); }
  80%  { top: 17%; transform: scaleX(1) rotate(4deg); }
  100% { left: 110%; top: 15%; transform: scaleX(1) rotate(0deg); }
}

/* ---- Sizzling menu cards ---- */
[data-summer="true"] .menu-item {
  border-left: 3px solid rgba(255, 69, 0, 0.35);
  position: relative;
}

[data-summer="true"] .menu-item.featured {
  border-left-color: #ff4500;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.06) 0%, rgba(255, 140, 0, 0.06) 100%);
  animation: sizzle-glow 2s ease-in-out infinite;
}

[data-summer="true"] .menu-item.featured::after {
  content: '🔥';
  position: absolute;
  right: -6px;
  top: -8px;
  font-size: 0.95rem;
  animation: sizzle-flicker 0.8s ease-in-out infinite;
}

@keyframes sizzle-glow {
  0%, 100% { box-shadow: 0 0 4px rgba(255, 69, 0, 0.25); }
  50%       { box-shadow: 0 0 14px rgba(255, 69, 0, 0.55); }
}

@keyframes sizzle-flicker {
  0%, 100% { transform: scale(1) rotate(-5deg); opacity: 0.9; }
  50%       { transform: scale(1.2) rotate(5deg); opacity: 1; }
}

/* Featured breakfast card (uses .menu-highlight class) */
[data-summer="true"] .menu-highlight {
  border-color: rgba(255, 69, 0, 0.45);
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.09) 0%, rgba(255, 140, 0, 0.09) 50%, rgba(255, 215, 0, 0.09) 100%);
  animation: sizzle-glow 2.5s ease-in-out infinite;
}

[data-summer="true"] .menu-highlight:hover {
  border-color: #ff4500;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

/* ---- Footer beach scene ---- */
[data-summer="true"] footer::before {
  content: '🌴 🏖️ ⛱️ 🏰 🍦 🦀 🌊 🌴';
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  animation: beach-shimmer 3.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.45));
}

@keyframes beach-shimmer {
  0%, 100% { filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.45)); transform: translateY(0); }
  50%       { filter: drop-shadow(0 2px 16px rgba(255, 200, 0, 0.8)); transform: translateY(-3px); }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  [data-summer="true"] footer::before {
    font-size: 1.15rem;
    content: '🌴 🏖️ 🏰 🍦 🌊';
  }
  
  .blazing-sun {
    font-size: 2.6rem;
    top: 120px; /* decoration safe zone: keep clear of nav dark/light toggle */
    right: 12px;
  }
  
  .summer-thermometer {
    font-size: 2rem;
    bottom: 20px;
    right: 12px;
  }
  
  .summer-seagull {
    font-size: 1.4rem;
  }
  
  .summer-floater-1, .summer-floater-2, .summer-floater-3,
  .summer-floater-4, .summer-floater-5, .summer-floater-6,
  .summer-floater-7 {
    font-size: 1.2rem;
  }
  
  .heat-wisp {
    font-size: 1.1rem;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .blazing-sun,
  .summer-thermometer,
  .heat-wisp,
  .summer-seagull,
  .summer-sun-decoration,
  .seasonal-summer-treats,
  .seasonal-summer-treats span,
  .summer-floater-1, .summer-floater-2, .summer-floater-3,
  .summer-floater-4, .summer-floater-5, .summer-floater-6,
  .summer-floater-7 {
    animation: none;
  }
  
  .heat-wisp,
  .summer-floater-1, .summer-floater-2, .summer-floater-3,
  .summer-floater-4, .summer-floater-5, .summer-floater-6,
  .summer-floater-7 {
    display: none;
  }
  
  [data-summer="true"] main .grid section > hgroup:first-child,
  [data-summer="true"] main .grid section > hgroup:first-child + p,
  [data-summer="true"] nav li strong,
  [data-summer="true"] .menu-item.featured,
  [data-summer="true"] .menu-highlight,
  [data-summer="true"] footer::before {
    animation: none;
  }
}

/* ── Follow Us on Facebook / Featured Post section ── */
.social-section {
  background: var(--card-bg);
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 3rem 2rem;
  transition: background 0.3s ease;
}

.social-section hgroup {
  text-align: center;
  margin-bottom: 2rem;
}

.social-section hgroup h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.social-section hgroup h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-style: italic;
}

.social-embeds {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.social-embed-card {
  background: var(--surface-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-secondary);
  max-width: 540px;
  width: 100%;
  flex: 1 1 400px;
  text-align: center;
  overflow: hidden;
}

.social-embed-card iframe,
.social-embed-card .fb-page,
.social-embed-card .fb-page span,
.social-embed-card .fb-page span iframe {
  max-width: 100% !important;
}

.social-embed-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 180px;
  padding: 1.5rem 1rem;
}

.social-embed-fallback p {
  color: var(--secondary-color);
  font-size: 1rem;
  margin: 0;
  max-width: 380px;
}

.social-fallback-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #fff !important;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-fallback-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-secondary);
  text-decoration: none;
}

.featured-post-heading {
  font-family: 'Fredoka One', cursive;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .social-section {
    margin: 1rem;
    padding: 2rem 1rem;
  }
  .social-section hgroup h2 {
    font-size: 1.8rem;
  }
  .social-embed-card {
    padding: 1rem;
    flex-basis: 100%;
  }
}
