/* =============================
   Design Tokens / Variablen
   ============================= */
:root{
  /* Farbpalette (Türkis) */
  --turquoise: #1FA6A8;
  --turquoise-dark: #0F6F73;
  --turquoise-light: #4ECFD0;

  --accent: #F2E85C;
  --text: #0B2F33;
  --white: #FFFFFF;

  /* UI */
  --shadow: rgba(0, 0, 0, 0.20);
  --border: rgba(255, 255, 255, 0.18);

  /* Wiederkehrende Maße */
  --container: min(920px, 92vw);
  --r-xl: 20px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Effekte */
  --shadow-lg: 0 12px 40px var(--shadow);
  --shadow-btn: 0 10px 18px rgba(0,0,0,0.18);
  --focus-ring: 0 0 0 4px rgba(242,232,92,0.22);
  --focus-elev: 0 14px 26px rgba(0,0,0,0.18);
}

/* =============================
   Base
   ============================= */
*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(79, 207, 208, 0.35), transparent 55%),
    linear-gradient(160deg, #062226 0%, #0B2F33 35%, #061B1E 100%);
}

/* =============================
   A11y: Skip Link
   ============================= */
.skip-link{
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus{
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  z-index: 1000;
  border-radius: 10px;
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* =============================
   Layout Container (Flyer/Page)
   ============================= */
.flyer,
.page{
  width: var(--container);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(31,166,168,0.15), rgba(15,111,115,0.10));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.flyer{
  margin: 32px auto;
  padding: 22px;
}

.page{
  margin: 14px auto 32px;
  padding: 20px;
}

.page h1{
  margin: 6px 0 16px;
  font-size: clamp(24px, 3.2vw, 34px);
}

/* =============================
   Topbar / Navigation (mobile-first)
   ============================= */
.sitebar{
  width: var(--container);
  margin: 18px auto 0;
  padding: 10px 12px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(31,166,168,0.22), rgba(15,111,115,0.12));
  border: 1px solid rgba(255,255,255,0.16);
}

.sitebar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

/* Logo */
.logo{
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.3px;
}
.brand-link{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.brand-logo{
  width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.20));
}

/* Actions rechts */
.sitebar__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* CTA */
.cta{
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  background: var(--accent);
  padding: 10px 12px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
}
.cta--compact{
  padding: 10px 12px;
  font-size: 14px;
}

/* Burger Button */
.menu-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
}
.menu-btn__icon{
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  border-radius: var(--r-pill);
}
.menu-btn__icon::before,
.menu-btn__icon::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: var(--r-pill);
}
.menu-btn__icon::before{ top: -6px; }
.menu-btn__icon::after{ top: 6px; }

/* Nav */
.nav{
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav--mobile{
  display:none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.nav--mobile.is-open{ display:flex; }

.nav a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.nav a[aria-current="page"]{
  border-color: rgba(242,232,92,0.75);
  box-shadow: 0 0 0 4px rgba(242,232,92,0.12);
}

/* Desktop: Nav immer sichtbar, Burger weg */
@media (min-width: 820px){
  .nav--mobile{
    display:flex;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    justify-content: center;
  }
  .menu-btn{ display:none; }
  .cta--compact{ font-size: 15px; padding: 10px 14px; }
  .brand-logo{ width: 170px; }
}

/* =============================
   Hero
   ============================= */
.hero{
  padding: 22px 22px 18px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(31,166,168,0.92), rgba(15,111,115,0.92));
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.hero::after{
  content:"";
  position:absolute;
  inset:-60px -80px auto auto;
  width: 260px;
  height: 260px;
  border-radius: var(--r-pill);
  background: radial-gradient(circle, rgba(78,207,208,0.55), transparent 60%);
  transform: rotate(12deg);
}

.hero__top{
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.brand{
  margin: 0;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.brand__name{
  display:block;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  text-shadow: 0 2px 0 rgba(0,0,0,0.20);
}
.brand__place{
  display:block;
  margin-top: 6px;
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 36px);
  color: var(--accent);
  text-shadow: 0 2px 0 rgba(0,0,0,0.25);
}

.hero__sub{
  margin: 14px 0 0;
  opacity: 0.95;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  position: relative;
  z-index: 1;
}

/* Buttons im Hero */
.hero__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--primary{
  color: var(--text);
  background: var(--accent);
  border-color: rgba(0,0,0,0.12);
}
.btn--ghost{
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* =============================
   24h Badge
   ============================= */
.badge{
  width: 150px;
  height: 150px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.25), transparent 55%),
    linear-gradient(180deg, rgba(6,34,38,0.35), rgba(6,34,38,0.65));
  border: 2px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.badge__inner{
  text-align: center;
  transform: translateY(-2px);
}
.badge__big{
  display:block;
  font-weight: 1000;
  font-size: 44px;
  letter-spacing: -1px;
  color: var(--white);
}
.badge__small{
  display:block;
  margin-top: 4px;
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.6px;
}

/* =============================
   Cards
   ============================= */
.card{
  margin-top: 16px;
  padding: 18px 18px 16px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
}
.card__title{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list__item{
  padding-left: 28px;
  position: relative;
  font-size: 18px;
  font-weight: 650;
  color: rgba(255,255,255,0.96);
}
.list__item::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 14px;
  border-radius: var(--r-pill);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(242,232,92,0.18);
  transform: translateY(-50%);
}

.hint{
  margin: 10px 0 0;
  font-size: 14px;
  opacity: 0.85;
}

/* =============================
   Contact
   ============================= */
.contact{
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  padding: 18px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(31,166,168,0.22), rgba(15,111,115,0.12));
  border: 1px solid rgba(255,255,255,0.16);
}
.contact__title{
  margin: 0 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: rgba(255,255,255,0.86);
}
.contact__text{
  margin: 0;
  font-size: 18px;
  font-weight: 650;
}
.contact__link,
.contact__phone,
.legal a,
.footer--links a{
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.35);
}
.contact__link:hover,
.contact__phone:hover,
.legal a:hover,
.footer--links a:hover{
  border-bottom-color: var(--accent);
}

@media (min-width: 720px){
  .contact{ grid-template-columns: 1fr 1fr; }
}

/* =============================
   Footer
   ============================= */
.footer{
  margin-top: 14px;
  text-align: center;
  opacity: 0.8;
}

.footer--links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0 2px;
}
.footer--links a{
  color: rgba(255,255,255,0.90);
  border-bottom-color: rgba(255,255,255,0.28);
}

/* =============================
   Legal Page
   ============================= */
.legal{
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  color: rgba(255,255,255,0.95);
}
.legal-list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
}

/* =============================
   Price table
   ============================= */
.table-wrap{
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
}
.price-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(255,255,255,0.04);
}
.price-table th,
.price-table td{
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.price-table thead th{
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}
.price-table tbody tr:hover{
  background: rgba(31,166,168,0.12);
}

/* =============================
   Gallery
   ============================= */
.gallery{
  display:grid;
  gap:12px;
  margin-top: 12px;
  grid-template-columns: 1fr;
}
.shot{
  margin:0;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.shot img{
  width:100%;
  height: 350px;
  object-fit: cover;
  display:block;
}
.shot figcaption{
  padding: 10px 12px;
  font-size: 14px;
  opacity: 0.9;
}
@media (min-width: 760px){
  .gallery{ grid-template-columns: repeat(3, 1fr); }
  .shot img{ height: 200px; }
}

/* =============================
   Interactions (Hover/Active/Focus)
   ============================= */
.btn, .cta, .nav a{
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    filter 140ms ease;
}
.btn:hover, .cta:hover, .nav a:hover{
  will-change: transform;
}

/* Primary Button (gelb) */
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.22);
  filter: brightness(1.03);
}
.btn--primary:active{
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 8px 16px rgba(0,0,0,0.18);
}

/* Ghost Button */
.btn--ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(242,232,92,0.55);
  box-shadow: 0 14px 26px rgba(0,0,0,0.18);
}
.btn--ghost:active{
  transform: translateY(0px) scale(0.98);
  background: rgba(255,255,255,0.10);
}

/* CTA + Nav */
.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.22);
  filter: brightness(1.02);
}
.cta:active{
  transform: translateY(0px) scale(0.98);
  box-shadow: var(--shadow-btn);
}

.nav a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(242,232,92,0.70);
  box-shadow: 0 10px 18px rgba(0,0,0,0.14);
}
.nav a:active{
  transform: translateY(0px) scale(0.98);
}

/* Accessibility: sichtbarer Focus (Tastatur) */
.btn:focus-visible,
.cta:focus-visible,
.nav a:focus-visible,
.menu-btn:focus-visible,
.call-fab:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring), var(--focus-elev);
  border-color: rgba(242,232,92,0.85);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce){
  .btn, .cta, .nav a{ transition: none; }
}

/* =============================
   Sticky Call Button (mobil)
   ============================= */
.call-fab{
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
  border: 1px solid rgba(0,0,0,0.10);
}
.call-fab__icon{ font-size: 18px; line-height: 1; }

@media (min-width: 820px){
  .call-fab{ display:none; }
}

/* -----------------------------
   Header – Handy zentriert
   ----------------------------- */
.sitebar{
  width: min(920px, 92vw);
  margin: 18px auto 0;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31,166,168,0.22), rgba(15,111,115,0.12));
  border: 1px solid rgba(255,255,255,0.16);
}

/* Mobile: Logo zentriert, Actions darunter */
.sitebar__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.brand-link{
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.brand-logo{
  width: 170px;      /* wirkt eigenständig */
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.20));
}

.sitebar__actions{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* CTA mobil */
.cta--mobile{
  font-size: 14px;
  padding: 10px 14px;
  white-space: nowrap;
}

/* Burger */
.menu-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
}

.menu-btn__icon{
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  border-radius: 999px;
}
.menu-btn__icon::before,
.menu-btn__icon::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}
.menu-btn__icon::before{ top: -6px; }
.menu-btn__icon::after{ top: 6px; }

/* Mobile Nav: zu, bei .is-open auf */
.nav--mobile{
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.14);
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav--mobile.is-open{
  display: flex;
}

/* Desktop: wieder "klassisch" nebeneinander */
@media (min-width: 820px){
  .sitebar__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .brand-logo{ width: 180px; }

  .nav--mobile{
    display: flex;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .menu-btn{ display: none; }
}
