/* =========================================================================
   MODERN BRIGHT AESTHETIC - BEERENGARTEN FELDKIRCHEN
   ========================================================================= */

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

:root {
  /* Apple-inspired Modern Light Theme Colors */
  --color-bg: #f5f5f7;
  --color-surface: #ffffff;
  --color-text-main: #1d1d1f;
  --color-text-muted: #86868b;
  
  /* Fresh Accent Colors for the Farm */
  --color-accent-green: #34c759; /* Apple green */
  --color-accent-red: #e63946;   /* Strawberry red */
  --color-accent-orange: #ff9500; /* Pumpkin orange */
  --color-accent-blue: #007aff;  /* Berry blue */
  --color-accent-yellow: #ffcc00; /* Corn yellow */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #e63946 0%, #ff5252 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 100%);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Layout & Shadows */
  --spacing-base: 1rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --max-width: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --ease-soft: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

html, body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-text-main);
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 65ch;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Glassmorphism Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s var(--ease-soft);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-red);
  text-decoration: none;
  letter-spacing: -0.02em;
  z-index: 1001;
}

.nav-brand span {
  color: var(--color-accent-red);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-main);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-accent-red);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-icon {
  margin-top: 1px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-content {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
  z-index: 1002;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  visibility: hidden;
  list-style: none;
}

.dropdown:hover .dropdown-content {
  transform: translateX(-50%) translateY(8px);
  opacity: 1;
  visibility: visible;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content a {
  color: var(--color-text-main);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: rgba(0,0,0,0.03);
  color: var(--color-accent-red);
}

/* Mobile Dropdown adjustment */
@media (max-width: 768px) {
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 1010;
    transition: none;
  }

  .nav-links.active .dropdown.open .dropdown-content {
    display: block;
  }

  .dropdown-icon {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .dropdown.open .dropdown-icon {
    transform: rotate(180deg);
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  z-index: 1001;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 5%;
  overflow: hidden;
  background: #111;
}

.hero-subpage {
  height: 50vh;
  min-height: 400px;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: 4rem;
  background: var(--color-bg);
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
  box-shadow: none;
  transform: none;
}

.hero-subpage .hero-image-wrapper {
  top: 55%;
  height: 75%;
  width: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.hero-subpage .hero-image-wrapper::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 30s ease-in-out infinite alternate;
}

.hero-subpage .hero-img {
  animation: none;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(20, 20, 20, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  margin-top: 4rem;
  /* Fix sharpness issues on some browsers */
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
}

.hero-subpage .hero-content {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3rem;
  margin-inline: auto;
  margin-top: 0;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  /* Disable blur effect on subpages to ensure absolute text sharpness */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-red);
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 4.5rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.25); /* Reduced blur for sharpness */
  line-height: 1.1;
  letter-spacing: -0.01em; /* Less tight for better rendering */
}

.hero-subpage .hero-content h1 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: inherit;
  text-shadow: none;
  /* Reinforce sharpness for clipped text */
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: blur(0); /* Browser hack for sharpness */
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.hero-subpage .hero-content p {
  color: var(--color-text-main);
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-spring);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: 0 8px 16px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-main);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
  background: white;
  color: var(--color-text-main);
}

/* Sections */
section {
  padding: var(--spacing-xl) 5%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-inline: auto;
}

/* Asymmetric Grid to Modern Cards */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.editorial-img-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.editorial-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.editorial-img-col:hover img {
  transform: scale(1.05);
}

.editorial-content-col {
  padding: 2rem;
}

/* Collection Grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.collection-item {
  text-decoration: none;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-spring);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.collection-img-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/3;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

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

.collection-item h3 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collection-item h3::after {
  content: '→';
  color: var(--color-accent-red);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.collection-item:hover h3::after {
  opacity: 1;
  transform: translateX(0);
}

.collection-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* HARVEST CALENDAR WIDGET (ERNTEKALENDER) */
.calendar-widget {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  max-width: var(--max-width);
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow-x: auto;
}

/* Grid layout: 1 label col, 9 month cols */
.cal-grid {
  display: grid;
  grid-template-columns: 240px repeat(9, 1fr);
  gap: 0;
  min-width: 900px;
}

.cal-header { display: contents; }

.cal-month {
  padding: 1rem 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  border-bottom: 2px solid rgba(0,0,0,0.05);
}

.cal-row {
  display: contents;
}

.cal-row:hover .cal-label,
.cal-row:hover .cal-cells {
  background-color: rgba(0,0,0,0.01);
}

.cal-label {
  padding: 1.5rem 1rem 1.5rem 0.5rem;
  font-weight: 600;
  color: var(--color-text-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  font-size: 0.95rem;
  transition: background 0.3s ease;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.cal-label span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 0.25rem;
  margin-left: 0;
}

.cal-cells {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  padding: 1rem 0;
  gap: 0;
  transition: background 0.3s ease;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Vertical guide lines */
.cal-cell-bg {
  border-left: 1px dashed rgba(0, 0, 0, 0.05);
  height: 100%;
}
.cal-cells .cal-cell-bg:last-child {
  border-right: 1px dashed rgba(0, 0, 0, 0.05);
}

/* The actual event bars */
.cal-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 38px;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1), inset 0 2px 4px rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease-spring);
  cursor: default;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cal-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.cal-bar:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15), inset 0 2px 4px rgba(255,255,255,0.3);
  z-index: 10;
}

.cal-bar:hover::after {
  left: 150%;
}

/* Specific Crop Colors & Positions */
.bar-erdbeeren {
  background: linear-gradient(135deg, #ff4b4b 0%, #d62828 100%);
  left: calc(100% / 9 * 3 + 8px); /* June */
  width: calc(100% / 9 * 2 - 16px); /* Jun-Jul */
}

.bar-blumen {
  background: linear-gradient(135deg, #FFE066 0%, #F25F5C 100%);
  left: calc(100% / 9 * 1 + 8px); /* April */
  width: calc(100% / 9 * 7 - 16px); /* Apr-Oct */
}

.bar-ribisel-black {
  background: linear-gradient(135deg, #50514F 0%, #202020 100%);
  left: calc(100% / 9 * 4 + 8px); /* July */
  width: calc(100% / 9 * 1 - 16px);
  z-index: 2;
}

.bar-ribisel-red {
  background: linear-gradient(135deg, #F25F5C 0%, #c42021 100%);
  left: calc(100% / 9 * 4.5); /* Mid July */
  width: calc(100% / 9 * 1 - 16px); /* Mid Jul-Mid Aug */
  z-index: 1;
}

.bar-jostabeeren {
  background: linear-gradient(135deg, #70C1B3 0%, #247BA0 100%);
  left: calc(100% / 9 * 5 + 8px); /* Aug */
  width: calc(100% / 9 * 1 - 16px);
}

.bar-suesskartoffel {
  background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
  left: calc(100% / 9 * 6.5); /* Mid Sep */
  width: calc(100% / 9 * 1.5 - 16px); /* -> End Oct */
}

.bar-kuerbisse {
  background: linear-gradient(135deg, #f9c74f 0%, #f3722c 100%);
  color: #ffffff;
  left: calc(100% / 9 * 6.5); /* Mid Sep */
  width: calc(100% / 9 * 2.5 - 16px); /* -> End Nov */
}

/* Testimonial minimal */
.testimonial-section {
  background-color: var(--color-text-main);
  color: white;
  text-align: center;
  padding: 8rem 5%;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  width: 96%;
  max-width: 100%;
}

.testimonial-section h2 {
  color: white;
}

.testimonial-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 800px;
  margin-inline: auto;
}

.testimonial-section .subtitle {
  color: var(--color-accent-red);
  margin-top: 2rem;
}

/* Modern Dark Premium Footer */
footer {
  background-color: #0d1a0d; /* Deep Forest Green */
  color: #f5f5f7;
  padding: 8rem 5% 4rem;
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Subtle top line for elegance */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto 6rem;
}

.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -0.03em;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-nav h4 {
  font-size: 0.75rem;
  color: white;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.footer-nav a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-social-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-links a:hover {
  color: white;
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px) translateZ(0); /* Added translateZ for sharper start */
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden; /* Added for sharpness */
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* Utility to ensure tilt remains responsive but subtler */
.tilt-3d {
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden; /* Prevent overflow on rotation */
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease-soft);
    z-index: 1000;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .mobile-menu-btn { display: block; }
  
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 1.5rem 2.5rem; /* Reduced top padding to move border closer to text */
    width: 92%;
    margin: 10rem auto 2rem; /* Increased margin-top for more distance to the header */
    align-items: center;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
  }

  .hero-content h1 {
    color: var(--color-text-main);
    text-shadow: none;
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }

  .hero-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero .btn-outline {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid rgba(0, 0, 0, 0.2);
    backdrop-filter: none;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-subpage .hero-content {
    padding: 2rem 1rem;
    width: 92%;
    min-height: auto;
  }

  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  /* Prevent horizontal scroll on small devices */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  @media (max-width: 600px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
  }
}

/* =========================================================================
   MOBILE SPACING OVERRIDES
   ========================================================================= */

@media (max-width: 640px) {
  section {
    padding: 3rem 5%;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .testimonial-section {
    padding: 3.5rem 5%;
  }

  .testimonial-section h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 1.5rem;
  }

  .testimonial-section p {
    font-size: 1.1rem;
  }

  .editorial-content-col {
    padding: 0.5rem 0;
  }

  .editorial-content-col h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .editorial-content-col h3 {
    margin-top: 1.25rem !important;
  }

  .editorial-content-col p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    padding-top: 2rem;
  }
}

/* =========================================================================
   CUSTOM COMPONENTS (ERDBEEREN PAGE)
   ========================================================================= */

/* Nutrition Dashboard */
.nutrition-dashboard {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.03);
}

.nutrition-dashboard-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nutrition-item {
  display: grid;
  grid-template-columns: 120px 1fr 80px;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media(max-width: 600px) {
  .nutrition-item {
    grid-template-columns: 100px 1fr 60px;
    gap: 1rem;
  }
}

.nutrition-label {
  font-weight: 600;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.nutrition-bar-bg {
  height: 12px;
  background: rgba(0,0,0,0.04);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.nutrition-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: var(--gradient-primary);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.2);
}

.nutrition-value {
  font-weight: 700;
  color: var(--color-text-main);
  text-align: right;
  font-size: 0.9rem;
}

.nutrition-annotation {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* Health Check List */
.health-check-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.health-check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s var(--ease-spring);
}

.health-check-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.health-check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(52, 199, 89, 0.1);
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.health-check-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.4;
}

/* Info Box Highlight */
.info-box {
  background: rgba(230, 57, 70, 0.05);
  border-left: 4px solid var(--color-accent-red);
  padding: 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.info-box-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent-red);
  margin-bottom: 0.5rem;
}

/* =========================================================================
   TEAM & VALUES (ABOUT US)
   ========================================================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 4rem auto 0;
}

.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-spring);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

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

.team-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-accent-green);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

.team-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 4rem auto 0;
}

.value-card {
  padding: 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--color-accent-green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent-green);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================================================================
   CERTIFICATIONS BANNER
   ========================================================================= */

.certifications-section {
  padding: 3rem 5%;
  background-color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.certifications-container {
  max-width: 900px;
  margin: 0 auto;
}

.cert-banner-img {
  max-width: 100%;
  height: auto;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.cert-banner-img:hover {
  opacity: 1;
  transform: scale(1.01);
}

/* =========================================================================
   CONTACT PAGE STYLES
   ========================================================================= */

.contact-section {
  padding: 6rem 5%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.contact-card {
  padding: 3rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.4s var(--ease-spring);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.contact-card-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent-red);
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.contact-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-card a {
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--color-accent-red);
}

/* Contact Form Section */
.contact-form-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  background: white;
  padding: 5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-top: 4rem;
}

.contact-form h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}

.form-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  background: white;
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 4px rgba(56, 142, 60, 0.1);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

/* Feature Box for Abholung */
.pickup-feature-box {
  background: var(--gradient-primary);
  padding: 4rem;
  border-radius: var(--radius-lg);
  color: white;
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pickup-feature-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(15deg);
}

.pickup-content {
  max-width: 60%;
  position: relative;
  z-index: 1;
}

.pickup-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pickup-content p {
  font-size: 1.125rem;
  color: white;
  opacity: 1;
  margin-bottom: 0;
}

.pickup-cta {
  position: relative;
  z-index: 1;
}

.btn-white {
  background: white;
  color: var(--color-accent-red);
  padding: 1.25rem 2.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

@media (max-width: 1000px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem;
  }
  
  .pickup-feature-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem;
    gap: 2rem;
  }
  
  .pickup-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* =========================================================================
   GOOGLE REVIEWS FLOATING WIDGET
   ========================================================================= */

#gr-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

/* ── Trigger-Button ─────────────────────────────────────────────────── */
#gr-trigger {
  pointer-events: all;
  background: var(--color-surface);
  border: none;
  border-radius: 16px 0 0 16px;
  padding: 0;
  cursor: pointer;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s var(--ease-soft), transform 0.25s var(--ease-soft);
  outline: none;
  overflow: hidden;
}

#gr-trigger:hover {
  box-shadow: -6px 0 32px rgba(0,0,0,0.18), 0 12px 32px rgba(0,0,0,0.12);
  transform: translateX(-3px);
}

#gr-trigger:focus-visible {
  box-shadow: -4px 0 0 3px var(--color-accent-blue), 0 8px 24px rgba(0,0,0,0.08);
}

.gr-trigger-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* Override writing-mode for icons */
}

/* Reset writing-mode for visual children */
.gr-trigger-inner > * {
  writing-mode: horizontal-tb;
}

.gr-trigger-inner {
  writing-mode: horizontal-tb;
  flex-direction: column;
}

.gr-google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.gr-rating-block {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gr-stars {
  display: flex;
  gap: 1px;
}

.gr-star {
  width: 11px;
  height: 11px;
}

.gr-score {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1;
}

.gr-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.gr-chevron {
  color: var(--color-text-muted);
  transition: transform 0.3s var(--ease-soft), color 0.2s;
  margin-top: 2px;
}

.gr-chevron svg {
  width: 8px;
  height: 14px;
}

#gr-widget.gr-open .gr-chevron {
  transform: rotate(180deg);
  color: var(--color-accent-red);
}

/* ── Review Panel ───────────────────────────────────────────────────── */
#gr-panel {
  pointer-events: all;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  width: 320px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-soft), transform 0.3s var(--ease-soft), visibility 0.3s;
  overflow: hidden;
}

#gr-panel[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Panel Header */
.gr-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: var(--color-surface);
}

.gr-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gr-header-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.gr-header-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
  margin: 0 0 4px;
}

.gr-header-meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.gr-header-score {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.gr-header-stars {
  display: flex;
  gap: 1px;
}

.gr-header-stars .gr-star {
  width: 12px;
  height: 12px;
}

.gr-header-count {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.gr-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-text-muted);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  outline: none;
}

.gr-close-btn:hover {
  background: var(--color-bg);
  color: var(--color-text-main);
}

.gr-close-btn:focus-visible {
  outline: 2px solid var(--color-accent-blue);
}

.gr-close-btn svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* Review Cards */
.gr-reviews-list {
  padding: 8px 0;
  max-height: 340px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.12) transparent;
}

.gr-reviews-list::-webkit-scrollbar {
  width: 4px;
}

.gr-reviews-list::-webkit-scrollbar-track {
  background: transparent;
}

.gr-reviews-list::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
}

.gr-review-card {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.gr-review-card:last-child {
  border-bottom: none;
}

.gr-review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

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

.gr-review-meta {
  flex: 1;
  min-width: 0;
}

.gr-reviewer-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gr-review-date {
  display: block;
  font-size: 0.68rem;
  color: var(--color-text-muted);
}

.gr-review-stars {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}

.gr-review-stars .gr-star {
  width: 10px;
  height: 10px;
}

.gr-review-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* CTA Link */
.gr-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-blue);
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--color-surface);
  transition: background 0.2s, color 0.2s;
}

.gr-all-link:hover {
  background: var(--color-bg);
  color: var(--color-text-main);
}

.gr-all-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  #gr-panel {
    width: calc(100vw - 60px);
    right: 100%;
  }

  #gr-widget {
    top: auto;
    bottom: 80px;
    transform: none;
  }

  #gr-panel {
    top: auto;
    bottom: 0;
    transform: translateX(12px);
  }

  #gr-panel[aria-hidden="false"] {
    transform: translateX(0);
  }
}
