/* ============================================
   WASSANA THAIMASSAGE - ORIGINAL BRANDING
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&family=Noto+Serif+Thai:wght@400;600&display=swap');

:root {
  /* Original Wassana Farben (vom Logo) */
  --color-purple: #6B2B7A;
  --color-purple-dark: #4A1D55;
  --color-gold: #D89A4A;
  --color-gold-light: #E5B870;
  --color-orange: #C9803A;
  --color-cream: #FAF3E7;
  --color-cream-warm: #F5EBD8;
  --color-wood: #3D2817;
  --color-sage: #9CAF88;
  --color-charcoal: #1F1411;
  --color-white: #FFFCF7;

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-thai: 'Noto Serif Thai', serif;

  --container: 1200px;
  --radius: 4px;

  --shadow-soft: 0 4px 24px rgba(61, 40, 23, 0.08);
  --shadow-deep: 0 20px 60px rgba(61, 40, 23, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-charcoal);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-purple-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.875rem); }

p { font-size: 1.0625rem; color: rgba(31, 20, 17, 0.85); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }

@media (max-width: 768px) {
  section { padding: 4rem 0; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 243, 231, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 43, 122, 0.08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-purple);
  letter-spacing: 0.02em;
}

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

.nav-menu a {
  color: var(--color-charcoal);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--color-purple); }

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-gold);
}

.nav-cta {
  background: var(--color-purple);
  color: var(--color-cream) !important;
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--color-purple-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-purple);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(107, 43, 122, 0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ============================================
   HERO mit echtem Bild
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 8rem 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-warm) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 243, 231, 0.7) 0%, rgba(245, 235, 216, 0.5) 100%);
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 2rem;
  display: block;
}

.hero-thai {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-thai);
  font-size: 1.5rem;
  color: var(--color-gold);
  opacity: 0.9;
}

.hero h1 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--color-purple-dark);
}

.hero h1 span {
  font-style: normal;
  font-weight: 500;
  color: var(--color-purple);
  display: block;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--color-wood);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 100px;
}

.btn-primary {
  background: var(--color-purple);
  color: var(--color-cream);
}

.btn-primary:hover {
  background: var(--color-purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--color-purple);
  border: 1.5px solid var(--color-purple);
}

.btn-secondary:hover {
  background: var(--color-purple);
  color: var(--color-cream);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SEKTIONS-TITEL
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--color-wood);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto;
  position: relative;
}

.divider::before {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-gold);
  background: var(--color-cream);
  padding: 0 0.5rem;
}

/* ============================================
   ÜBER UNS - mit Bild
   ============================================ */
.about-home { background: var(--color-white); }

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

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about-image {
  aspect-ratio: 4/5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--color-gold);
  z-index: 2;
  pointer-events: none;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; }

.about-signature {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-purple);
}

/* ============================================
   MASSAGEN GRID mit Bildern
   ============================================ */
.massages { background: var(--color-cream); }

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

.massage-card {
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid rgba(216, 154, 74, 0.15);
  overflow: hidden;
}

.massage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--color-gold);
}

.massage-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.massage-card-body {
  padding: 2rem;
  text-align: center;
}

.massage-icon {
  font-size: 1.75rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.massage-card h3 {
  margin-bottom: 1rem;
  color: var(--color-purple-dark);
}

.massage-card p {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.massage-price {
  display: inline-block;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 154, 74, 0.3);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-purple);
  font-weight: 500;
}

.massage-price small {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-wood);
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
}

/* ============================================
   PREISE TABELLE
   ============================================ */
.price-table {
  background: var(--color-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 900px;
  margin: 0 auto;
}

.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(216, 154, 74, 0.15);
  align-items: center;
}

.price-row:last-child { border-bottom: none; }

.price-row.header {
  background: var(--color-purple);
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.price-row .price-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-purple-dark);
}

.price-row.header .price-name { color: var(--color-cream); }

.price-row .price-value {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-purple);
}

.price-row.header .price-value {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.price-row .price-value.empty {
  color: rgba(0,0,0,0.2);
  font-size: 1rem;
}

@media (max-width: 700px) {
  .price-row {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.25rem;
    font-size: 0.875rem;
  }
  .price-row .price-name { grid-column: 1 / -1; margin-bottom: 0.5rem; }
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-section {
  background: var(--color-purple-dark);
  color: var(--color-cream);
  position: relative;
}

.contact-section h2,
.contact-section h3 { color: var(--color-cream); }
.contact-section .eyebrow { color: var(--color-gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  font-size: 1.125rem;
}

.contact-item-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.375rem;
}

.contact-item-value {
  color: var(--color-cream);
  font-size: 1.0625rem;
  text-decoration: none;
}

.contact-item-value:hover { color: var(--color-gold-light); }

.opening-hours {
  background: rgba(216, 154, 74, 0.08);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(216, 154, 74, 0.2);
}

.opening-hours h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.opening-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(216, 154, 74, 0.1);
}

.opening-row:last-child { border-bottom: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-charcoal);
  color: var(--color-cream);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.footer-inner { max-width: var(--container); margin: 0 auto; }

.footer-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: block;
}

.footer-tag {
  font-family: var(--font-thai);
  color: rgba(250, 243, 231, 0.6);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(250, 243, 231, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--color-gold); }

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(250, 243, 231, 0.4);
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 243, 231, 0.1);
}

/* ============================================
   PAGE HEADER (Unterseiten)
   ============================================ */
.page-header {
  padding: 10rem 1.5rem 5rem;
  background: linear-gradient(135deg, var(--color-cream-warm) 0%, var(--color-cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(216, 154, 74, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header-inner { position: relative; z-index: 2; }

/* ============================================
   GUTSCHEIN
   ============================================ */
.gutschein-card {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
  color: var(--color-cream);
  padding: 4rem 3rem;
  border-radius: 2px;
  text-align: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-deep);
}

.gutschein-card::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid var(--color-gold);
  pointer-events: none;
}

.gutschein-card h3 {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gutschein-card p {
  color: rgba(250, 243, 231, 0.85);
  margin-bottom: 2rem;
}

.gutschein-amount {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gutschein-chip {
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--color-gold);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-gold);
}

/* ============================================
   GALERIE
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { aspect-ratio: 4/3; }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-card { text-align: center; }

.team-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--color-gold);
}

.team-photo::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-gold);
  font-size: 2.5rem;
  opacity: 0.5;
}

.team-card h3 { margin-bottom: 0.5rem; }

.team-role {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

/* Animationen */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: Wenn kein JS, immer sichtbar */
.no-js .fade-in,
.no-js .fade-in:not(.visible) {
  opacity: 1 !important;
  transform: none !important;
}
