@font-face {
  font-family: 'Inter';
  font-weight: 400;
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-weight: 700;
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Dancing Script';
  font-weight: 400;
  src: url('fonts/DancingScript-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  font-weight: 500;
  src: url('fonts/Oswald-Medium.woff2') format('woff2');
  font-display: swap;
}

:root {
  --blue-dark: #12448b;
  --blue-dark-2: #0d3269;
  --blue-accent: #008dd2;
  --blue-light: #e9f2fa;
  --white: #ffffff;
  --text-dark: #1a1a1a;

  --font-body: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --font-display: 'Oswald', sans-serif;

  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(18, 68, 139, 0.08);
  --shadow-md: 0 12px 30px rgba(18, 68, 139, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.65;
}

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

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Header */

.site-header {
  background: url('images/headerbild.webp') center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  min-height: 100px;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__link,
.site-nav__list,
.site-nav__toggle,
.lang-switch {
  transform: translateY(-13px);
}

.site-header__link {
  display: inline-block;
  flex-shrink: 0;
}

.site-header__logo {
  max-width: 300px;
  width: 100%;
}

/* Navigation */

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  position: relative;
  display: inline-block;
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  transition: opacity 0.25s var(--ease);
}

.site-nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.site-nav__list a:hover {
  opacity: 0.8;
}

.site-nav__list a:hover::after {
  transform: scaleX(1);
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  background: rgba(18, 68, 139, 0.55);
  cursor: pointer;
  padding: 0;
}

.site-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.site-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .site-header__inner {
    gap: 0.75rem;
  }

  .site-header__logo {
    max-width: 190px;
  }

  .site-nav__toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--blue-dark);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    transition: max-height 0.35s var(--ease);
  }

  .site-nav.is-open {
    max-height: 320px;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
  }

  .site-nav__list a {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    color: var(--white);
  }

  .site-nav__list a::after {
    display: none;
  }
}

/* Language switch */

.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;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switch__flag {
  display: block;
  width: 30px;
  height: 22px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.lang-switch__flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-switch__flag:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.lang-switch__flag.is-active {
  opacity: 1;
  border-color: var(--white);
  box-shadow: 0 0 0 1px var(--blue-dark);
  cursor: default;
  pointer-events: none;
  transform: none;
}

@media (max-width: 900px) {
  .lang-switch__flag {
    width: 26px;
    height: 19px;
  }
}

/* Hero */

.hero {
  position: relative;
  background-color: #12458c;
  color: var(--white);
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 1.5rem clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}

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

.hero__title {
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero__owner {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin: 1.25rem 0 0;
  opacity: 0.9;
}

.hero__quote {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  color: #bcdcfb;
  margin: 3rem 0 0;
  white-space: nowrap;
}

.hero__quote-break {
  display: none;
}

@media (max-width: 900px) {
  .hero__quote {
    white-space: normal;
  }
  .hero__quote-break {
    display: inline;
  }
}

.hero__tagline {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin: 1.75rem 0 0;
}

.ai-notice {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  background: rgba(32, 38, 27, 1);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  z-index: 1;
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(56px, 8vw, 88px);
  display: block;
}

/* Opening hours */

.hours {
  background: var(--blue-accent);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
}

.hours__title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin: 0 0 2.5rem;
}

.date-display {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  padding: 1.1rem 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
}

.date-display__today {
  margin: 0;
}

.date-display__label {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.date-display__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.date-display__note {
  display: inline-block;
  margin: 0.75rem 0 0;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.date-display--closed .date-display__note {
  background: #e2483f;
  color: var(--white);
}

@media (max-width: 560px) {
  .date-display {
    padding: 1rem 1.25rem;
  }

  .date-display__value {
    font-size: 1.05rem;
  }
}

.hours__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hours__card {
  position: relative;
  background: var(--blue-light);
  border-radius: var(--radius);
  color: var(--blue-dark);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hours__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.hours__card--wide {
  grid-column: span 2;
}

.hours__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.hours__card p {
  margin: 0;
}

.hours__highlight {
  text-decoration: underline;
}

.hours__card--today {
  background: #a5dafa;
  box-shadow: 0 0 0 2px var(--blue-dark), var(--shadow-sm);
}

.hours__card--today::after {
  content: 'Heute!';
  position: absolute;
  top: -10px;
  right: 12px;
  background: #12448b;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

:lang(fr) .hours__card--today::after {
  content: "Aujourd'hui !";
}

@media (max-width: 900px) {
  .hours__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hours__card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .hours__grid {
    grid-template-columns: 1fr;
  }
}

/* Showcase */

.showcase {
  background: var(--blue-dark);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3.5rem);
}

.showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.showcase__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.showcase__ai-badge {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.showcase__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
  padding: clamp(1rem, 3vw, 2rem) 0;
  padding-left: 30px;
}

.showcase__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.08;
  margin: 0 0 clamp(0.5rem, 1.5vw, 1rem);
}

.showcase__intro {
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0;
}

.showcase__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.4vw, 0.9rem);
}

.showcase__list li {
  position: relative;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  padding-left: 1.5rem;
}

.showcase__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.showcase__list li.is-pending::before {
  opacity: 0;
}

.showcase__list .char {
  white-space: pre;
}

.showcase__list .typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  background: var(--white);
  vertical-align: -0.15em;
  animation: showcaseCursorBlink 0.8s steps(1) infinite;
}

@keyframes showcaseCursorBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase__list .typewriter-cursor {
    display: none;
  }
}

@media (max-width: 900px) {
  .showcase__grid {
    grid-template-columns: 1fr;
  }
  .showcase__media {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 240px;
  }
}

.showcase__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  width: 100%;
  max-width: 1300px;
  margin: clamp(1.5rem, 4vw, 3rem) auto 0;
}

.showcase__gallery-item {
  margin: 0;
  transition: transform 0.35s var(--ease);
}

.showcase__gallery-item:hover {
  transform: translateY(-6px);
}

.showcase__gallery-item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), transform 0.5s var(--ease);
}

.showcase__gallery-item:hover img {
  box-shadow: var(--shadow-md);
  transform: scale(1.06);
}

.showcase__gallery-item figcaption {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  text-align: center;
}

@media (max-width: 900px) {
  .showcase__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .showcase__gallery {
    grid-template-columns: 1fr;
  }
}

/* Products */

.products {
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
}

.products__intro {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  text-align: center;
}

.products__title {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: clamp(2rem, 2.3vw, 3rem);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.products__subtitle {
  color: var(--blue-accent);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin: 0;
}

.products__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.product {
  transition: transform 0.35s var(--ease);
}

.product:hover {
  transform: translateY(-6px);
}

.product__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.1rem;
  transition: box-shadow 0.35s var(--ease);
}

.product:hover .product__image {
  box-shadow: var(--shadow-md);
}

.product__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product:hover .product__image img {
  transform: scale(1.06);
}

.product h3 {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.product p {
  margin: 0;
  color: #444;
}

@media (max-width: 900px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */

.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-footer__dot {
  opacity: 0.5;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}

.site-footer a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.visitor-counter {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  opacity: 0.55;
}

.visitor-counter strong {
  font-weight: 700;
  opacity: 1;
}

/* Legal / secondary pages (Impressum, Datenschutz) */

.page-banner {
  background-color: #12458c;
  color: var(--white);
  text-align: center;
  padding: clamp(2.75rem, 6vw, 4.5rem) 1.5rem;
}

.page-banner__title {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
  letter-spacing: -0.01em;
}

.legal {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(4rem, 7vw, 6rem);
}

.legal h2 {
  color: var(--blue-dark);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.25rem 0 0.9rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p {
  max-width: 720px;
  margin: 0 0 1.1rem;
}

.legal a {
  color: var(--blue-accent);
  font-weight: 700;
  text-decoration: none;
}

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

.legal__intro {
  max-width: 720px;
  background: var(--blue-light);
  border-left: 4px solid var(--blue-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
}

.legal__intro p {
  max-width: none;
  margin: 0;
}

.legal ul {
  max-width: 720px;
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal__table-wrap {
  overflow-x: auto;
  margin: 0 0 1.5rem;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--blue-light);
  border-radius: 10px;
}

.legal__table-wrap th,
.legal__table-wrap td {
  border-right: 1px solid var(--blue-light);
}

.legal__table-wrap th:last-child,
.legal__table-wrap td:last-child {
  border-right: none;
}

.legal__table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.legal__table-wrap tbody tr:nth-child(even) td {
  background: var(--blue-light);
  background: color-mix(in srgb, var(--blue-light) 55%, var(--white));
}

.legal table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.95rem;
}

.legal th,
.legal td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--blue-light);
  white-space: normal;
}

.legal th {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
}

.legal table + p em {
  font-size: 0.9rem;
}

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(4rem, 7vw, 6rem);
}

.contact-card__box {
  background: var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 1.75rem;
}

.contact-card__item {
  color: var(--white);
  text-align: center;
}

.contact-card__item:not(:last-child) {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-card__item strong {
  display: block;
  color: #bcdcfb;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.contact-card__item a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.contact-card__item a:hover {
  border-color: #bcdcfb;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

/* Fish swarm cursor trail */

.fish-swarm {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.fish-swarm.is-active {
  opacity: 1;
}

.fish-swarm__fish {
  position: absolute;
  top: 0;
  left: 0;
  margin: -10px 0 0 -20px;
  filter: drop-shadow(0 2px 4px rgba(18, 68, 139, 0.35));
  will-change: transform;
}

.fish-swarm__fish svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* QR-Code Widget (nur Desktop) */
.qr-widget {
  display: none;
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  z-index: 900;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.6rem;
}

@media (min-width: 901px) {
  .qr-widget:not(.is-dismissed) {
    display: block;
  }
}

.qr-widget img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
}

.qr-widget__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.25s var(--ease);
}

.qr-widget__close:hover {
  background: var(--blue-dark-2);
}

/* DSGVO Cookie Hinweis */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--blue-dark);
  color: var(--white);
  padding: 15px;
  text-align: center;
  z-index: 1001;
  display: none;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  font-family: var(--font-body);
}

.cookie-consent p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-consent a {
  color: var(--blue-light);
  text-decoration: underline;
  transition: color 0.3s;
}

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

.cookie-consent button {
  background-color: var(--blue-accent);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  margin: 0 8px;
  transition: all 0.3s;
  font-family: var(--font-body);
  font-weight: 500;
}

.cookie-consent button:hover {
  background-color: var(--blue-dark-2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
