/* Modern Premium Restaurant CSS */

/* CSS Variables */
:root {
  --primary-color: #0a0a0a;
  --secondary-color: #1a1a1a;
  --accent-color: #d4af37;
  --accent-hover: #b8941f;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-dark: #2a2a2a;
  --background-dark: #0f0f0f;
  --background-light: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
  --shadow-heavy: rgba(0, 0, 0, 0.3);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7e98e 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --border-radius: 16px;
  --border-radius-small: 8px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Site Wrapper - Unified Background */
.site-wrapper {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  min-height: 100vh;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: var(--transition);
}

.loading-content {
  text-align: center;
  color: var(--text-primary);
}

.loading-logo {
  margin-bottom: 2rem;
  position: relative;
  width: 360px;
  height: 360px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* remove previous quad background for loading logo */

.logo-animation {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 800;
  letter-spacing: 8px;
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow:
    0 0 12px rgba(255,255,255,0.7),
    0 0 30px rgba(255,255,255,0.4);
  transition: var(--transition);
}

.loading-logo:hover .logo-animation {
  filter: brightness(1.1);
}

/* Neon hover that cycles colors under the letters */
.loading-logo::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 28px;
  background: conic-gradient(
    from 0deg,
    rgba(0, 140, 255, 0.9),
    rgba(255, 214, 0, 0.9),
    rgba(255, 64, 129, 0.9),
    rgba(255, 255, 255, 0.9),
    rgba(0, 140, 255, 0.9)
  );
  filter: blur(24px) saturate(1.2);
  opacity: 0.2;
  transition: opacity 0.4s ease, transform 0.6s ease;
  z-index: 0;
}

.loading-logo:hover::before {
  opacity: 0.6;
  transform: rotate(40deg) scale(1.02);
}

/* Subtle pulse on quads when hovered */
.loading-logo:hover .logo-quads .quad {
  animation: quadPulse 1.8s ease-in-out infinite;
}
.loading-logo:hover .logo-quads .q2 { animation-delay: 0.15s; }
.loading-logo:hover .logo-quads .q3 { animation-delay: 0.30s; }
.loading-logo:hover .logo-quads .q4 { animation-delay: 0.45s; }

@keyframes quadPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}

/* Loading animated shapes over black background */
.loading-animated-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.loading-animated-background .animated-shapes { position: absolute; inset: 0; }
.loading-shape {
  position: absolute;
  background: transparent;
  border: 5px solid;
  box-shadow: 0 0 28px currentColor, inset 0 0 18px rgba(255,255,255,0.06);
  filter: saturate(1.2);
  opacity: 0.9;
}

/* Colors */
.loading-shape.blue { color: rgba(0, 140, 255, 0.95); }
.loading-shape.yellow { color: rgba(255, 214, 0, 0.95); }
.loading-shape.pink { color: rgba(255, 64, 129, 0.95); }
.loading-shape.white { color: rgba(255, 255, 255, 0.95); }
.loading-shape.green { color: rgba(80, 200, 120, 0.95); }
.loading-shape.orange { color: rgba(255, 140, 0, 0.95); }

/* Shapes */
.loading-shape.circle { border-radius: 50%; }
.loading-shape.square { border-radius: 12px; }
.loading-shape.star { clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }

/* Knife shape (long rectangle + rotated) */
.loading-shape.knife { border-radius: 4px; transform: rotate(45deg); }

/* Food shapes approximations via clip-path */
.loading-shape.broccoli { clip-path: ellipse(45% 35% at 50% 40%); }
.loading-shape.carrot { clip-path: polygon(50% 0%, 60% 20%, 55% 100%, 45% 100%, 40% 20%); }
.loading-shape.bread { clip-path: ellipse(48% 40% at 50% 40%); border-radius: 16px; }

/* Instances positions/sizes and animations */
.loading-shape.s1 { width: 70px; height: 70px; top: 12%; left: 10%; animation: floatLoad 10s ease-in-out infinite; }
.loading-shape.s2 { width: 90px; height: 90px; top: 50%; left: 20%; animation: floatLoad 11s ease-in-out infinite -2s; }
.loading-shape.s3 { width: 65px; height: 65px; top: 25%; right: 12%; animation: floatLoad 12s ease-in-out infinite -4s; }
.loading-shape.s4 { width: 120px; height: 12px; top: 70%; right: 20%; animation: floatLoad 9s ease-in-out infinite -1s; }
.loading-shape.s5 { width: 85px; height: 70px; bottom: 18%; left: 35%; animation: floatLoad 13s ease-in-out infinite -3s; }
.loading-shape.s6 { width: 18px; height: 120px; bottom: 28%; right: 35%; animation: floatLoad 10s ease-in-out infinite -5s; }
.loading-shape.s7 { width: 110px; height: 80px; top: 30%; left: 60%; animation: floatLoad 12s ease-in-out infinite -6s; }
.loading-shape.s8 { width: 55px; height: 55px; top: 15%; left: 45%; animation: floatLoad 9s ease-in-out infinite -2.5s; }
.loading-shape.s9 { width: 75px; height: 75px; bottom: 22%; left: 12%; animation: floatLoad 11.5s ease-in-out infinite -4.5s; }
.loading-shape.s10 { width: 70px; height: 70px; top: 65%; left: 75%; animation: floatLoad 10.5s ease-in-out infinite -3.2s; }
.loading-shape.s11 { width: 140px; height: 14px; top: 40%; right: 8%; animation: floatLoad 12.5s ease-in-out infinite -1.7s; }
.loading-shape.s12 { width: 80px; height: 65px; top: 22%; left: 32%; animation: floatLoad 13.5s ease-in-out infinite -5.1s; }
.loading-shape.s13 { width: 18px; height: 140px; bottom: 12%; left: 72%; animation: floatLoad 9.5s ease-in-out infinite -6.1s; }
.loading-shape.s14 { width: 120px; height: 85px; bottom: 8%; right: 12%; animation: floatLoad 14s ease-in-out infinite -3.9s; }

@keyframes floatLoad {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0); opacity: 0.85; }
  25% { transform: translateY(-24px) translateX(18px) rotate(45deg); opacity: 1; }
  50% { transform: translateY(-12px) translateX(-14px) rotate(90deg); opacity: 0.9; }
  75% { transform: translateY(-28px) translateX(10px) rotate(135deg); opacity: 1; }
}

/* previous logo-animation definition replaced above for loading logo */

.loading-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeInUp 0.5s ease forwards 0.2s;
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  animation: fadeInUp 0.5s ease forwards 0.3s;
  opacity: 0;
}

.loading-progress {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  animation: loading 1.0s ease-out forwards;
}

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

@keyframes loading {
  0% { width: 0%; }
  25% { width: 60%; }
  75% { width: 90%; }
  100% { width: 100%; }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  overflow: hidden;
}

.logo-icon img {
  width: 133%;
  height: 133%;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

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

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 600px;
  max-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(26, 26, 26, 0.6) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.5s;
}

.title-line.accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.8s;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.2s;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.5s;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 2s;
  z-index: 10;
}

.scroll-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

.scroll-arrow i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.float-element {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gradient-gold);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  top: 20%;
  left: 10%;
  animation-duration: 6s;
}

.float-2 {
  top: 60%;
  right: 15%;
  animation-duration: 8s;
}

.float-3 {
  bottom: 20%;
  left: 20%;
  animation-duration: 7s;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

/* Section Styles */
section {
  padding: 8rem 0;
  position: relative;
  background: transparent;
  overflow: hidden;
}

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

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Menu Section */
.menu-section {
  background: transparent;
}

.menu-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 2px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-gold);
  border-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.dish-card {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.06) 50%, 
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(30px);
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 380px;
  margin: 0 auto;
}

.dish-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 175, 55, 0.6) 20%, 
    rgba(247, 233, 142, 0.8) 50%, 
    rgba(212, 175, 55, 0.6) 80%, 
    transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.dish-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(212, 175, 55, 0.1) 90deg,
    transparent 180deg,
    rgba(212, 175, 55, 0.1) 270deg,
    transparent 360deg
  );
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.dish-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.dish-card:hover::before {
  opacity: 1;
}

.dish-card:hover::after {
  opacity: 1;
  animation: rotate 3s linear infinite;
}

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

.dish-image-container {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.1), 
    rgba(26, 26, 26, 0.3));
}

.dish-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
  filter: brightness(0.85) contrast(1.1);
}

.dish-card:hover .dish-image {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.2);
}

.no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.15) 0%, 
    rgba(247, 233, 142, 0.08) 50%,
    rgba(212, 175, 55, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 2.2rem;
  position: relative;
}

.no-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.dish-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(10, 10, 10, 0.6) 50%,
    rgba(26, 26, 26, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.dish-card:hover .dish-overlay {
  opacity: 1;
}

.dish-actions {
  display: flex;
  gap: 1rem;
}

.action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(15px);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
  border-radius: 50%;
  transition: var(--transition);
  transform: translate(-50%, -50%);
}

.action-btn:hover {
  background: linear-gradient(135deg, var(--accent-color), #f7e98e);
  color: var(--primary-color);
  transform: scale(1.1);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.action-btn:hover::before {
  width: 100%;
  height: 100%;
}

.dish-content {
  padding: 1.8rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dish-price {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), #f7e98e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  position: relative;
}

.dish-price::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  opacity: 0.5;
}

.dish-price span {
  font-size: 0.9rem;
  opacity: 0.9;
  color: #fff
}

.dish-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dish-category {
  font-size: 0.8rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.15), 
    rgba(212, 175, 55, 0.08));
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
}

.dish-rating {
  color: var(--accent-color);
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.dish-rating i {
  margin: 0 1px;
  transition: var(--transition-fast);
}

.dish-card:hover .dish-rating i {
  transform: scale(1.1);
}

/* Story Section */
.story-section {
  padding: 6rem 0;
  background: transparent;
  overflow: hidden;
}

.story-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  overflow: hidden;
  background: none;
}

.story-background-image {
  display: none;
}

.story-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.animated-boxes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.neon-box {
  position: absolute;
  background: transparent;
  border: 3px solid;
  border-radius: 12px;
  animation: floatRotate 8s ease-in-out infinite;
}

/* Story Section - Premium Neon Shapes */
.box-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  border-color: #ff00ff;
  box-shadow: 
    0 0 25px #ff00ff,
    inset 0 0 20px rgba(255, 0, 255, 0.3);
  animation-delay: 0s;
  animation-duration: 6s;
}

.box-2 {
  width: 60px;
  height: 60px;
  top: 25%;
  right: 15%;
  border-color: #00ff88;
  box-shadow: 
    0 0 30px #00ff88,
    inset 0 0 25px rgba(0, 255, 136, 0.3);
  animation-delay: -1s;
  animation-duration: 8s;
}

.box-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  border-color: #8a2be2;
  box-shadow: 
    0 0 35px #8a2be2,
    inset 0 0 30px rgba(138, 43, 226, 0.3);
  animation-delay: -2s;
  animation-duration: 7s;
}

.box-4 {
  width: 70px;
  height: 70px;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  border-color: #00ffff;
  box-shadow: 
    0 0 28px #00ffff,
    inset 0 0 22px rgba(0, 255, 255, 0.3);
  animation-delay: -3s;
  animation-duration: 9s;
}

.box-5 {
  width: 90px;
  height: 90px;
  bottom: 15%;
  right: 25%;
  border-color: #ff1493;
  box-shadow: 
    0 0 32px #ff1493,
    inset 0 0 28px rgba(255, 20, 147, 0.3);
  animation-delay: -4s;
  animation-duration: 5s;
}

.box-6 {
  width: 50px;
  height: 50px;
  top: 10%;
  left: 60%;
  border-color: #adff2f;
  box-shadow: 
    0 0 22px #adff2f,
    inset 0 0 18px rgba(173, 255, 47, 0.3);
  animation-delay: -5s;
  animation-duration: 10s;
}

@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(180deg) scale(0.9);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-25px) rotate(270deg) scale(1.2);
    opacity: 1;
  }
}

.story-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
  z-index: 10;
  position: relative;
}

.story-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-content .container {
  color: var(--text-primary);
}

.story-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.story-intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  z-index: 10;
  position: relative;
}

.story-tagline {
  font-size: 1.2rem;
  color: #e8e8e8;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-align: center;
  z-index: 10;
  position: relative;
}

.story-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.story-body p {
  margin-bottom: 2rem;
}

.story-highlights {
  margin: 4rem 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 2rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.story-conclusion {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: var(--border-radius);
}

/* Location Section */
.location-section {
  background: transparent;
}

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

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.info-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.location-map {
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(30px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.8) contrast(1.2);
  transition: var(--transition);
}

.location-map:hover iframe {
  filter: brightness(0.9) contrast(1.3);
}

/* Awards Section */
.awards-section {
  background: transparent;
  color: var(--text-primary);
}

.awards-section .section-title {
  color: var(--text-primary);
}

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

.award-card {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.award-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  flex-shrink: 0;
}

.award-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.award-content p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

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

.awards-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.award-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.awards-image:hover .image-overlay {
  opacity: 1;
}

.awards-image:hover .award-image {
  transform: scale(1.1);
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.play-button:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Chefs & Certificates Section */
.chefs-section {
  background: transparent;
  color: var(--text-primary);
}

.chefs-section .section-title {
  color: var(--text-primary);
}

.chefs-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* Chef Profile - Unified Design */
.chef-profile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(30px);
  transition: var(--transition);
}

.chef-profile:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chef-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 175, 55, 0.6) 20%, 
    rgba(247, 233, 142, 0.8) 50%, 
    rgba(212, 175, 55, 0.6) 80%, 
    transparent 100%);
  opacity: 1;
}

/* Chef Info Text Colors */
.chef-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.chef-title {
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chef-experience {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

/* Chef Stats - Unified Design */
.chef-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.chef-stats .stat-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}

.chef-stats .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.chef-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Certificates Grid */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Certificate Cards - Update for dark theme */
.certificate-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.certificate-card:hover::before {
  transform: scaleY(1);
}

.certificate-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #f7e98e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  position: relative;
}

.certificate-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.certificate-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.certificate-issuer {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.certificate-year {
  color: var(--text-secondary);
  font-size: 0.9rem;
  opacity: 0.8;
}

.certificate-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* Responsive Design for Chefs Section */
@media (max-width: 1024px) {
  .chefs-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .chef-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .chef-image-container {
    width: 150px;
    height: 150px;
  }
  
  .chef-name {
    font-size: 1.6rem;
  }
  
  .certificate-card {
    padding: 1.5rem;
  }
}

/* Gallery Section */
.gallery-section {
  background: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-content {
  text-align: center;
  color: var(--text-primary);
}

.gallery-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-content p {
  color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
  background: transparent;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  background: var(--glass-bg);
  border: none;
  border-radius: var(--border-radius);
  padding: 3rem;
  backdrop-filter: blur(20px);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--border-radius-small);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--primary-color);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.footer-social a {
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.footer-social a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .story-hero {
    height: 35vh;
    min-height: 250px;
  }
  
  .split-image-section {
    height: 45vh;
    min-height: 350px;
  }
  
  .location-content,
  .chefs-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  
  .gallery-item.large {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .story-hero {
    height: 30vh;
    min-height: 200px;
  }
  
  .split-image-section {
    height: auto;
    min-height: auto;
  }
  
  .split-container {
    grid-template-columns: 1fr;
    grid-template-rows: 35vh 35vh;
  }
  
  .chef-image-container {
    width: 120px;
    height: 120px;
  }
  
  .dish-image-container {
    height: 150px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .menu-container {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .chef-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .certificate-card {
    padding: 1.5rem;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
  }
  
  .split-content h3 {
    font-size: 1.8rem;
  }
  
  .split-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .story-hero {
    height: 25vh;
    min-height: 180px;
  }
  
  .split-container {
    grid-template-rows: 30vh 30vh;
  }
  
  .dish-content,
  .contact-form {
    padding: 1.5rem;
  }
  
  .dish-image-container {
    height: 120px;
  }
  
  .chef-profile {
    padding: 1.5rem;
  }
  
  .chef-image-container {
    width: 100px;
    height: 100px;
  }
  
  .gallery-grid {
    grid-template-rows: repeat(3, 150px);
  }
  
  .split-content h3 {
    font-size: 1.5rem;
  }
  
  .split-content p {
    font-size: 0.9rem;
  }
}

/* Split Image Section */
.split-image-section {
  padding: 0;
  position: relative;
  height: 50vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.split-left,
.split-right {
  position: relative;
  overflow: hidden;
}

.split-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.split-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
  filter: brightness(0.8) contrast(1.1);
  transform: scale(1.02);
}

.split-left:hover .split-image,
.split-right:hover .split-image {
  transform: scale(1.08);
  filter: brightness(0.9) contrast(1.2);
}

.split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: var(--transition);
}

.split-left:hover .split-overlay {
  background: linear-gradient(
    135deg,
    rgba(100, 150, 200, 0.4) 0%,
    rgba(50, 100, 150, 0.2) 50%,
    rgba(0, 50, 100, 0.6) 100%
  );
  opacity: 0.9;
}

.split-right:hover .split-overlay {
  background: linear-gradient(
    135deg,
    rgba(200, 50, 50, 0.4) 0%,
    rgba(150, 30, 30, 0.2) 50%,
    rgba(100, 10, 10, 0.6) 100%
  );
  opacity: 0.9;
}

.split-content {
  text-align: center;
  color: var(--text-primary);
  transform: translateY(20px);
  transition: var(--transition);
}

.split-left:hover .split-content,
.split-right:hover .split-content {
  transform: translateY(0);
}

.split-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.split-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Split Section Responsive */
@media (max-width: 768px) {
  .split-image-section {
    height: auto;
  }
  
  .split-container {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh 50vh;
  }
  
  .split-content h3 {
    font-size: 2rem;
  }
  
  .split-content p {
    font-size: 1rem;
  }
} 

/* Global Animated Background System */
.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-shape {
  position: absolute;
  background: transparent;
  border: 3px solid;
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
}

/* Hero Section - Circles */
.hero .floating-shape {
  border-radius: 50%;
  animation: floatCircle 8s ease-in-out infinite;
}

.hero .shape-1 {
  width: 70px;
  height: 70px;
  top: 20%;
  left: 15%;
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 
    0 0 30px rgba(212, 175, 55, 0.6),
    inset 0 0 20px rgba(212, 175, 55, 0.2);
  animation-delay: 0s;
}

.hero .shape-2 {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 20%;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 0 35px rgba(255, 255, 255, 0.5),
    inset 0 0 25px rgba(255, 255, 255, 0.2);
  animation-delay: -2s;
}

.hero .shape-3 {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 70%;
  border-color: rgba(212, 175, 55, 1);
  box-shadow: 
    0 0 25px rgba(212, 175, 55, 0.7),
    inset 0 0 15px rgba(212, 175, 55, 0.3);
  animation-delay: -4s;
}

/* Menu Section - Squares */
.menu-section .floating-shape {
  border-radius: 12px;
  animation: floatSquare 7s ease-in-out infinite;
}

.menu-section .shape-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  border-color: rgba(139, 69, 19, 0.8);
  box-shadow: 
    0 0 28px rgba(139, 69, 19, 0.6),
    inset 0 0 20px rgba(139, 69, 19, 0.2);
  animation-delay: 0s;
}

.menu-section .shape-2 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 15%;
  border-color: rgba(0, 128, 0, 0.8);
  box-shadow: 
    0 0 32px rgba(0, 128, 0, 0.6),
    inset 0 0 22px rgba(0, 128, 0, 0.2);
  animation-delay: -1.5s;
}

.menu-section .shape-3 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 60%;
  border-color: rgba(255, 165, 0, 0.8);
  box-shadow: 
    0 0 30px rgba(255, 165, 0, 0.6),
    inset 0 0 20px rgba(255, 165, 0, 0.2);
  animation-delay: -3s;
}

.menu-section .shape-4 {
  width: 55px;
  height: 55px;
  top: 30%;
  left: 40%;
  border-color: rgba(255, 20, 147, 0.8);
  box-shadow: 
    0 0 26px rgba(255, 20, 147, 0.6),
    inset 0 0 16px rgba(255, 20, 147, 0.2);
  animation-delay: -4.5s;
}

/* Location Section - Diamonds */
.location-section .floating-shape {
  border-radius: 8px;
  transform: rotate(45deg);
  animation: floatDiamond 9s ease-in-out infinite;
}

.location-section .shape-1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 20%;
  border-color: rgba(0, 191, 255, 0.8);
  box-shadow: 
    0 0 30px rgba(0, 191, 255, 0.6),
    inset 0 0 20px rgba(0, 191, 255, 0.2);
  animation-delay: 0s;
}

.location-section .shape-2 {
  width: 45px;
  height: 45px;
  top: 70%;
  right: 25%;
  border-color: rgba(50, 205, 50, 0.8);
  box-shadow: 
    0 0 25px rgba(50, 205, 50, 0.6),
    inset 0 0 15px rgba(50, 205, 50, 0.2);
  animation-delay: -3s;
}

.location-section .shape-3 {
  width: 70px;
  height: 70px;
  top: 40%;
  left: 70%;
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 
    0 0 32px rgba(255, 215, 0, 0.6),
    inset 0 0 22px rgba(255, 215, 0, 0.2);
  animation-delay: -6s;
}

/* Chefs Section - Hexagons */
.chefs-section .floating-shape {
  border-radius: 25px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: floatHexagon 10s ease-in-out infinite;
}

.chefs-section .shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  border-color: rgba(138, 43, 226, 0.8);
  box-shadow: 
    0 0 35px rgba(138, 43, 226, 0.6),
    inset 0 0 25px rgba(138, 43, 226, 0.2);
  animation-delay: 0s;
}

.chefs-section .shape-2 {
  width: 65px;
  height: 65px;
  top: 60%;
  right: 15%;
  border-color: rgba(255, 69, 0, 0.8);
  box-shadow: 
    0 0 30px rgba(255, 69, 0, 0.6),
    inset 0 0 20px rgba(255, 69, 0, 0.2);
  animation-delay: -3.5s;
}

/* Gallery Section - Stars */
.gallery-section .floating-shape {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: floatStar 12s ease-in-out infinite;
}

.gallery-section .shape-1 {
  width: 70px;
  height: 70px;
  top: 25%;
  left: 15%;
  border-color: rgba(255, 215, 0, 0.9);
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.7),
    inset 0 0 20px rgba(255, 215, 0, 0.3);
  animation-delay: 0s;
}

.gallery-section .shape-2 {
  width: 55px;
  height: 55px;
  top: 65%;
  right: 20%;
  border-color: rgba(255, 20, 147, 0.9);
  box-shadow: 
    0 0 28px rgba(255, 20, 147, 0.7),
    inset 0 0 18px rgba(255, 20, 147, 0.3);
  animation-delay: -4s;
}

/* Contact Section - Spirals */
.contact-section .floating-shape {
  border-radius: 50%;
  animation: floatSpiral 14s linear infinite;
}

.contact-section .shape-1 {
  width: 90px;
  height: 90px;
  top: 30%;
  left: 20%;
  border-color: rgba(0, 255, 127, 0.8);
  box-shadow: 
    0 0 35px rgba(0, 255, 127, 0.6),
    inset 0 0 25px rgba(0, 255, 127, 0.2);
  animation-delay: 0s;
}

.contact-section .shape-2 {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 30%;
  border-color: rgba(255, 105, 180, 0.8);
  box-shadow: 
    0 0 30px rgba(255, 105, 180, 0.6),
    inset 0 0 20px rgba(255, 105, 180, 0.2);
  animation-delay: -7s;
}

/* Animation Keyframes - Optimized */
@keyframes floatCircle {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-25px) translateX(15px) scale(1.15);
    opacity: 1;
  }
  50% {
    transform: translateY(-12px) translateX(-12px) scale(0.9);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
    opacity: 0.95;
  }
}

@keyframes floatSquare {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-20px) rotate(90deg) scale(1.2);
    opacity: 0.9;
  }
  66% {
    transform: translateY(-8px) rotate(180deg) scale(0.95);
    opacity: 1;
  }
}

@keyframes floatDiamond {
  0%, 100% {
    transform: translateY(0px) rotate(45deg) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translateY(-28px) rotate(225deg) scale(1.25);
    opacity: 1;
  }
}

@keyframes floatHexagon {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-18px) translateX(25px) rotate(72deg) scale(1.15);
    opacity: 0.95;
  }
  50% {
    transform: translateY(-32px) translateX(-18px) rotate(144deg) scale(0.9);
    opacity: 1;
  }
  75% {
    transform: translateY(-8px) translateX(12px) rotate(216deg) scale(1.08);
    opacity: 0.85;
  }
}

@keyframes floatStar {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.85;
  }
  33% {
    transform: translateY(-22px) rotate(120deg) scale(1.2);
    opacity: 1;
  }
  66% {
    transform: translateY(-10px) rotate(240deg) scale(0.95);
    opacity: 0.7;
  }
}

@keyframes floatSpiral {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-35px) translateX(35px) rotate(90deg) scale(1.3);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-20px) translateX(-25px) rotate(180deg) scale(0.8);
    opacity: 1;
  }
  75% {
    transform: translateY(-45px) translateX(20px) rotate(270deg) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(360deg) scale(1);
    opacity: 0.6;
  }
}

/* Section Positioning */
.hero,
.menu-section, 
.location-section,
.chefs-section,
.gallery-section,
.contact-section {
  position: relative;
  overflow: hidden;
}

.hero .hero-content,
.menu-section .section-header,
.menu-section .menu-filter,
.menu-section .menu-container,
.location-section .section-header,
.location-section .location-content,
.chefs-section .section-header,
.chefs-section .chefs-content,
.gallery-section .section-header,
.gallery-section .gallery-grid,
.contact-section .section-header,
.contact-section .contact-content {
  position: relative;
  z-index: 2;
}

/* Container fixes */
.location-section,
.chefs-section,
.gallery-section,
.contact-section {
  padding: 6rem 0;
}

.location-section .location-content,
.chefs-section .chefs-content,
.gallery-section .gallery-grid,
.contact-section .contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
  z-index: 10;
  position: relative;
}

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

.story-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-content .container {
  color: var(--text-primary);
}

.story-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.story-intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    #ff4444 0%,
    #ff6666 25%,
    #ff2222 50%,
    #ff5555 75%,
    #ff3333 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowGlow 4s ease-in-out infinite;
  text-align: center;
  text-shadow: 
    0 0 30px rgba(255, 68, 68, 0.6),
    0 0 60px rgba(255, 34, 34, 0.4),
    0 0 90px rgba(255, 51, 51, 0.3);
  position: relative;
  line-height: 1.2;
}

.story-intro h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.2) 0%,
    rgba(255, 102, 102, 0.2) 25%,
    rgba(255, 34, 34, 0.2) 50%,
    rgba(255, 85, 85, 0.2) 75%,
    rgba(255, 51, 51, 0.2) 100%
  );
  background-size: 300% 300%;
  border-radius: 15px;
  filter: blur(20px);
  opacity: 0.6;
  animation: rainbowGlow 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes rainbowGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 200% 50%;
  }
  75% {
    background-position: 100% 0%;
  }
}

.story-tagline {
  font-size: 1.2rem;
  color: #e8e8e8;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-align: center;
  z-index: 10;
  position: relative;
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(255, 85, 85, 0.8),
      0 0 40px rgba(255, 85, 85, 0.5),
      0 0 60px rgba(255, 85, 85, 0.3);
    opacity: 0.9;
  }
  50% {
    text-shadow: 
      0 0 30px rgba(255, 85, 85, 1),
      0 0 60px rgba(255, 85, 85, 0.7),
      0 0 90px rgba(255, 85, 85, 0.5);
    opacity: 1;
  }
}

.story-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.story-body p {
  margin-bottom: 2rem;
}

.story-highlights {
  margin: 4rem 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 2rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.story-conclusion {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: var(--border-radius);
}

/* Unified Content Styling */
.location-content,
.chefs-content, 
.contact-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Info Cards - Update for unified design */
.info-card,
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  backdrop-filter: blur(30px);
  transition: var(--transition);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-card:hover,
.contact-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Gallery Item Updates */
.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Contact Form Updates */
.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  padding: 3rem;
  backdrop-filter: blur(30px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Form Inputs - Unified Styling */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-small);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Location Section */
.gallery-item.large {
  grid-row: span 2;
}

/* Chef Image Container - Add back */
.chef-image-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(212, 175, 55, 0.2);
}

.chef-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
  filter: brightness(0.9);
}

.chef-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.chef-image-container:hover .chef-overlay {
  opacity: 1;
}

.chef-image-container:hover .chef-image {
  transform: scale(1.1);
  filter: brightness(1);
}

.chef-badge {
  background: var(--gradient-gold);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.chef-info {
  text-align: center;
}

/* Chef Stats Grid - Add back */
.chef-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Certificate Content Text Colors - Fix missing styles */
.certificate-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.certificate-issuer {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.certificate-year {
  color: var(--text-secondary);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Location Content Grid */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Contact Content Grid */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Address Link Styling */
.address-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 1rem;
  border-radius: var(--border-radius-small);
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  margin: 0.5rem 0;
}

.address-link:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.address-link i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Delivery Platforms Styling */
.delivery-platforms {
  margin-top: 2rem;
}

.delivery-platforms p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-small);
  transition: var(--transition);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-link i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Yemeksepeti - Orange theme */
.platform-link.yemeksepeti {
  background: linear-gradient(135deg, rgba(255, 95, 39, 0.15), rgba(255, 95, 39, 0.08));
  color: #ff5f27;
  border-color: rgba(255, 95, 39, 0.3);
}

.platform-link.yemeksepeti:hover {
  background: linear-gradient(135deg, rgba(255, 95, 39, 0.25), rgba(255, 95, 39, 0.15));
  border-color: rgba(255, 95, 39, 0.6);
  color: #ff5f27;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 95, 39, 0.3);
}

/* Getir - Purple theme */
.platform-link.getir {
  background: linear-gradient(135deg, rgba(93, 62, 188, 0.15), rgba(93, 62, 188, 0.08));
  color: #5d3ebc;
  border-color: rgba(93, 62, 188, 0.3);
}

.platform-link.getir:hover {
  background: linear-gradient(135deg, rgba(93, 62, 188, 0.25), rgba(93, 62, 188, 0.15));
  border-color: rgba(93, 62, 188, 0.6);
  color: #5d3ebc;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(93, 62, 188, 0.3);
}

/* Trendyol - Red theme */
.platform-link.trendyol {
  background: linear-gradient(135deg, rgba(245, 101, 101, 0.15), rgba(245, 101, 101, 0.08));
  color: #f56565;
  border-color: rgba(245, 101, 101, 0.3);
}

.platform-link.trendyol:hover {
  background: linear-gradient(135deg, rgba(245, 101, 101, 0.25), rgba(245, 101, 101, 0.15));
  border-color: rgba(245, 101, 101, 0.6);
  color: #f56565;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(245, 101, 101, 0.3);
}

/* Migros - Green theme */
.platform-link.migros {
  background: linear-gradient(135deg, rgba(56, 178, 172, 0.15), rgba(56, 178, 172, 0.08));
  color: #38b2ac;
  border-color: rgba(56, 178, 172, 0.3);
}

.platform-link.migros:hover {
  background: linear-gradient(135deg, rgba(56, 178, 172, 0.25), rgba(56, 178, 172, 0.15));
  border-color: rgba(56, 178, 172, 0.6);
  color: #38b2ac;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(56, 178, 172, 0.3);
}

.visit-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Responsive Design for Platform Links */
@media (max-width: 768px) {
  .platform-links {
    grid-template-columns: 1fr;
  }
  
  .platform-link {
  justify-content: center;
    padding: 1.2rem;
  }
} 

/* mobile-gap-fix.css - Resim ve açıklama arasındaki boşluğu kaldır */

@media (max-width: 768px) {
  .dish-card {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  .dish-image-container {
    margin-bottom: 0 !important;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
  }
  
  .dish-image {
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
  }
  
  .dish-content {
    margin-top: 0 !important;
    border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
    border-top: none !important;
  }
}

@media (max-width: 480px) {
  .dish-card {
    padding: 0 !important;
  }
}