/* 
   YangGuoFu Leipzig - Brand Stylesheet (Vibrant Light Theme)
   Designed for premium visual excellence, mobile responsiveness, and high speed.
   Hosted on Strato.
*/

/* --- 1. Fonts & Global Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;800;900&display=swap');

/* --- 2. Custom CSS Properties (Brand Design System - Light Theme) --- */
:root {
  /* Brand Colors */
  --color-primary: hsl(24, 100%, 50%);         /* Official Vibrant YGF Orange (#FF6600) */
  --color-primary-rgb: 255, 102, 0;
  --color-primary-hover: hsl(24, 100%, 43%);   /* Richer dark orange */
  --color-secondary: hsl(190, 40%, 8%);        /* Deep Midnight Teal/Black for headers and text contrast */
  --color-secondary-rgb: 10, 18, 20;
  --color-accent: hsl(43, 85%, 55%);           /* Premium Culinary Warm Gold (#E8B84B) */
  
  /* Light Theme Specifics */
  --color-background-white: hsl(0, 0%, 100%);  /* Pure White for core sections */
  --color-background-light: hsl(30, 20%, 97%); /* Warm linen-beige for alternating sections */
  --color-card-bg: hsl(0, 0%, 100%);           /* White cards */
  --color-border: hsl(30, 10%, 90%);           /* Very light warm border */
  --color-border-hover: hsl(24, 100%, 85%);    /* Soft orange highlight border */
  
  /* Typography Colors */
  --color-text-dark: hsl(190, 40%, 8%);        /* Deep charcoal for body headers */
  --color-text-body: hsl(0, 0%, 25%);          /* Soft black charcoal for body text readability */
  --color-text-muted: hsl(0, 0%, 50%);         /* Readable grey */
  --color-text-light: hsl(0, 0%, 98%);         /* White text for overlays */

  /* Alert States */
  --color-success: hsl(145, 63%, 42%);         /* Vibrant pulsing green */
  --color-success-bg: hsl(145, 63%, 95%);
  --color-error: hsl(354, 70%, 54%);           /* Warm red */

  /* Typography Sizes */
  --font-family-title: 'Outfit', -apple-system, sans-serif;
  --font-family-body: 'Inter', -apple-system, sans-serif;
  
  --font-size-h1: clamp(2.5rem, 5vw, 4.5rem);
  --font-size-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --font-size-h3: clamp(1.3rem, 2.5vw, 1.8rem);
  --font-size-body: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  --font-size-small: clamp(0.8rem, 0.8vw + 0.4rem, 0.95rem);

  /* Layout & Spacing */
  --container-width: 1280px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-premium: 0 15px 35px rgba(10, 18, 20, 0.05);
  --shadow-glow: 0 0 30px hsla(24, 100%, 50%, 0.2);
}

/* --- 3. Reset & Base Layout --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family-body);
  background-color: var(--color-background-white);
  color: var(--color-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-background-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-background-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

/* --- 4. Reusable Layout Utilities --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-text-dark) 30%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-orange {
  color: var(--color-primary);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-family: var(--font-family-title);
  font-size: var(--font-size-h2);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: var(--font-size-body);
  font-weight: 400;
}

/* --- 5. Interactive Buttons & Badges --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: var(--font-family-title);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-accent));
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px hsla(24, 100%, 50%, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

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

/* Base Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
}

.section-header .badge {
  align-self: center;
}

.badge-primary {
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(255, 102, 0, 0.25);
}

/* --- 6. Sticky Premium Glassmorphic Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(10, 18, 20, 0.05);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(10, 18, 20, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the navigation links! */
  height: 85px; /* Reduced from 110px to make it less thick */
  transition: var(--transition-smooth);
  position: relative;
}

.nav-logo-link.mobile-logo {
  display: none !important; /* Hide mobile logo on desktop with high specificity */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  list-style: none;
}

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

.nav-logo-link {
  display: flex;
  align-items: center;
  padding: 0;
}

.nav-logo {
  height: 55px; /* Reduced from 70px to provide vertical breathing room */
  width: 55px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

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

.nav-social-icon {
  width: 26px;
  height: 26px;
  transition: var(--transition-smooth);
}

.nav-social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  color: var(--color-text-dark);
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.nav-social-item a:hover {
  opacity: 1;
  color: var(--color-primary);
  transform: translateY(-2px);
}

.nav-item.nav-social-item a::after {
  display: none !important;
}

.nav-item a {
  font-family: var(--font-family-title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--color-text-dark);
  opacity: 0.8;
  position: relative;
  padding: 10px 0;
}

.nav-item a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.nav-item a:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-text-dark);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* --- 7. Hero Section with Autoplay Video --- */
.hero {
  position: relative;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 85px;
}

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

.hero-background img,
.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Locks the top of the video and its logo to prevent cropping! */
  position: absolute;
  top: 0;
  left: 0;
}

.hero-background video {
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 20, 0.45) 0%,
    rgba(10, 18, 20, 0.75) 60%,
    rgba(255, 255, 255, 1) 100%
  );
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 10;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  padding: var(--spacing-md);
}

.hero h1 {
  font-family: var(--font-family-title);
  font-size: var(--font-size-h1);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--color-text-light);
  max-width: 720px;
  margin: 0 auto var(--spacing-lg) auto;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  border-color: var(--color-text-light);
  color: var(--color-text-light);
}

.hero-actions .btn-outline:hover {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
  border-color: var(--color-text-light);
}

/* --- 8. Concept Section ("So funktioniert's") --- */
.concept-section {
  background-color: var(--color-background-white);
  position: relative;
  z-index: 10;
}

/* Concept instruction image container */
.instruction-image-container {
  max-width: 950px;
  margin: 0 auto var(--spacing-lg) auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 18, 20, 0.08);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.instruction-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.instruction-image-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(10, 18, 20, 0.12);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.concept-card {
  background-color: var(--color-background-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-lg) var(--spacing-md);
  text-align: center;
  position: relative;
  transition: var(--transition-bounce);
  overflow: hidden;
}

.concept-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
  background-color: var(--color-background-white);
  box-shadow: 0 20px 40px rgba(10, 18, 20, 0.06);
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.concept-num {
  font-family: var(--font-family-title);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 102, 0, 0.1);
  margin-bottom: var(--spacing-xs);
  transition: var(--transition-smooth);
}

.concept-card:hover .concept-num {
  color: rgba(255, 102, 0, 0.25);
  transform: scale(1.1);
}

.concept-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 102, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md) auto;
  color: var(--color-primary);
  font-size: 2.2rem;
  transition: var(--transition-smooth);
}

.concept-card:hover .concept-icon-box {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-glow);
}

.concept-card h3 {
  font-family: var(--font-family-title);
  font-size: var(--font-size-h3);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.5px;
}

.concept-card p {
  color: var(--color-text-body);
  font-size: 0.975rem;
  line-height: 1.55;
}

/* --- 9. Interactive Broth Selector Section --- */
.broth-section {
  background-color: var(--color-background-light);
  position: relative;
}

.broth-wrapper {
  max-width: 1050px;
  margin: 0 auto;
}

.broth-tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: var(--spacing-sm);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.broth-tab {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 14px 12px;
  font-family: var(--font-family-title);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  position: relative;
  transition: var(--transition-smooth);
}

.broth-tab:hover {
  color: var(--color-text-dark);
}

.broth-tab.active {
  color: var(--color-primary);
}

.broth-tab::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.broth-tab.active::after {
  width: 100%;
}

.broth-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
  background-color: var(--color-background-white);
}

.broth-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.broth-content-panel {
  flex: 0 0 100%;
  width: 100%;
  display: grid !important; /* Ensure grid is used inside flex track */
  grid-template-columns: 1.15fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  background-color: var(--color-background-white);
  padding: var(--spacing-lg);
  box-sizing: border-box;
}

/* Glassmorphic Floating Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(10, 18, 20, 0.08);
}

.slider-arrow:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-arrow.prev {
  left: 24px;
}

.slider-arrow.next {
  right: 24px;
}

/* Premium Slider Pagination Dots */
.broth-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: var(--spacing-md);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-bounce);
}

.slider-dot:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.2);
}

.slider-dot.active {
  background-color: var(--color-primary);
  width: 26px;
  border-radius: 10px;
  transform: scale(1.1);
}

/* Centered & contain-fit Broth Images: guarantees no crop and equal sizing */
.broth-gallery {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 18, 20, 0.04);
  height: 450px;
  aspect-ratio: 0.62; /* Fits all 5 vertical images perfectly! */
  margin: 0 auto;
  border: 1px solid var(--color-border);
  background-color: var(--color-background-light); /* Off-white linen structure to host shapes */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm);
  justify-self: center; /* Ensures perfect grid centering! */
}

.broth-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Full image visible, completely uncropped! */
  transition: var(--transition-smooth);
}

.broth-content-panel:hover .broth-gallery img {
  transform: scale(1.04);
}

.broth-spice-level {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
  z-index: 10;
}

.chili-icon {
  color: var(--color-primary);
}

.broth-details h3 {
  font-family: var(--font-family-title);
  font-size: calc(var(--font-size-h3) * 1.25);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-xs);
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.broth-subtitle {
  color: var(--color-accent);
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.broth-description {
  color: var(--color-text-body);
  font-size: 1.05rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.broth-meta {
  border-top: 1px solid var(--color-border);
  padding-top: var(--spacing-md);
}

.meta-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 8px;
  gap: 16px;
}

.meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.meta-label {
  color: var(--color-text-muted);
  font-weight: 600;
  flex-shrink: 0;
  max-width: 50%;
}

.meta-value {
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: right;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  flex-grow: 1;
  min-width: 0;
}

/* --- 10. Split Layout Grid: Location & Openings --- */
.location-section {
  background-color: var(--color-background-white);
}

.location-section.section-padding {
  padding-bottom: var(--spacing-lg); /* Reduce bottom padding from XL to LG */
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-lg);
  align-items: stretch; /* Stretch columns to match heights perfectly! */
}

/* Interactive Card Base */
.location-card {
  background-color: var(--color-background-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-premium);
}

.location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-open {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-closed {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
}

.status-open .status-indicator-dot {
  animation: pulseGreen 1.5s infinite;
}

.location-title h3 {
  font-family: var(--font-family-title);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
}

.location-address {
  font-size: 1.1rem;
  color: var(--color-text-body);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-icon {
  color: var(--color-primary);
}

/* Custom Opening Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--spacing-md);
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}

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

.hours-table td {
  padding: 18px 12px;
  font-size: 1.05rem;
}

.hours-day {
  font-weight: 700;
  color: var(--color-text-dark);
  width: 40%;
}

.hours-time {
  text-align: right;
  color: var(--color-text-body);
  font-weight: 500;
  white-space: nowrap;
}

/* Highlight Current Day/Row */
.hours-table tr.current-day {
  background-color: var(--color-background-white);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  outline: 1px solid rgba(255, 102, 0, 0.2);
}

.hours-table tr.current-day .hours-day {
  color: var(--color-primary);
}

.hours-table tr.current-day .hours-time {
  color: var(--color-text-dark);
  font-weight: 700;
}

.location-actions {
  margin-top: var(--spacing-md);
}

.map-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
  height: 100%;
  min-height: 400px; /* Premium default height, stretches on desktop to match location card */
}

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

/* --- 11. Minimalist Food Showcase Gallery --- */
.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
}

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

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

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(10, 18, 20, 0.85) 0%, transparent 100%);
  color: var(--color-text-light);
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

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

.gallery-item-caption h4 {
  font-family: var(--font-family-title);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- 12. Impressum & Datenschutz Static Styles --- */
.legal-page {
  padding: 135px 0 var(--spacing-xl) 0;
  background-color: var(--color-background-light);
  min-height: 80vh;
}

.legal-container {
  max-width: 850px;
  margin: 0 auto;
  background-color: var(--color-background-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-premium);
  color: var(--color-text-body);
}

.legal-container h1,
.legal-container h2,
.legal-container h3,
.legal-container h4 {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.legal-container h1 {
  font-family: var(--font-family-title);
  font-size: clamp(1.8rem, 6vw, 3rem); /* Safe fluid sizing on mobile */
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--spacing-sm);
}

.legal-container h2 {
  font-family: var(--font-family-title);
  font-size: clamp(1.2rem, 4.5vw, 1.4rem); /* Safe fluid sizing on mobile */
  font-weight: 800;
  margin: var(--spacing-md) 0 var(--spacing-sm) 0;
  text-transform: uppercase;
  color: var(--color-primary);
}

.legal-container p {
  color: var(--color-text-body);
  margin-bottom: var(--spacing-md);
  font-size: 1.025rem;
  line-height: 1.65;
}

.legal-container ul {
  list-style: none;
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-sm);
}

.legal-container li {
  color: var(--color-text-body);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.legal-container li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.legal-container p,
.legal-container li {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.legal-container a {
  word-wrap: break-word;
  word-break: break-all; /* Forces long URLs to wrap elegantly anywhere */
  overflow-wrap: break-word;
}

/* --- 13. Premium Footer --- */
.footer {
  background-color: var(--color-background-white);
  padding: 0 0 var(--spacing-lg) 0;
  color: var(--color-text-body);
}

.footer-grid {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-logo {
  height: auto;
  max-height: 120px; /* Made larger! */
  width: auto;
  max-width: 220px;  /* Made larger! */
  object-fit: contain;
  align-self: center;
}

.footer-brand p {
  color: var(--color-text-muted);
  max-width: 380px;
  font-size: 0.95rem;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-icon {
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  gap: var(--spacing-md);
  justify-content: flex-end;
  list-style: none;
}

.footer-nav-link a {
  font-size: 0.95rem;
  font-family: var(--font-family-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
}

.footer-nav-link a:hover {
  color: var(--color-primary);
}

.footer-copyright {
  border-top: 1px solid var(--color-border);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.copyright-links {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.copyright-links a {
  color: var(--color-text-muted);
}

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

/* --- 14. Custom Animations --- */
@keyframes slowZoom {
  0% { transform: scale(1.01); }
  100% { transform: scale(1.05); }
}

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

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

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* --- 15. Responsive Styling (Media Queries) --- */
@media (max-width: 1024px) {
  .concept-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .broth-content-panel {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md); /* Reduced padding on tablet/mobile to prevent breakouts */
  }
  
  .broth-gallery {
    height: 300px;
    justify-self: center; /* Perfect grid centering on mobile/tablet */
  }

  .location-card {
    padding: var(--spacing-md); /* Reduced padding on tablet/mobile to prevent breakouts */
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .gallery-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm); /* Reduce side margins on mobile to maximize layout space */
  }

  .nav-container {
    height: 75px;
    justify-content: flex-start; /* Logo left of the burger menu on mobile */
  }

  .nav-logo-link.mobile-logo {
    display: flex !important;
  }

  .desktop-logo {
    display: none !important;
  }

  .nav-logo {
    height: 50px;
    width: 50px;
  }

  .slider-arrow {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: var(--spacing-md);
  }

  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--color-background-white);
    flex-direction: column;
    padding: var(--spacing-lg) 0;
    gap: var(--spacing-md);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(10,18,20,0.1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-item a {
    font-size: 1.3rem;
  }

  .nav-social-item a svg {
    width: 28px;
    height: 28px;
  }

  .hero {
    margin-top: 75px;
    min-height: calc(100vh - 75px);
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .legal-page {
    padding: 120px 0 var(--spacing-lg) 0;
  }

  /* Location Card Mobile Wrapping Fixes */
  .location-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }
  
  .live-status {
    display: flex;
    width: 100%;
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    align-items: center;
    gap: 10px;
  }
  
  #status-text {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .hours-table tr {
    display: flex;
    flex-direction: column;
    padding: 12px 6px;
  }
  
  .hours-table td {
    padding: 4px 6px !important;
    text-align: left !important;
    width: 100% !important;
  }
  
  .hours-time {
    margin-top: 4px;
    font-size: 0.95rem;
  }
  
  /* Broth Details Mobile Word Wrapping Fixes */
  .meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .meta-label {
    max-width: 100%;
  }
  
  .meta-value {
    text-align: left;
    max-width: 100%;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-logo {
    align-self: center;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .broth-details h3 {
    font-size: 1.35rem; /* Soften heading size to prevent overflow/wrap issues on very small screens */
  }

  .broth-content-panel {
    padding: var(--spacing-sm); /* Further reduced padding for narrow viewports */
    border-radius: 0;
  }

  .location-card {
    padding: var(--spacing-sm); /* Further reduced padding for narrow viewports */
    border-radius: var(--border-radius-md);
  }
}

/* --- 16. Premium Glassmorphic Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: -100%; /* Hidden by default */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 650px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 50px rgba(10, 18, 20, 0.15);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  z-index: 9999;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  bottom: 24px;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  text-align: left;
}

.cookie-content p {
  font-size: 0.925rem;
  color: var(--color-text-body);
  line-height: 1.55;
}

.cookie-content p a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-cookie-primary, .btn-cookie-secondary {
  padding: 12px 24px;
  font-family: var(--font-family-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

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

.btn-cookie-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-cookie-secondary {
  background-color: transparent;
  border: 1px solid var(--color-text-muted);
  color: var(--color-text-body);
}

.btn-cookie-secondary:hover {
  background-color: rgba(10, 18, 20, 0.05);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .cookie-banner {
    width: 95%;
    padding: var(--spacing-sm);
  }
  .cookie-actions {
    width: 100%;
    margin-top: 4px;
  }
  .btn-cookie-primary, .btn-cookie-secondary {
    width: 100%;
    text-align: center;
    padding: 10px 18px;
  }
}
