/* -----------------------------
   Farbpalette (Türkis)
   ----------------------------- */
:root{
  --turquoise: #1FA6A8;      /* Haupt-Türkis */
  --turquoise-dark: #0F6F73; /* dunkles Türkis */
  --turquoise-light: #4ECFD0;/* helles Türkis */

  --accent: #F2E85C;         /* gelblicher Akzent */
  --text: #0B2F33;           /* sehr dunkles Türkis/Anthrazit */
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.20);
  --border: rgba(255, 255, 255, 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;
  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%);
  color: var(--white);
}

/* -----------------------------
   Flyer Layout
   ----------------------------- */
.flyer{
  width: min(920px, 92vw);
  margin: 32px auto;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(31,166,168,0.15), rgba(15,111,115,0.10));
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px var(--shadow);
}

/* -----------------------------
   Hero
   ----------------------------- */
.hero{
  padding: 22px 22px 18px;
  border-radius: 16px;
  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: 999px;
  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;
}

/* -----------------------------
   24h Badge
   ----------------------------- */
.badge{
  width: 150px;
  height: 150px;
  border-radius: 999px;
  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: 16px;
  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: 999px;
  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: 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);
}

.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{
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.35);
}

.contact__link:hover,
.contact__phone:hover{
  border-bottom-color: var(--accent);
}

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

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

	  
	  /* -----------------------------
   Topbar / Navigation
   ----------------------------- */
.sitebar{
  width: min(920px, 92vw);
  margin: 18px auto 0;
  padding: 12px 14px;
  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);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.logo{
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.nav{
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.nav a:hover{
  border-color: rgba(242,232,92,0.55);
}

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

.cta{
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  background: var(--accent);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
}

/* -----------------------------
   Pages
   ----------------------------- */
.page{
  width: min(920px, 92vw);
  margin: 14px auto 32px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(31,166,168,0.15), rgba(15,111,115,0.10));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 40px var(--shadow);
}

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

.legal{
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  color: rgba(255,255,255,0.95);
}

.legal a{
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.35);
}

.legal a:hover{ border-bottom-color: var(--accent); }

.legal-list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
}

/* -----------------------------
   Buttons on index 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: 999px;
  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);
}

/* -----------------------------
   Footer links
   ----------------------------- */
.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);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.28);
}

.footer--links a:hover{
  border-bottom-color: var(--accent);
}

/* -----------------------------
   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 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);
}

@media (min-width: 820px){
  .nav{ display: flex; }
}

	  
	  .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: 220px;
  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;
  }
}
