/* ==========================================================================
   Baan Thai — Massage & Spa · Bern
   Stylesheet · Entwurf v0.1
   Farbkonzept: Cremeweiss / Beige / Dunkelbraun · Gold als glänzender Akzent
   ========================================================================== */

:root {
  --braun-tief:   #241408;
  --braun:        #35200f;
  --braun-warm:   #52301a;
  --creme:        #faf5ea;
  --creme-warm:   #f3ead7;
  --gold:         #c9a35c;
  --gold-hell:    #f0dfae;
  --gold-dunkel:  #8a6535;
  --text:         #38281a;
  --text-hell:    #6b5540;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', 'Segoe UI', sans-serif;

  --gold-verlauf: linear-gradient(105deg,
      #8a6535 0%, #c9a35c 22%, #f7e8b8 50%, #c9a35c 78%, #8a6535 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: .4em;
}

.section-lead {
  max-width: 620px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-hell);
}

/* Gold-Glanz für Titel auf dunklem Grund — metallischer Verlauf,
   Schimmer läuft einmalig durch (kein Dauerlauf: schont den Renderer) */
.gold-text {
  background: var(--gold-verlauf);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 2.4s ease-out 1 both;
}

@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: 0% center; }
}

/* Goldene Trennlinie */
.gold-divider {
  width: 140px;
  height: 2px;
  margin: 0 auto 2.2rem;
  border: none;
  background: var(--gold-verlauf);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem clamp(1rem, 4vw, 3rem);
  background: rgba(36, 20, 8, .96);
  border-bottom: 1px solid rgba(201, 163, 92, .25);
}

.nav__logo img {
  height: 52px;
  width: auto;
  mix-blend-mode: lighten;   /* dunkler Logo-Grund verschwindet auf dunkler Leiste */
}

.nav__links {
  display: flex;
  gap: clamp(.8rem, 2vw, 1.8rem);
  list-style: none;
  align-items: center;
}

.nav__links a {
  color: var(--creme-warm);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s;
}

.nav__links a:hover { color: var(--gold-hell); }

.nav__cta {
  padding: .55em 1.4em;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-hell) !important;
}

.nav__cta:hover { background: rgba(201, 163, 92, .15); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse at 50% 26%, rgba(140, 92, 38, .5), rgba(36, 20, 8, .55) 62%, rgba(24, 13, 5, .9) 100%),
    url('../img/hero-bg.jpg?v=3') center / cover no-repeat;
  color: var(--creme);
  overflow: hidden;
}

.hero::after {           /* sanfte Vignette unten für Übergang */
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--creme));
  opacity: 0;            /* Hero endet dunkel — Übergang via Intro-Band */
}

.hero__logo {
  width: min(560px, 82vw);
  mix-blend-mode: lighten;
  margin-bottom: 2.2rem;
  animation: heroFade 1.6s ease-out both;
}

.hero__claim {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  max-width: 640px;
  margin-bottom: 2.6rem;
  color: var(--creme-warm);
  animation: heroFade 1.6s ease-out .3s both;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFade 1.6s ease-out .6s both;
}

.hero__meta {
  margin-top: 3rem;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  animation: heroFade 1.6s ease-out .9s both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Buttons */

.btn {
  display: inline-block;
  padding: .95em 2.4em;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform .25s, box-shadow .25s, background .25s;
}

.btn--gold {
  background: var(--gold-verlauf);
  background-size: 200% auto;
  background-position: 100% center;
  color: var(--braun-tief);
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(201, 163, 92, .35);
  transition: transform .25s, box-shadow .25s, background-position .6s;
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201, 163, 92, .5);
  background-position: 0% center;   /* Glanz läuft beim Überfahren durch */
}

.btn--ghost {
  border: 1px solid var(--gold);
  color: var(--gold-hell);
}

.btn--ghost:hover { background: rgba(201, 163, 92, .15); }

/* --------------------------------------------------------------------------
   Seitenkopf für Unterseiten (Angebot, Buchung)
   -------------------------------------------------------------------------- */

.page-header {
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(140, 92, 38, .45), rgba(36, 20, 8, .6) 60%, rgba(24, 13, 5, .92) 100%),
    url('../img/hero-bg.jpg?v=3') center / cover no-repeat;
  color: var(--creme-warm);
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: .5em;
}

.page-header p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(243, 234, 215, .9);
}

.page-header a { color: var(--gold-hell); }

/* --------------------------------------------------------------------------
   Preisliste (Angebotsseite)
   -------------------------------------------------------------------------- */

.preisliste {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.preis-zeile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 4px 18px rgba(56, 40, 26, .07);
}

.preis-zeile h3 {
  font-size: 1.4rem;
  margin-bottom: .35rem;
}

.preis-zeile p {
  font-size: .92rem;
  color: var(--text-hell);
}

.preis-zeile__preise {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  text-align: right;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-dunkel);
  white-space: nowrap;
}

.preisliste--dark .preis-zeile {
  background: rgba(250, 245, 234, .06);
  border-left-color: var(--gold);
  box-shadow: none;
}

.preisliste--dark .preis-zeile h3 { color: var(--gold-hell); }
.preisliste--dark .preis-zeile p { color: rgba(243, 234, 215, .75); }
.preisliste--dark .preis-zeile__preise { color: var(--gold); }

@media (max-width: 640px) {
  .preis-zeile { grid-template-columns: 1fr; }
  .preis-zeile__preise { flex-direction: row; flex-wrap: wrap; text-align: left; }
}

/* Hinweistext unter der Buchung */
.booking__hinweis {
  margin-top: 1.2rem;
  text-align: center;
  font-size: .85rem;
  color: var(--text-hell);
}

/* --------------------------------------------------------------------------
   Artikel (Geschichte-Seite)
   -------------------------------------------------------------------------- */

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article p {
  font-size: 1.06rem;
  margin-bottom: 1.4rem;
  color: var(--text);
}

.article__figure {
  margin: 2.4rem 0;
}

.article__figure img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px 30px rgba(56, 40, 26, .15);
}

.article__quote {
  margin: 2.4rem 0;
  padding: 1.4rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 163, 92, .08);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--braun-warm);
}

.article__hinweis {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(56, 40, 26, .15);
  font-size: .9rem !important;
  color: var(--text-hell) !important;
}

/* --------------------------------------------------------------------------
   Sektionen — Grundraster
   -------------------------------------------------------------------------- */

.section { padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem); }

.section--creme { background: var(--creme); }
.section--warm  { background: var(--creme-warm); }

.section--dark {
  /* Vektor-Damast (hell) wird per Multiply braun eingefaerbt — Marken-Look der Broschuere */
  background:
    radial-gradient(ellipse at 50% 0%, rgba(140, 92, 38, .38), rgba(36, 20, 8, .82) 75%),
    url('../img/damast-hell.jpg?v=3') center / 1400px auto repeat;
  background-blend-mode: normal, multiply;
  background-color: var(--braun-warm);
  color: var(--creme-warm);
}

.wrap { max-width: 1100px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   Intro — Baan = Haus
   -------------------------------------------------------------------------- */

.intro { text-align: center; }

.intro p {
  max-width: 680px;
  margin: 0 auto 1.2rem;
  font-size: 1.06rem;
}

.intro .accent {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--braun-warm);
}

/* --------------------------------------------------------------------------
   Angebot — Behandlungs-Karten
   -------------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(56, 40, 26, .08);
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(56, 40, 26, .16);
}

.card__img {
  height: 210px;
  object-fit: cover;
  width: 100%;
}

.card__body { padding: 1.5rem 1.6rem 1.7rem; }

.card__body h3 {
  font-size: 1.45rem;
  margin-bottom: .4rem;
}

.card__body p {
  font-size: .92rem;
  color: var(--text-hell);
  margin-bottom: 1rem;
}

.card__price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-dunkel);
  letter-spacing: .04em;
}

.cards-footer { text-align: center; margin-top: 3rem; }

/* --------------------------------------------------------------------------
   Gutscheine — dunkles Band
   -------------------------------------------------------------------------- */

.gutschein { text-align: center; }

.gutschein p {
  max-width: 560px;
  margin: 0 auto 2.2rem;
  color: rgba(243, 234, 215, .85);
}

/* --------------------------------------------------------------------------
   Galerie
   -------------------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 3px;
  transition: transform .4s, box-shadow .4s;
}

.gallery img:hover {
  transform: scale(1.025);
  box-shadow: 0 10px 30px rgba(56, 40, 26, .25);
}

/* --------------------------------------------------------------------------
   Philosophie / Über uns
   -------------------------------------------------------------------------- */

.philo { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.philo img { border-radius: 3px; }

.philo h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }

.philo p { margin-bottom: 1rem; color: var(--text-hell); }

@media (max-width: 820px) { .philo { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Bewertungen (Platzhalter im Entwurf)
   -------------------------------------------------------------------------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.review {
  background: #fff;
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  padding: 1.8rem;
  box-shadow: 0 6px 24px rgba(56, 40, 26, .08);
}

.review__stars { color: var(--gold); letter-spacing: .2em; margin-bottom: .8rem; }

.review__text { font-style: italic; font-size: .95rem; margin-bottom: 1rem; }

.review__author { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-hell); }

.draft-note {
  max-width: 620px;
  margin: 2rem auto 0;
  padding: .8rem 1.2rem;
  border: 1px dashed var(--gold);
  font-size: .8rem;
  color: var(--text-hell);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Praktisches — Öffnungszeiten / Adresse / Barzahlung
   -------------------------------------------------------------------------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}

.info-grid h3 {
  font-size: 1.3rem;
  margin-bottom: .6rem;
  color: var(--gold-hell);
}

.info-grid p { color: rgba(243, 234, 215, .85); font-size: .95rem; }

.info-grid a { color: var(--gold-hell); }

/* --------------------------------------------------------------------------
   Buchung
   -------------------------------------------------------------------------- */

.booking iframe {
  width: 100%;
  height: 680px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 8px 30px rgba(56, 40, 26, .12);
  background: #fff;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--braun-tief);
  color: rgba(243, 234, 215, .7);
  text-align: center;
  padding: 2.6rem 1.5rem;
  font-size: .85rem;
}

.footer img {
  height: 60px;
  margin: 0 auto 1.2rem;
  mix-blend-mode: lighten;
}

/* --------------------------------------------------------------------------
   Scroll-Einblendungen
   -------------------------------------------------------------------------- */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}

.fade-up.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .gold-text { animation: none; }
  .hero__logo, .hero__claim, .hero__actions, .hero__meta { animation: none; }
}

/* --------------------------------------------------------------------------
   Responsive Feinheiten
   -------------------------------------------------------------------------- */

/* Mobiles Menü (Hamburger) */

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .6rem;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin: 6px 0;
  transition: transform .3s, opacity .3s;
}

.nav--open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav__toggle { display: block; }

  .nav__links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.3rem;
    padding: 1.8rem 1.5rem 2.2rem;
    background: rgba(24, 13, 5, .98);
    border-bottom: 1px solid rgba(201, 163, 92, .3);
    text-align: center;
  }

  .nav--open .nav__links { display: flex; }

  .nav__links a { font-size: .95rem; }

  .booking iframe { height: 640px; }
  .hero { min-height: 92vh; }
}
