/* ==========================================
   Flower Dreams - Blumen Boutique
   TEST: Bunter Blumenstrauß Design
   ========================================== */

/* --- Custom Properties --- */
:root {
  --color-primary: #E91E63;
  --color-primary-light: #F06292;
  --color-accent: #FFF3E0;
  --color-accent-medium: #FFCC80;
  --color-gold: #FF9800;
  --color-bg: #FFFBF5;
  --color-bg-alt: #FFF3E0;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-violet: #7B1FA2;
  --color-turquoise: #00BCD4;
  --color-yellow: #FFC107;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 72px;
  --max-width: 1200px;
  --section-padding: 80px 24px;
  --border-radius: 8px;
  --transition: 0.3s ease;
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

ul { list-style: none; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  color: #fff;
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-phone {
  background: var(--color-primary);
  color: #fff;
}

.btn-phone:hover {
  background: var(--color-primary-light);
  color: #fff;
}

.btn:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* Unified contact buttons */
.btn-contact {
  background: var(--color-bg);
  color: var(--color-primary);
  border: 2px solid var(--color-accent-medium);
  padding: 12px 24px;
  min-width: 140px;
  justify-content: center;
}

.btn-contact:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-contact svg {
  width: 20px;
  height: 20px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 251, 245, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 251, 245, 0.95);
  box-shadow: 0 2px 20px rgba(233, 30, 99, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

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

.navbar.scrolled .nav-links a.active::after,
.navbar.scrolled .nav-links a:hover::after {
  width: 100%;
}

.navbar:not(.scrolled) .nav-links a.active::after,
.navbar:not(.scrolled) .nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}

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

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

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

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
}

/* Hero scroll-down button */
.hero-scroll-btn {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 16px 32px;
  transition: all var(--transition);
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-btn:hover {
  color: #fff;
}

.hero-scroll-btn svg {
  width: 28px;
  height: 28px;
}

/* Animierter SVG-Wellen-Übergang Hero → Über uns */
.hero-wave-divider {
  position: relative;
  height: 120px;
  margin-top: -80px;
  z-index: 1;
  overflow: hidden;
}

.hero-wave-divider .wave {
  position: absolute;
  bottom: 0;
  left: -25%;
  width: 200%;
  height: 100%;
}

.hero-wave-divider .wave path {
  fill: currentColor;
}

.hero-wave-divider .wave-back {
  color: #E91E63;
  opacity: 0.25;
  animation: waveBack 10s ease-in-out infinite;
  transform-origin: center bottom;
}

.hero-wave-divider .wave-mid {
  color: #FF9800;
  opacity: 0.20;
  animation: waveMid 8s ease-in-out infinite;
  transform-origin: center bottom;
}

.hero-wave-divider .wave-front {
  color: #FFFBF5;
  opacity: 1;
  animation: waveFront 12s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes waveBack {
  0%   { transform: translateX(0) scaleY(1); }
  25%  { transform: translateX(-4%) scaleY(1.06); }
  50%  { transform: translateX(-8%) scaleY(0.95); }
  75%  { transform: translateX(-4%) scaleY(1.05); }
  100% { transform: translateX(0) scaleY(1); }
}

@keyframes waveMid {
  0%   { transform: translateX(0) scaleY(1) scaleX(1); }
  20%  { transform: translateX(3%) scaleY(1.08) scaleX(1.01); }
  40%  { transform: translateX(1%) scaleY(0.93); }
  60%  { transform: translateX(-3%) scaleY(1.06) scaleX(0.99); }
  80%  { transform: translateX(-1%) scaleY(0.95); }
  100% { transform: translateX(0) scaleY(1) scaleX(1); }
}

@keyframes waveFront {
  0%   { transform: translateX(0) scaleY(1); }
  30%  { transform: translateX(-2%) scaleY(1.04); }
  50%  { transform: translateX(-1%) scaleY(0.96); }
  70%  { transform: translateX(2%) scaleY(1.05); }
  100% { transform: translateX(0) scaleY(1); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1490750967868-88aa4f44baee?w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.6), rgba(123, 31, 162, 0.5), rgba(0, 188, 212, 0.4));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  padding: 0 24px;
  position: relative;
}

.hero-content::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  margin: 0 auto 24px;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--color-yellow);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-divider {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
}

.hero-divider::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
}

.hero-divider svg {
  filter: brightness(2);
}

.hero-content .hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

/* Decorative flower SVGs */
.hero-deco {
  position: absolute;
  opacity: 0.2;
  z-index: -1;
}

.hero-deco-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  fill: var(--color-yellow);
  animation: float 6s ease-in-out infinite;
}

.hero-deco-2 {
  bottom: 10%;
  right: 5%;
  width: 250px;
  fill: var(--color-turquoise);
  animation: float 8s ease-in-out infinite 1s;
}

/* --- About --- */
.about {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
}

.about-highlights {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.highlight-text strong {
  display: block;
  font-size: 0.95rem;
}

.highlight-text span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* --- Services --- */
.services {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

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

.service-card {
  background: var(--color-bg);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #eee;
  border-top: 4px solid transparent;
}

/* Service card colors */
.service-card:nth-child(1) {
  border-top-color: var(--color-primary);
}

.service-card:nth-child(1) .service-icon {
  background: rgba(233, 30, 99, 0.12);
}

.service-card:nth-child(1) .service-icon svg {
  color: var(--color-primary);
}

.service-card:nth-child(2) {
  border-top-color: var(--color-gold);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(255, 152, 0, 0.12);
}

.service-card:nth-child(2) .service-icon svg {
  color: var(--color-gold);
}

.service-card:nth-child(3) {
  border-top-color: var(--color-violet);
}

.service-card:nth-child(3) .service-icon {
  background: rgba(123, 31, 162, 0.12);
}

.service-card:nth-child(3) .service-icon svg {
  color: var(--color-violet);
}

.service-card:nth-child(4) {
  border-top-color: var(--color-turquoise);
}

.service-card:nth-child(4) .service-icon {
  background: rgba(0, 188, 212, 0.12);
}

.service-card:nth-child(4) .service-icon svg {
  color: var(--color-turquoise);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(233, 30, 99, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- Gallery --- */
.gallery {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-accent);
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Placeholder styles for gallery (fallback) */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  opacity: 0.5;
  padding: 16px;
  text-align: center;
}

.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.gallery-placeholder span {
  font-size: 0.85rem;
}

/* --- Contact --- */
.contact {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-bg) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.contact-item-text strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.contact-item-text a:hover {
  color: var(--color-primary);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Opening hours */
.opening-hours {
  margin-top: 32px;
  padding: 24px;
  background: var(--color-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-accent-medium);
}

.opening-hours h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
}

.hours-row .day {
  font-weight: 500;
}

.hours-row .time {
  color: var(--color-text-light);
}

.hours-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper h3 {
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

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

.form-group .error-msg {
  font-size: 0.8rem;
  color: #d32f2f;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #d32f2f;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-notice {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(233, 30, 99, 0.08);
  border-radius: var(--border-radius);
  color: var(--color-primary);
  text-align: center;
  font-weight: 500;
}

.form-success.visible {
  display: block;
}

/* Google Maps DSGVO */
.map-wrapper {
  margin-top: 32px;
}

.map-consent {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 48px 24px;
  text-align: center;
}

.map-consent p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.map-consent .btn {
  margin: 0 auto;
}

.map-container {
  display: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
}

.map-container.visible {
  display: block;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(135deg, #4A148C, #7B1FA2, #9C27B0);
  color: rgba(255, 255, 255, 0.85);
  padding: 32px 24px;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Mobile Nav Overlay --- */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open,
  .nav-cta.open {
    right: 0;
  }

  .nav-links a {
    color: var(--color-text) !important;
    font-size: 1.1rem;
  }

  .nav-cta {
    top: auto;
    bottom: 0;
    height: auto;
    width: 280px;
    padding: 24px 32px;
    flex-direction: row;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-content {
    padding: 0 16px;
  }

  .hero-content .subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .hero-content .hero-tagline {
    font-size: 1rem;
    padding: 0 8px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-scroll-btn {
    bottom: 16px;
  }

  /* Decorative SVGs kleiner auf Mobile */
  .hero-deco-1 {
    width: 100px;
    top: 5%;
  }

  .hero-deco-2 {
    width: 120px;
    bottom: 15%;
  }

  /* Wave Divider — kürzere Wellenlänge auf Mobile */
  .hero-wave-divider {
    height: 80px;
    margin-top: -50px;
  }

  .hero-wave-divider .wave {
    width: 400%;
    left: -50%;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    order: -1;
  }

  .about-highlights {
    flex-direction: column;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-row: span 1;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn,
  .contact-buttons .btn-contact {
    justify-content: center;
    width: 100%;
  }

  /* Öffnungszeiten besser lesbar */
  .hours-row {
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

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

  /* Footer */
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 48px 12px;
    --nav-height: 64px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .gallery-item .gallery-label {
    font-size: 0.75rem;
    padding: 8px 10px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

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

  .service-card {
    padding: 24px 16px;
  }

  .opening-hours {
    padding: 16px;
  }

  .map-consent {
    padding: 32px 16px;
  }
}

/* --- Legal Pages --- */
.legal-page {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: 32px;
  font-size: 2rem;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.legal-page p,
.legal-page li {
  margin-bottom: 12px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 24px;
  list-style: disc;
}

.legal-page a {
  text-decoration: underline;
}

/* Legal page navbar always visible */
.legal-nav {
  background: rgba(255, 251, 245, 0.97);
  box-shadow: 0 2px 20px rgba(233, 30, 99, 0.08);
}

.legal-nav .nav-logo {
  color: var(--color-primary);
}
