/*
  VOXINA SALON TEMPLATE — HD-Style
  Nah an hdperformance-hairstudio.de
  ====================================
  THEME WECHSELN: Nur :root Variablen ändern.
  Zweite CSS-Datei nach dieser laden um zu überschreiben.
*/

/* === GOOGLE FONT (DSGVO: für Produktion selbst hosten!)
   Self-host tool: https://gwfh.mranftl.com/fonts/assistant      === */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600&display=swap');

/* ⚙ THEME-VARIABLEN — hier anpassen */
:root {
  --bg:           #ffffff;
  --surface:      #f7f7f7;
  --text:         #1a1a1a;
  --text-muted:   #777777;
  --border:       #e4e4e4;

  --nav-bg:       rgba(5, 5, 5, 0.88);
  --nav-text:     rgba(255,255,255,0.82);
  --nav-text-h:   #ffffff;

  --hero-overlay: rgba(0,0,0,0.42);

  --accent:       #1a1a1a;
  --accent-h:     #3a3a3a;
  --btn-text:     #ffffff;

  --footer-bg:    #030303;
  --footer-text:  rgba(255,255,255,0.65);
  --footer-text-h:#ffffff;

  --font:        'Assistant', system-ui, -apple-system, sans-serif;
  --nav-h:        72px;
  --max-w:        1160px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-weight: 300; line-height: 1.2; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(6px);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ⚙ ANPASSEN: Logo — Bild oder Text */
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nav-text-h);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nav-text);
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active { color: var(--nav-text-h); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--nav-text-h);
  transition: all 0.3s;
}

/* === HERO (Startseite) === */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 3.5rem;

  /* ⚙ ANPASSEN: Salon-Foto einfügen */
  background-color: #1c1c1c;
  /* background-image: url('../img/hero.jpg'); */
  background-size: cover;
  background-position: center;
}

/* Dunkles Overlay über dem Foto */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

/* Platzhalter-Text wenn noch kein Foto da ist */
.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 2rem;
  width: 100%;
}

/* ⚙ ANPASSEN: Haupt-Slogan */
.hero-title {
  font-size: clamp(1.2rem, 3.5vw, 2.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: rgba(0,0,0,0.25) 1px 1px 4px;
  margin-bottom: 1.75rem;
}

.hero-scroll {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}
.hero-scroll:hover { color: #fff; transform: translateY(3px); }

/* === CONTAINER === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === SECTION STANDARD === */
.section {
  padding: 5rem 0;
}
.section.surface { background: var(--surface); }
.section.bordered { border-top: 1px solid var(--border); }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.section-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 68ch;
}

.section-text.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--btn-text);
  padding: 0.9rem 2.5rem;
  font-family: var(--font);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--accent-h); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: #fff; }

/* === WELCOME SECTION (Startseite) === */
.welcome-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
}
.welcome-text strong { color: var(--text); font-weight: 600; }

/* === LEISTUNGEN PREVIEW (Startseite) === */
.leistungen-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.lp-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.lp-item:last-child { border-right: none; }
.lp-item:hover { background: var(--surface); }

.lp-item h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.lp-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.lp-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === INFO STRIP === */
.info-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-item {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
}
.info-item:last-child { border-right: none; }

.info-item .item-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.info-item p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.8;
}

/* === SEITEN-HEADER (Unterseiten) === */
.page-hero {
  background: #1a1a1a;
  height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;

  /* ⚙ ANPASSEN: Seitenspezifisches Foto */
  /* background-image: url('../img/hero-leistungen.jpg'); */
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 300;
}

/* === LEISTUNGEN SEITE === */
.service-block {
  margin: 0 0 4.25rem;
  padding: 0 0 4.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.service-block + .service-block { margin-top: 0.75rem; }
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.service-block-title {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 3.4rem 0 1.7rem;
  padding: 1.15rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.service-block-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.service-row + .service-block-title { margin-top: 3.2rem; }

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  column-gap: clamp(2rem, 7vw, 7rem);
  row-gap: 0.4rem;
}
.service-row:last-child { border-bottom: none; padding-bottom: 1.5rem; }

.service-name { font-size: 1rem; font-weight: 300; line-height: 1.55; max-width: 54rem; }
.service-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.45rem; line-height: 1.5; }
.service-price { font-size: 0.92rem; color: var(--text-muted); white-space: nowrap; line-height: 1.55; padding-top: 0.02rem; text-align: right; }

/* === GALERIE SEITE === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 4rem;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

/* ⚙ Platzhalter-Farben bis echte Fotos da sind */
.gallery-item:nth-child(1) { background: #2a2826; }
.gallery-item:nth-child(2) { background: #262828; }
.gallery-item:nth-child(3) { background: #28262a; }
.gallery-item:nth-child(4) { background: #242a28; }
.gallery-item:nth-child(5) { background: #2a2426; }
.gallery-item:nth-child(6) { background: #262624; }
.gallery-item:nth-child(7) { background: #282626; }
.gallery-item:nth-child(8) { background: #242628; }
.gallery-item:nth-child(9) { background: #26282a; }

.gallery-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
}

/* Beim hover leicht aufhellen */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.03); }

/* === TEAM SEITE === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.team-card .photo {
  aspect-ratio: 3/4;
  background: var(--surface);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}

.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .photo-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--border);
}

.team-card h3 { font-size: 1rem; margin-bottom: 0.25rem; font-weight: 400; }
.team-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.team-card .langs { font-size: 0.8rem; color: var(--text-muted); }

/* === BUCHUNGS-SEITE === */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: start;
}

.booking-info h2 { font-size: 1.3rem; margin-bottom: 1rem; font-weight: 300; }
.booking-info > p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.info-list { list-style: none; border-top: 1px solid var(--border); }
.info-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.info-list .lbl {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font);
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--text); }
.form-group textarea { height: 110px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23777' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; }
.form-note a { text-decoration: underline; }

.success-msg {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}
.success-msg .check { font-size: 1.8rem; margin-bottom: 0.75rem; }
.success-msg h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 300; }
.success-msg p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }

/* === FOOTER === */
footer {
  background: var(--footer-bg);
  padding: 3.5rem 0 0;
  color: var(--footer-text);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--footer-text);
  line-height: 1.85;
  max-width: 25ch;
}

.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.82rem; }
.footer-col a { color: var(--footer-text); transition: color 0.2s; }
.footer-col a:hover { color: var(--footer-text-h); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; list-style: none; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* === ANFAHRT === */
.anfahrt-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.anfahrt-info { padding-top: 0.5rem; }
.voxina-map {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 4px;
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .booking-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .anfahrt-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .leistungen-preview { grid-template-columns: 1fr; }
  .lp-item { border-right: none; border-bottom: 1px solid var(--border); }
  .lp-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: #030303;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.1rem; color: #fff; }
  .nav-toggle { display: flex; }

  .info-strip-inner { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); }
  .info-item:last-child { border-bottom: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }

  .team-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}
