/* =========================================================
   UDOM MASSAGE — Stylesheet
   Farben & Typografie angelehnt an den Praxis-Flyer
   ========================================================= */

:root {
  --purple-deep: #330f28;
  --purple: #6f2a58;
  --purple-mid: #7f2f63;
  --purple-light: #9c4a80;
  --gold: #d9a73b;
  --gold-light: #f0cf7a;
  --gold-dark: #a97e22;
  --cream: #f8f1e4;
  --cream-dark: #efe3cc;
  --text-dark: #2b1c26;
  --text-light: #6b5b64;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(51, 15, 40, 0.18);
  --radius: 14px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Mulish', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: block;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: .25rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--purple-deep);
}

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: .6rem;
  color: var(--purple-deep);
}

.section-lede {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.8rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.divider {
  display: block;
  margin: 0 auto 2.5rem;
  width: 220px;
  height: auto;
  opacity: .95;
}

.divider-small {
  width: 140px;
  margin: 1.2rem auto;
}

section { padding: 5.5rem 0; position: relative; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3px;
  padding: .95rem 2.1rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--purple-deep);
  box-shadow: 0 8px 22px rgba(217, 167, 59, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(217, 167, 59, 0.45); }

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(217,167,59,.12); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--purple);
  color: var(--purple);
}
.btn-outline-dark:hover { background: rgba(111,42,88,.08); }

/* ---------- Top info bar ---------- */
.topbar {
  background: var(--purple-deep);
  color: var(--cream-dark);
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { text-decoration: none; color: var(--gold-light); }
.topbar span { opacity: .9; }
.topbar-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---------- Navigation ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(51, 15, 40, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--gold);
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand svg { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: var(--font-script);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: 0;
  color: var(--cream-dark);
  opacity: .85;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream-dark);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .3px;
  position: relative;
  padding: .3rem 0;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { margin-left: .3rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all .3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--purple-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.1rem;
    border-bottom: 2px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav-links.open { max-height: 480px; }
  .nav-links .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero_bg.jpg');
  background-size: cover;
  background-position: center center;
}
@media (max-width: 900px) {
  .hero-bg { background-position: center 30%; }
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(51,15,40,.92) 0%, rgba(111,42,88,.82) 42%, rgba(111,42,88,.45) 75%, rgba(111,42,88,.25) 100%);
}
.hero .container { position: relative; z-index: 5; }
.hero-inner { max-width: 620px; }

.hero-kicker {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: .3rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold-light); }

.hero p.lede {
  font-size: 1.15rem;
  color: var(--cream-dark);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(240,207,122,.4);
  padding: .6rem 1.1rem;
  border-radius: 50px;
  font-size: .88rem;
  color: var(--cream-dark);
}
.hero-note strong { color: var(--gold-light); }

.hero-lotus {
  position: absolute;
  bottom: -6%;
  right: -4%;
  width: 420px;
  opacity: .18;
  filter: drop-shadow(0 0 30px rgba(0,0,0,.3));
  z-index: 2;
}

/* ---------- Info strip ---------- */
.info-strip {
  background: var(--purple-deep);
  color: var(--cream-dark);
  padding: 1.3rem 0;
}
.info-strip .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}
.info-strip .item { font-size: .92rem; display: flex; align-items: center; gap: .55rem; }
.info-strip .item svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ---------- Services ---------- */
.services {
  position: relative;
  background:
    linear-gradient(180deg, rgba(248,241,228,.85) 0%, rgba(248,241,228,.55) 22%, rgba(248,241,228,.62) 55%, rgba(248,241,228,.9) 100%),
    url('../images/services_bg.jpg') center center / cover no-repeat;
  background-color: var(--cream);
}
@media (max-width: 800px) {
  .services { background-position: center center, 35% center; }
}

.price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
}
@media (max-width: 800px) {
  .price-columns { grid-template-columns: 1fr; }
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  margin-bottom: 1.6rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(51,15,40,.18); }

.price-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.price-card h3 {
  font-size: 1.15rem;
  color: var(--purple-deep);
  margin-bottom: .15rem;
}
.price-card .desc {
  color: var(--text-light);
  font-size: .92rem;
  margin-bottom: .9rem;
}
.price-card .prices {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  border-top: 1px dashed rgba(111,42,88,.2);
  padding-top: .8rem;
}
.price-card .prices .p {
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--cream);
  border-radius: 30px;
  padding: .35rem .85rem;
  white-space: nowrap;
}
.price-card .prices .p b { color: var(--gold-dark); font-weight: 800; }

.price-hint {
  text-align: center;
  margin-top: .5rem;
  color: var(--text-light);
  font-size: .92rem;
}

/* ---------- About ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; }
.about-photo::before {
  content: '';
  position: absolute; inset: 0;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-text .eyebrow { text-align: left; }
.about-text h2 { text-align: left; font-size: clamp(1.7rem,2.8vw,2.3rem); margin-bottom: 1.2rem; }
.about-text p { color: var(--text-light); margin-bottom: 1.1rem; }
.about-text p strong { color: var(--purple-deep); }

.about-badges { display: flex; gap: 1.2rem; margin-top: 1.6rem; flex-wrap: wrap; }
.about-badge {
  display: flex; align-items: center; gap: .6rem;
  background: var(--cream);
  padding: .7rem 1.1rem;
  border-radius: 50px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--purple-deep);
}
.about-badge svg { width: 18px; height: 18px; fill: var(--gold-dark); }

/* ---------- Gallery / Ambiente ---------- */
.gallery { background: var(--purple-deep); color: var(--cream-dark); }
.gallery .section-title { color: var(--white); }
.gallery .section-lede { color: rgba(248,241,228,.75); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  position: relative;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.3rem 1.1rem;
  background: linear-gradient(0deg, rgba(51,15,40,.9), transparent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--gold-light);
}

/* ---------- Testimonial / quote strip ---------- */
.quote-strip {
  background: linear-gradient(120deg, var(--purple), var(--purple-light));
  color: var(--white);
  text-align: center;
  padding: 3.2rem 0;
}
.quote-strip p {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  max-width: 780px;
  margin: 0 auto;
  color: var(--gold-light);
}

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--purple-deep);
  color: var(--cream-dark);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { color: var(--gold-light); margin-bottom: 1.4rem; font-size: 1.3rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 1.6rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.contact-list a { text-decoration: none; color: var(--cream-dark); }
.contact-list a:hover { color: var(--gold-light); }
.contact-list .label { display: block; font-weight: 700; color: var(--white); margin-bottom: .1rem; font-size: .92rem; }

.map-toggle {
  margin-top: 1.4rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(240,207,122,.35);
}
.map-placeholder {
  padding: 1.5rem;
  text-align: center;
  background: rgba(255,255,255,.05);
}
.map-placeholder p { font-size: .85rem; margin-bottom: .8rem; color: rgba(248,241,228,.75); }
.map-frame { display: none; }
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: .4rem; font-size: 1.3rem; }
.form-card .sub { color: var(--text-light); font-size: .92rem; margin-bottom: 1.6rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: .4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .78rem .9rem;
  border: 1.5px solid #e3d7c4;
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }

.consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}
.consent input { margin-top: .25rem; }
.consent a { color: var(--purple); font-weight: 600; text-decoration: underline; }

.form-message {
  display: none;
  padding: .9rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: .9rem;
}
.form-message.success { display: block; background: #e4f3e6; color: #2c6b34; border: 1px solid #b7dcbb; }
.form-message.error { display: block; background: #fbe6e6; color: #a13030; border: 1px solid #eab6b6; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--purple-deep);
  color: rgba(248,241,228,.75);
  padding: 3.5rem 0 1.6rem;
  position: relative;
}
footer.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, var(--gold), var(--gold) 12px, transparent 12px, transparent 24px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; }
.footer-brand svg { width: 34px; height: 34px; }
.footer-brand span { font-family: var(--font-head); font-weight: 800; color: var(--gold-light); font-size: 1.2rem; letter-spacing: 1px; }
footer.site-footer p { font-size: .9rem; line-height: 1.7; }
footer.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
footer.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
footer.site-footer a { text-decoration: none; font-size: .9rem; color: rgba(248,241,228,.75); transition: color .2s; }
footer.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(240,207,122,.2);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .82rem;
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all .3s;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  border: none;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ---------- Legal pages ---------- */
.legal-hero {
  background: linear-gradient(120deg, var(--purple-deep), var(--purple));
  color: var(--white);
  padding: 5rem 0 3.5rem;
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,2.8rem); }
.legal-hero p { color: var(--cream-dark); margin-top: .6rem; }

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 2.4rem 0 1rem;
  color: var(--purple-deep);
  border-left: 4px solid var(--gold);
  padding-left: .8rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-light); margin-bottom: .9rem; }
.legal-content ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-content strong { color: var(--text-dark); }
.legal-content a { color: var(--purple); font-weight: 600; }
.legal-box {
  background: var(--white);
  border: 1px solid #e6dac4;
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1rem;
}
