/* ============================================
   Blumen Schneider Esslingen — Style Sheet v3
   ============================================ */

:root {
  --color-primary: #c0392b;
  --color-primary-light: #e74c3c;
  --color-primary-dark: #a5311f;
  --color-accent: #2d7a3a;
  --color-cream: #faf6f1;
  --color-warm: #f5ede3;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;

  /* Section accent colors */
  --color-blumen: #c0392b;
  --color-hochzeit: #c9956b;
  --color-grabpflege: #16A085;
  --color-trauer: #34495E;
  --color-ueberuns: #616161;
  --color-kontakt: #3a7cc0;

  /* Accessible dark text variants for tinted backgrounds */
  --color-blumen-text: #7a1a12;
  --color-hochzeit-text: #6b4a2a;
  --color-grabpflege-text: #0a5c48;
  --color-trauer-text: #1e3044;
  --color-ueberuns-text: #3a3a3a;
  --color-kontakt-text: #1e4a75;

  --font-body: 'Montserrat', 'Montserrat Fallback', sans-serif;
  --font-display: 'Dancing Script', 'Dancing Script Fallback', cursive;
  --nav-height: 72px;
  --max-width: 1200px;
}

/* --- Font fallbacks to reduce CLS --- */
@font-face {
  font-family: 'Montserrat Fallback';
  src: local('Arial');
  size-adjust: 113.5%;
  ascent-override: 82%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Dancing Script Fallback';
  src: local('Georgia');
  size-adjust: 110%;
  ascent-override: 95%;
  descent-override: 30%;
  line-gap-override: 0%;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.2; }

/* --- Flower Canvas Background --- */
#flowers-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* --- Top Accent Line --- */
.top-accent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 40%, var(--color-accent) 100%);
  z-index: 1001;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo picture {
  width: 128px;
  height: 59px;
  margin-top: 10px;
}

.navbar__links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  transition: all 0.25s ease;
  color: var(--color-text-light);
}

.navbar__links a:hover {
  color: #fff;
}

/* Per-link hover backgrounds matching section */
.navbar__links a[href="#blumen-und-geschenke"]:hover { background: var(--color-blumen); }
.navbar__links a[href="#hochzeit"]:hover { background: var(--color-hochzeit); }
.navbar__links a[href="#grabpflege"]:hover { background: var(--color-grabpflege); }
.navbar__links a[href="#trauerfloristik"]:hover { background: var(--color-trauer); }
.navbar__links a[href="#ueber-uns"]:hover { background: var(--color-ueberuns); }
.navbar__links a[href="#kontakt"]:hover { background: var(--color-kontakt); }

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 900px) {
  .navbar { padding: 0 1rem; }
  .navbar__hamburger { display: block; }

  .navbar__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-cream);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 5;
  }

  .navbar__inner nav {
    position: absolute;
  }

  .navbar__links.open {
    transform: translateX(0);
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
    color: var(--color-text);
  }

  .navbar__links a:hover {
    color: #fff;
  }
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* --- Hero Section --- */
.hero {
  margin-top: calc(var(--nav-height) + 3px);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm) 50%, #f0e4d6 100%);
}

.hero__bg-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  aspect-ratio: 4/3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  opacity: 0.9;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3);
}

.hero__cta:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(192, 57, 43, 0.4);
}

.hero__cta svg {
  width: 18px;
  height: 18px;
}

/* Floating artichoke decoration */
.hero__artichoke {
  position: absolute;
  top: 15%;
  right: 42%;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}

.hero__artichoke svg {
  width: 80px;
  height: 80px;
  fill: var(--color-accent);
}

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

@media (max-width: 900px) {
  .hero { min-height: 60vh; }
  .hero__bg-image {
    right: -20%;
    width: 80%;
    opacity: 0.25;
  }
  .hero__title { max-width: 100%; }
  .hero__subtitle {
    max-width: 100%;
    color: var(--color-text);
  }
}

/* --- Service Cards (below hero) --- */
.services {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: -4rem auto 0;
  padding: 0 2rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: auto;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card picture,
.hero__bg-image picture {
  width: 100%;
  height: 100%;
}

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

.service-card:hover img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.service-card__label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.service-card__bar {
  width: 40px;
  height: 3px;
  border-radius: 3px;
  transition: width 0.3s;
}

.service-card:hover .service-card__bar { width: 60px; }
.service-card:nth-child(1) .service-card__bar { background: var(--color-blumen); }
.service-card:nth-child(2) .service-card__bar { background: var(--color-hochzeit); }
.service-card:nth-child(3) .service-card__bar { background: var(--color-grabpflege); }
.service-card:nth-child(4) .service-card__bar { background: var(--color-trauer); }

/* Colored top edge */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 2;
}
.service-card:nth-child(1)::before { background: var(--color-blumen); }
.service-card:nth-child(2)::before { background: var(--color-hochzeit); }
.service-card:nth-child(3)::before { background: var(--color-grabpflege); }
.service-card:nth-child(4)::before { background: var(--color-trauer); }

@media (max-width: 900px) {
  .services { margin-top: -2rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* --- Artichoke Divider --- */
.artichoke-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.artichoke-divider__line {
  height: 1px;
  width: 60px;
  opacity: 0.25;
}

.artichoke-divider svg {
  height: 36px;
  width: auto;
  opacity: 0.35;
  transition: transform 0.6s ease;
}

.artichoke-divider:hover svg {
  transform: rotate(15deg) scale(1.1);
}

/* --- Content Sections --- */
.section {
  padding: 5rem 2rem;
  position: relative;
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__content {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .section__content {
    overflow: visible;
  }
}

/* Glass-morphism text cards */
.section__text {
  padding: 2rem;
  border-radius: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Per-section colors */
#blumen-und-geschenke {
  background: linear-gradient(180deg, var(--color-cream) 0%, #fdf0ee 100%);
}
#blumen-und-geschenke .section__title { color: var(--color-blumen); }
#blumen-und-geschenke .artichoke-divider svg { fill: var(--color-blumen); }
#blumen-und-geschenke .artichoke-divider__line { background: var(--color-blumen); }
#blumen-und-geschenke .section__text {
  background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(192,57,43,0.03));
  border: 1px solid rgba(192,57,43,0.1);
  color: var(--color-blumen-text);
}

#hochzeit {
  background: linear-gradient(180deg, #fdf0ee 0%, #fdf6ed 100%);
}
#hochzeit .section__title { color: var(--color-hochzeit); }
#hochzeit .artichoke-divider svg { fill: var(--color-hochzeit); }
#hochzeit .artichoke-divider__line { background: var(--color-hochzeit); }
#hochzeit .section__text {
  background: linear-gradient(135deg, rgba(201,149,107,0.1), rgba(201,149,107,0.04));
  border: 1px solid rgba(201,149,107,0.12);
  color: var(--color-hochzeit-text);
}

#grabpflege {
  background: linear-gradient(180deg, #fdf6ed 0%, #eef7f4 100%);
}
#grabpflege .section__title { color: var(--color-grabpflege); }
#grabpflege .artichoke-divider svg { fill: var(--color-grabpflege); }
#grabpflege .artichoke-divider__line { background: var(--color-grabpflege); }
#grabpflege .section__text {
  background: linear-gradient(135deg, rgba(22,160,133,0.08), rgba(22,160,133,0.03));
  border: 1px solid rgba(22,160,133,0.1);
  color: var(--color-grabpflege-text);
}

#trauerfloristik {
  background: linear-gradient(180deg, #eef7f4 0%, #eff1f5 100%);
}
#trauerfloristik .section__title { color: var(--color-trauer); }
#trauerfloristik .artichoke-divider svg { fill: var(--color-trauer); }
#trauerfloristik .artichoke-divider__line { background: var(--color-trauer); }
#trauerfloristik .section__text {
  background: linear-gradient(135deg, rgba(52,73,94,0.08), rgba(52,73,94,0.03));
  border: 1px solid rgba(52,73,94,0.1);
  color: var(--color-trauer-text);
}

#ueber-uns {
  background: linear-gradient(180deg, #eff1f5 0%, #f3f2f0 100%);
}
#ueber-uns .section__title { color: var(--color-ueberuns); }
#ueber-uns .artichoke-divider svg { fill: var(--color-ueberuns); }
#ueber-uns .artichoke-divider__line { background: var(--color-ueberuns); }
#ueber-uns .section__text {
  background: linear-gradient(135deg, rgba(97,97,97,0.06), rgba(97,97,97,0.02));
  border: 1px solid rgba(97,97,97,0.08);
  color: var(--color-ueberuns-text);
}

/* Per-section slider active dots */
#blumen-und-geschenke .slider__dot.active { background: var(--color-blumen); }
#hochzeit .slider__dot.active { background: var(--color-hochzeit); }
#grabpflege .slider__dot.active { background: var(--color-grabpflege); }
#trauerfloristik .slider__dot.active { background: var(--color-trauer); }
#ueber-uns .slider__dot.active { background: var(--color-ueberuns); }

@media (max-width: 900px) {
  .section { padding: 3rem 1.25rem; }
  .section__title { font-size: 2rem; }
  .section__content {
    grid-template-columns: 1fr;
  }
}

/* --- Slider --- */
.slider {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  min-width: 0;
}

.slider__track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 20px;
}


.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
}

.slider__slide img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: all 0.2s;
  z-index: 2;
  color: var(--color-text);
}

.slider__btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider__btn--prev { left: 1rem; }
.slider__btn--next { right: 1rem; }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0 0;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.slider__dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .slider {
    overflow: visible;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
  .slider__track {
    scroll-snap-type: x mandatory;
    border-radius: 0;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }
  .slider__slide {
    flex: 0 0 88%;
    min-width: 88%;
    scroll-snap-align: center;
    padding: 0 0.375rem;
  }
  .slider__slide img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .slider__dots {
    display: none;
  }
  .slider__btn {
    display: none;
  }
}

/* --- Contact Section --- */
.contact {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f3f2f0 0%, #edf3f8 100%);
}

.contact__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-kontakt);
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact__info {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(58,124,192,0.1);
  border-radius: 20px;
  padding: 2rem;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--color-kontakt-text);
}

.contact__info address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.contact__info a {
  color: var(--color-kontakt);
  font-weight: 500;
  transition: color 0.2s;
}

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

.contact__hours table {
  width: 100%;
  border-collapse: collapse;
}

.contact__hours td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(58,124,192,0.08);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact__hours td:first-child {
  font-weight: 600;
  color: var(--color-text);
  padding-right: 1.5rem;
  white-space: nowrap;
}

.contact__map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 350px;
  background: #e0e0e0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .contact { padding: 3rem 1.25rem; }
  .contact__title { font-size: 2rem; }
  .contact__grid { grid-template-columns: 1fr; }
}

/* --- Footer (subtle) --- */
.footer {
  background: var(--color-cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  color: var(--color-text-light);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
}

.footer a {
  color: var(--color-text-light);
  transition: color 0.2s;
}

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

/* --- Announcements --- */
.announcement {
  position: fixed;
  z-index: 900;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.08),
    0 4px 8px rgba(0,0,0,0.06),
    0 8px 16px rgba(0,0,0,0.05),
    0 16px 32px rgba(0,0,0,0.04),
    0 32px 64px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.announcement:hover {
  box-shadow:
    0 4px 8px rgba(0,0,0,0.1),
    0 8px 16px rgba(0,0,0,0.08),
    0 16px 32px rgba(0,0,0,0.06),
    0 32px 64px rgba(0,0,0,0.04),
    0 48px 80px rgba(0,0,0,0.03);
}

@keyframes slideUp {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- Info announcement --- */
.announcement--info {
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  animation: slideUp 0.5s ease;
}

.announcement--info .announcement__blob {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: var(--color-cream);
  border-radius: 50%;
  z-index: 0;
}

.announcement--info .announcement__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.75rem 1.75rem 1rem;
  font-size: 1.5rem;
}

.announcement--info .announcement__title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}

.announcement--info .announcement__content {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.announcement--info .announcement__body {
  position: relative;
  z-index: 1;
  padding: 0 1.75rem 1.75rem;
}

.announcement--info .announcement__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}

.announcement--info .announcement__close:hover { background: rgba(0,0,0,0.1); }

/* --- Highlight announcement --- */
.announcement--highlight {
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 360px;
  background: linear-gradient(135deg, var(--color-primary), #d94535);
  color: #fff;
  animation: slideUp 0.5s ease;
}

.announcement--highlight .announcement__blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.announcement--highlight .announcement__blob--1 {
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
}

.announcement--highlight .announcement__blob--2 {
  bottom: -80px;
  left: -50px;
  width: 140px;
  height: 140px;
}

.announcement--highlight .announcement__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.75rem 1.75rem 1rem;
  font-size: 1.5rem;
}

.announcement--highlight .announcement__title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.announcement--highlight .announcement__content {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

.announcement--highlight .announcement__body {
  position: relative;
  z-index: 1;
  padding: 0 1.75rem 1.75rem;
}

.announcement--highlight a { color: #fff; text-decoration: underline; }

.announcement--highlight .announcement__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}

.announcement--highlight .announcement__close:hover { background: rgba(255,255,255,0.25); }

/* --- Valentine announcement --- */
.announcement--valentine {
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  max-width: 320px;
  min-height: 260px;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 60%, #f0766c 100%);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: slideInRight 0.5s ease;
}

.valentine__hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.valentine__heart-bg {
  position: absolute;
  opacity: 0.08;
}

.valentine__heart-bg:nth-child(1) {
  top: -10%; left: 10%; width: 100px;
  animation: heartFloat1 4s ease-in-out infinite;
}
.valentine__heart-bg:nth-child(2) {
  bottom: 5%; right: 5%; width: 70px;
  animation: heartFloat2 5s ease-in-out infinite 1s;
}
.valentine__heart-bg:nth-child(3) {
  top: 30%; right: -5%; width: 50px;
  animation: heartFloat3 3.5s ease-in-out infinite 0.5s;
}
.valentine__heart-bg:nth-child(4) {
  bottom: -5%; left: -5%; width: 80px;
  animation: heartFloat1 6s ease-in-out infinite 2s;
}

@keyframes heartFloat1 {
  0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50% { transform: translateY(-12px) rotate(5deg) scale(1.05); }
}
@keyframes heartFloat2 {
  0%, 100% { transform: translateY(0) rotate(10deg) scale(1); }
  50% { transform: translateY(-8px) rotate(-5deg) scale(1.08); }
}
@keyframes heartFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

.valentine__main-heart {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  animation: heartPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.15));
}

.valentine__main-heart path {
  fill: rgba(255,255,255,0.9);
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.08); }
  60% { transform: scale(1); }
}

.valentine__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.valentine__text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
}

.announcement--valentine .announcement__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}

.announcement--valentine .announcement__close:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 900px) {
  .announcement--valentine {
    max-width: 260px;
    right: 0.75rem;
    bottom: 0.75rem;
  }
  .announcement--info,
  .announcement--highlight {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    bottom: 0.75rem;
  }
}

/* --- Cookie Consent --- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  z-index: 950;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-consent p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-consent a {
  color: var(--color-kontakt);
}

.cookie-consent__btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}

.cookie-consent__btn:hover {
  background: var(--color-primary-light);
}

.cookie-consent.hidden {
  display: none;
}

/* --- Impressum Page --- */
.page-header {
  margin-top: calc(var(--nav-height) + 3px);
  padding: 2rem 2rem 1rem;
  background: var(--color-warm);
}

.page-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.page-header__back:hover {
  color: var(--color-primary);
}

.page-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.page-content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.page-content p,
.page-content address {
  font-style: normal;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.page-content a {
  color: var(--color-kontakt);
}

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

/* --- Print --- */
@media print {
  .navbar, .announcement, .cookie-consent, .top-accent, #flowers-bg, .mobile-overlay { display: none; }
  .hero { margin-top: 0; }
  .section { padding: 1rem 0; }
}
