/* ══════════════════════════════════════════════════════════════
   Gemeinsame Komponenten: Buchungs-Aktionen, Preisliste, Kontakt
   Wird NACH dem seitenspezifischen Stylesheet geladen.
   ══════════════════════════════════════════════════════════════ */

/* ── Buchungs-Aktionen (WhatsApp / Telefon) ── */
.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color .25s, background .25s, transform .2s;
}
.booking-action:hover { transform: translateY(-2px); }

.booking-action-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.1rem;
}

.booking-action-text { display: flex; flex-direction: column; gap: 2px; }

.booking-action-label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .65;
}

.booking-action-value {
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.booking-action-sub {
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .04em;
  opacity: .75;
  margin-top: 3px;
}

.booking-action--whatsapp {
  background: rgba(37, 211, 102, .08);
  border-color: rgba(37, 211, 102, .35);
}
.booking-action--whatsapp:hover { border-color: rgba(37, 211, 102, .7); background: rgba(37, 211, 102, .14); }
.booking-action--whatsapp .booking-action-icon { background: rgba(37, 211, 102, .18); }

.booking-action--phone:hover { border-color: currentColor; }

.booking-action--beautinda {
  background: var(--gold-dim, rgba(198,158,80,.1));
  border-color: var(--gold-border, rgba(198,158,80,.35));
}
.booking-action--beautinda:hover {
  border-color: var(--gold, #c69e50);
  background: rgba(198,158,80,.18);
}
.booking-action--beautinda .booking-action-icon { background: rgba(198,158,80,.2); }

/* ── Preisliste (theme-neutral: nutzt die Variablen der jeweiligen Seite) ── */
.prices { padding: 0 0 120px; }

.prices-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.prices-desc {
  max-width: 44ch;
  color: var(--muted2);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
}

.price-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px 64px;
  margin-top: 24px;
}

.price-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: inherit;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.price-group-note {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  font-size: .9rem;
  font-weight: 300;
}

.price-name {
  color: var(--muted2);
  min-width: 0;
}

.price-dots {
  flex: 1;
  border-bottom: 1px dotted currentColor;
  opacity: .25;
  transform: translateY(-4px);
  min-width: 20px;
}

.price-value {
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: .03em;
  color: inherit;
}

.price-note {
  margin-top: 40px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Kontakt-Sektion (Startseite) ── */
.contact { padding: 0 0 120px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border-gold);
}

.contact-card {
  background: var(--surface);
  padding: 42px 38px 38px;
  display: flex;
  flex-direction: column;
}

.contact-card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.contact-card-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-card-body {
  color: var(--muted2);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
}
.contact-card-body strong {
  display: block;
  color: var(--cream, var(--text));
  font-weight: 500;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.contact-card-link {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .25s;
}
.contact-card-link::after { content: '\2192'; }
.contact-card-link:hover { gap: 16px; }

.contact-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact-hours li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  font-size: .92rem;
  font-weight: 300;
}
.ch-day { color: var(--cream, var(--text)); }
.ch-time { color: var(--muted2); white-space: nowrap; }

.contact-channel { padding: 7px 0; }
.contact-channel-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-channel a {
  color: var(--cream, var(--text));
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: .02em;
  transition: color .2s;
}
.contact-channel a:hover { color: var(--gold); }

.contact-area-links {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-area-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border: 1px solid var(--border);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream, var(--text));
  transition: border-color .25s, background .25s, color .25s;
}
.contact-area-links a:hover {
  border-color: var(--gold);
  background: var(--gold-dim, rgba(198,158,80,.1));
  color: var(--gold);
}
.contact-area-links a span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}


/* ── Anfahrt: ein Kasten mit Karte (Startseite) ── */
.contact-map-box {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--border-gold);
  background: var(--surface);
  overflow: hidden;
}

.contact-map-info {
  padding: 38px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
  filter: grayscale(.9) contrast(.95);
  transition: filter .4s;
}
.contact-map-box:hover .contact-map { filter: grayscale(0); }

/* ── Header: klickbares Logo ── */
.nav-logo a { display: flex; align-items: center; }

/* ── Header: Bereichs-Links neben dem Badge (Unterseiten) ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Exakt gleiche Typo & Farbe wie der Badge-Text — nur ohne Border & Punkt */
.header-areas {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.header-areas a {
  color: var(--muted2);
  padding: 7px 0;
  transition: color .2s;
}
.header-areas a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .header-areas { display: none; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .prices { padding: 0 0 80px; }
  .contact { padding: 0 0 80px; }
  .prices-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 34px;
    padding-bottom: 18px;
  }
  .price-groups { gap: 36px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { padding: 30px 24px; }
  .contact-map-box { grid-template-columns: 1fr; }
  .contact-map-info { padding: 28px 24px; }
  .contact-map { min-height: 300px; }
}
