/* ===========================================================
   Salon Claudia – Launch / Closure Page
   Design Tokens übernommen von salonclaudia.ch
   =========================================================== */

:root {
  --bg:         #1a1a1a;
  --bg-deep:    #0e0e0e;
  --text:       #f5f1ea;
  --muted:      #b9bcbf;
  --muted-soft: #8a8d90;
  --gold:       #c9a14a;
  --gold-deep:  #a48624;
  --gold-soft:  #e2c477;
  --border:     rgba(201, 161, 74, .35);

  --font-body:   'Roboto', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --font-script: 'Qwigley', 'Brush Script MT', cursive;

  --radius-card: 30px;

  --shadow-text: 0 2px 18px rgba(0, 0, 0, .95), 0 1px 4px rgba(0, 0, 0, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--gold-soft); }

/* ===========================================================
   Hero
   =========================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px 48px;
  background-image: url("img/hero.jpg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
  isolation: isolate;
}

/* Leichter Overlay: Bild bleibt sichtbar, Lesbarkeit über Vignette + Text-Shadows */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at center,
      rgba(0, 0, 0, .10) 0%,
      rgba(0, 0, 0, .35) 70%,
      rgba(0, 0, 0, .60) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .12) 30%,
      rgba(0, 0, 0, .15) 60%,
      rgba(0, 0, 0, .60) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 44px 46px 40px;
  background: rgba(14, 14, 14, .55);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* ===========================================================
   Brand
   =========================================================== */

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-shadow: var(--shadow-text);
}

.brand__script {
  font-family: var(--font-script);
  font-size: clamp(84px, 12vw, 140px);
  color: var(--gold-soft);
  line-height: 0.85;
  margin-bottom: -8px;
  letter-spacing: .5px;
}

.brand__name {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 16px;
  color: var(--text);
  padding-left: 16px;
  margin-top: 6px;
}

/* ===========================================================
   Divider
   =========================================================== */

.divider {
  position: relative;
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: .85;
  margin: 4px 0;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.divider::before { left: -10px; }
.divider::after  { right: -10px; }

/* ===========================================================
   Typo
   =========================================================== */

.headline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(22px, 3.2vw, 26px);
  color: var(--gold-soft);
  margin: 0;
  letter-spacing: 1.5px;
  text-shadow: var(--shadow-text);
}

.lead {
  font-weight: 300;
  font-size: clamp(19px, 2.1vw, 23px);
  color: var(--text);
  margin: 0;
  max-width: 540px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 1), 0 1px 3px rgba(0, 0, 0, 1);
  line-height: 1.5;
}

.lead--muted { color: var(--text); font-size: clamp(17px, 1.9vw, 20px); }

.lead strong {
  color: var(--gold-soft);
  font-weight: 400;
}

.lead time {
  color: var(--gold-soft);
  font-weight: 500;
  white-space: nowrap;
}

/* ===========================================================
   Primary CTA – Link zu dominaclaudia.ch
   =========================================================== */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(201, 161, 74, .25),
    inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cta:hover {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: #0e0e0e;
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(201, 161, 74, .35),
    0 0 0 1px rgba(226, 196, 119, .4),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

.cta__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  opacity: .65;
  font-weight: 600;
}

.cta__url {
  font-size: clamp(16px, 2vw, 19px);
  letter-spacing: .5px;
  font-weight: 500;
}

.cta__arrow {
  font-size: 18px;
  transition: transform .25s ease;
  opacity: .85;
}

.cta:hover .cta__arrow { transform: translateX(5px); opacity: 1; }

/* ===========================================================
   Kontakt-Karte (Glass-Look im Oxygen-Stil)
   =========================================================== */

.card {
  margin-top: 4px;
  padding-top: 26px;
  width: 100%;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.card__label {
  font-size: clamp(20px, 2.6vw, 26px);
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  font-weight: 500;
}

.card__phone {
  font-size: clamp(26px, 3vw, 32px);
  color: var(--text);
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 2px;
}

.card__phone:hover { color: var(--gold-soft); }

.card__copy {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===========================================================
   Footer
   =========================================================== */

.footer {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  font-size: 13px;
  color: var(--muted-soft);
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .9);
}

/* ===========================================================
   Responsive
   =========================================================== */

@media (max-width: 991px) {
  .hero { background-attachment: scroll; background-position: center 20%; }
}

@media (max-width: 767px) {
  .hero { padding: 24px 14px 24px; }
  .hero__inner { gap: 16px; padding: 28px 18px 26px; border-radius: 18px; }

  /* Proportional kleinere Schriften fürs Handy (wie verkleinerter Desktop) */
  .brand__script { font-size: 66px; }
  .brand__name   { font-size: 17px; letter-spacing: 8px; padding-left: 8px; }
  .headline      { font-size: 20px; }
  .lead          { font-size: 15.5px; line-height: 1.45; }
  .lead--muted   { font-size: 14px; }
  .card__label   { font-size: 15px; letter-spacing: 4px; }
  .card__phone   { font-size: 22px; }
  .card          { padding-top: 20px; }
  .divider       { margin: 2px 0; }

  .cta { padding: 12px 24px; gap: 10px; }
  .cta__url { font-size: 16px; }
  .cta__arrow { display: none; }
}

@media (max-width: 479px) {
  .cta {
    padding: 13px 22px;
    text-align: center;
    width: 100%;
  }
  .brand__script { font-size: 58px; margin-bottom: -6px; }
  .brand__name   { font-size: 15px; letter-spacing: 6px; padding-left: 6px; }
  .headline      { font-size: 19px; }
  .lead          { font-size: 15px; }
  .lead--muted   { font-size: 13.5px; }
  .card__phone   { font-size: 21px; }
}
