/* ============================================================
   Siam Wellness Point – Stylesheet
   Farbwelt der Originalseite: Lavendel, Flieder, Violett, Beere
   ============================================================ */

:root {
  --lavendel-hell: #f8f4fb;
  --lavendel: #e6d1ec;
  --flieder: #c7acda;
  --violett: #9075a4;
  --violett-dunkel: #5d4472;
  --nacht: #372a44;
  --beere: #862d59;
  --beere-dunkel: #7a274d;
  --text: #352b3e;
  --text-hell: #6f627e;
  --weiss: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 18px;
  --schatten: 0 10px 30px rgba(93, 68, 114, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--lavendel-hell);
  line-height: 1.65;
  font-size: 17px;
}

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

section { scroll-margin-top: 90px; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--violett-dunkel); }

h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }

.sektion { padding: 84px 0; }

.sektion-kopf { text-align: center; max-width: 720px; margin: 0 auto 48px; }

.sektion-kopf p { color: var(--text-hell); font-size: 1.06rem; }

.linie {
  width: 64px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--flieder), var(--beere));
  margin: 14px auto 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 700; text-decoration: none; font-size: 1rem; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(122, 39, 77, .3); }
.btn-beere {
  background: linear-gradient(135deg, var(--beere), var(--beere-dunkel)); color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.btn-hell { background: #fff; color: #6b1f44; box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.btn-hell:hover { background: #fff; color: #5a1938; }
.btn-kontur { border: 2px solid var(--beere); color: #6b1f44; background: #fff; }
.btn-kontur:hover { background: var(--beere); color: #fff; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(93,68,114,.10);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 16px;
}
.marke { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.marke img { height: 48px; width: auto; }
.marke span {
  font-family: var(--serif); font-size: 1.05rem; color: var(--violett-dunkel);
  letter-spacing: .04em; white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  text-decoration: none; color: var(--text); font-weight: 500; font-size: .97rem;
  padding: 4px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.nav a:hover { color: var(--beere); border-color: var(--beere); }
.nav .btn { padding: 10px 22px; font-size: .93rem; }
.nav .btn:hover { border-color: transparent; color: #fff; }

/* Mobile Navigation */
.nav-toggle { display: none; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
}
.nav-burger span {
  width: 26px; height: 3px; border-radius: 2px; background: var(--violett-dunkel);
  transition: transform .2s, opacity .2s;
}

@media (max-width: 900px) {
  .marke span { display: none; }
  .nav-burger { display: flex; }
  .nav {
    position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(255,255,255,.98); flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
    box-shadow: 0 12px 20px rgba(93,68,114,.15);
  }
  .nav a { padding: 14px 24px; width: 100%; text-align: center; border-bottom: 1px solid var(--lavendel); }
  .nav .btn { margin: 14px auto; width: auto; }
  .nav-toggle:checked ~ .nav { max-height: 560px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: 150px 0 90px; color: #fff;
  background:
    linear-gradient(115deg, rgba(55,42,68,.88) 0%, rgba(93,68,114,.82) 45%, rgba(134,45,89,.72) 100%),
    url("img/lounge-sofa.jpg") center / cover no-repeat;
}
.hero-inhalt { max-width: 760px; }
.hero h1 {
  color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.18; margin-bottom: 20px;
}
.hero .untertitel { font-size: 1.18rem; color: #f0e6f7; margin-bottom: 30px; max-width: 620px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.badge {
  background: rgba(40,28,52,.45); border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px; padding: 8px 18px; font-size: .92rem; backdrop-filter: blur(4px);
  color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.35); font-weight: 500;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Über uns ---------- */
.ueber-grid {
  display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center;
}
.portrait-rahmen {
  background: linear-gradient(160deg, var(--lavendel), var(--flieder));
  border-radius: 50%; aspect-ratio: 1; width: 100%; max-width: 340px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; box-shadow: var(--schatten); margin: 0 auto;
}
.portrait-rahmen img { width: 82%; height: auto; }
.ueber-text h2 { margin-bottom: 6px; }
.ueber-text .rolle { color: var(--beere); font-weight: 600; margin-bottom: 16px; }
.ueber-text p { margin-bottom: 14px; color: var(--text-hell); }
.ueber-fakten { display: flex; gap: 34px; margin-top: 22px; flex-wrap: wrap; }
.fakt strong { font-family: var(--serif); font-size: 1.9rem; color: var(--violett-dunkel); display: block; }
.fakt span { color: var(--text-hell); font-size: .93rem; }

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

/* ---------- Video ---------- */
.video-sektion { background: linear-gradient(180deg, var(--lavendel-hell), var(--lavendel)); }
.video-rahmen {
  max-width: 400px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--schatten); background: #000;
}
.video-rahmen video { width: 100%; display: block; }

/* ---------- Galerie / Rundgang ---------- */
.galerie {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.galerie a { border-radius: 14px; overflow: hidden; display: block; position: relative; }
.galerie img {
  width: 100%; height: 210px; object-fit: cover; transition: transform .35s ease;
}
.galerie a:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .galerie { grid-template-columns: repeat(2, 1fr); } .galerie img { height: 170px; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(35,25,45,.92); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 4vw;
}
.lightbox:target { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .schliessen {
  position: absolute; top: 22px; right: 30px; color: #fff; font-size: 2.4rem;
  text-decoration: none; line-height: 1;
}

/* ---------- Leistungen ---------- */
.leistungen { background: var(--weiss); }
.karten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.karte {
  background: var(--lavendel-hell); border: 1px solid var(--lavendel);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.karte:hover { transform: translateY(-5px); box-shadow: var(--schatten); }
.karte .symbol {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--flieder), var(--violett));
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.karte h3 { font-size: 1.18rem; margin-bottom: 10px; }
.karte p { color: var(--text-hell); font-size: .96rem; }
@media (max-width: 900px) { .karten-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .karten-grid { grid-template-columns: 1fr; } }

/* ---------- Preise ---------- */
.preise {
  background:
    linear-gradient(135deg, rgba(122,39,77,.94), rgba(93,68,114,.94)),
    url("img/gemaelde-wat-arun.jpg") center / cover no-repeat;
  color: #fff;
}
.preise .sektion-kopf h2, .preise .sektion-kopf p { color: #fff; }
.preise .sektion-kopf p { opacity: .85; }
.preis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.preis-karte {
  background: rgba(255,255,255,.96); color: var(--text);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: 0 8px 26px rgba(0,0,0,.18);
}
.preis-karte h3 { font-size: 1.12rem; margin-bottom: 14px; color: var(--beere-dunkel); }
.preis-karte ul { list-style: none; }
.preis-karte li {
  display: flex; justify-content: space-between; padding: 7px 0;
  border-bottom: 1px dashed var(--lavendel); font-size: .97rem;
}
.preis-karte li:last-child { border-bottom: none; }
.preis-karte li strong { color: var(--violett-dunkel); }
.preis-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; list-style: none; padding: 0; }
.preis-karte .preis-tags li,
.preis-karte .preis-tags li:last-child {
  background: var(--lavendel-hell); border: 1px solid var(--flieder);
  border-radius: 999px; padding: 3px 12px; font-size: .84rem; color: var(--violett-dunkel);
  display: inline-block;
}
.preis-hinweis { text-align: center; margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 900px) { .preis-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .preis-grid { grid-template-columns: 1fr; } }

/* ---------- Neuigkeiten ---------- */
.neuigkeiten { background: var(--weiss); }
.hinweis-band {
  background: linear-gradient(135deg, var(--lavendel), var(--flieder));
  border-radius: var(--radius); padding: 34px 36px; display: flex; gap: 22px;
  align-items: center; flex-wrap: wrap; box-shadow: var(--schatten);
}
.hinweis-band .emoji { font-size: 2.4rem; }
.hinweis-band h3 { margin-bottom: 6px; }
.hinweis-band p { color: var(--violett-dunkel); max-width: 760px; }

/* ---------- Buchung ---------- */
.buchung { background: linear-gradient(180deg, var(--lavendel-hell), var(--lavendel)); }
.buchung-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.buchung-karte {
  background: var(--weiss); border-radius: var(--radius); padding: 30px 24px;
  text-align: center; box-shadow: 0 6px 18px rgba(93,68,114,.10);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .2s ease;
}
.buchung-karte:hover { transform: translateY(-5px); }
.buchung-karte .symbol { font-size: 2rem; }
.buchung-karte h3 { font-size: 1.08rem; }
.buchung-karte p { color: var(--text-hell); font-size: .92rem; flex: 1; }
.buchung-karte .btn { padding: 10px 24px; font-size: .93rem; }
@media (max-width: 980px) { .buchung-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .buchung-grid { grid-template-columns: 1fr; } }

/* ---------- Stellenanzeige ---------- */
.jobs { background: var(--weiss); }
.job-karte {
  border: 1px solid var(--lavendel); border-left: 6px solid var(--beere);
  border-radius: var(--radius); padding: 40px; max-width: 860px; margin: 0 auto;
  box-shadow: var(--schatten); background: var(--lavendel-hell);
}
.job-karte h3 { font-size: 1.35rem; margin-bottom: 14px; }
.job-spalten { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; margin: 18px 0 24px; }
.job-spalten h4 { color: var(--beere-dunkel); margin-bottom: 8px; font-size: 1rem; }
.job-spalten ul { list-style: none; }
.job-spalten li { padding: 4px 0 4px 26px; position: relative; color: var(--text-hell); font-size: .97rem; }
.job-spalten li::before { content: "✦"; position: absolute; left: 4px; color: var(--flieder); }
@media (max-width: 700px) { .job-spalten { grid-template-columns: 1fr; } }

/* ---------- Kontakt ---------- */
.kontakt { background: linear-gradient(180deg, var(--lavendel-hell), var(--lavendel)); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.kontakt-karte {
  background: var(--weiss); border-radius: var(--radius); padding: 36px;
  box-shadow: 0 6px 18px rgba(93,68,114,.10);
}
.kontakt-karte h3 { margin-bottom: 16px; }
.kontakt-karte p { margin-bottom: 12px; color: var(--text-hell); }
.kontakt-karte a { color: var(--beere); font-weight: 600; text-decoration: none; }
.kontakt-karte a:hover { text-decoration: underline; }
.kontakt-zeile { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.kontakt-zeile .symbol { font-size: 1.3rem; margin-top: 2px; }
.kontakt-aktionen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.kontakt-foto { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten); }
.kontakt-foto img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .kontakt-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--nacht); color: #cfc2dd; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer img { height: 74px; width: auto; margin-bottom: 14px; opacity: .95; }
.footer h4 { color: #fff; font-family: var(--serif); margin-bottom: 12px; font-size: 1.05rem; }
.footer a { color: #cfc2dd; text-decoration: none; display: block; padding: 3px 0; font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer p { font-size: .95rem; }
.footer-unten {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; text-align: center;
  font-size: .88rem; color: #a894bd;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Button-Farben erzwingen (gewinnen gegen Kontext-Linkfarben) ---------- */
a.btn-beere, a.btn-beere:hover { color: #fff !important; }
a.btn-hell, a.btn-hell:hover { color: #6b1f44 !important; }
a.btn-kontur { color: #6b1f44 !important; }
a.btn-kontur:hover { color: #fff !important; }
a.btn-glas {
  border: 2px solid rgba(255,255,255,.85); color: #fff !important;
  background: rgba(255,255,255,.12); backdrop-filter: blur(4px);
}
a.btn-glas:hover { background: #fff; color: #6b1f44 !important; }

/* ---------- Unterseiten (Rechtstexte) ---------- */
.unterseite { padding: 140px 0 80px; max-width: 860px; margin: 0 auto; }
.unterseite h1 { font-size: 2.2rem; margin-bottom: 24px; }
.unterseite h2 { font-size: 1.35rem; margin: 34px 0 10px; }
.unterseite h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.unterseite p { margin-bottom: 12px; color: var(--text-hell); }
.unterseite a { color: var(--beere); }
.zurueck { display: inline-block; margin-bottom: 26px; color: var(--beere); text-decoration: none; font-weight: 600; }
.zurueck:hover { text-decoration: underline; }
