/* ==========================================================================
   LOKALE SCHRIFTARTEN (DSGVO-KONFORM)
   ========================================================================== */

/* --- Alex Brush --- */
@font-face {
  font-family: 'Alex Brush';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/alex-brush-v22-latin-regular.woff2') format('woff2');
}

/* --- Cormorant Garamond --- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}

/* --- Montserrat --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/montserrat-v26-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-v26-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-v26-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-v26-latin-600.woff2') format('woff2');
}

/* ==========================================================================
   SOFT NUDE & ELEGANT THEME (INSPIRIERT VON SOUL & SHINE)
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.soft-theme {
  background-color: #f7f3ee;
  color: #4a443f;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  position: relative;
  width: 100%;
  background-color: #38322e; /* Dunkler Ton vom Footer */
  border-bottom: 1px solid #4a443f; /* Angepasste dunkle Rand-Linie */
  z-index: 9999;
  padding: 18px 0;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #f7f3ee; /* Helle Schriftfarbe für dunklen Grund */
  letter-spacing: 3px; /* Etwas breiter und edler */
  text-transform: uppercase; /* Zwingt die Schrift zu Großbuchstaben */
  line-height: 1.1;
}

.sub-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: #a88d75;
  text-transform: uppercase;
  letter-spacing: 4px; /* Breiterer Abstand wie auf dem Poster */
  margin-top: 3px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #c2b8ae; /* Hellgrau/Beige wie im Footer-Text */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: #d8c2b0; /* Edles, helleres Gold beim Drüberfahren */
}

.btn-header {
  padding: 10px 22px;
  font-size: 0.8rem;
  background-color: #b59b84;
  color: #ffffff !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
}

/* ==========================================================================
   BANNER HERO SECTION
   ========================================================================== */
.banner-hero {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  overflow: hidden; 
  background-color: #38322e; 
  
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh; /* NEU: Genug Platz für den Text der Startseite, beide Seiten sind jetzt exakt gleich groß! */
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.05); 
  z-index: 0;
  object-fit: cover;
}

/* ==========================================================================
   VIDEO-WEICHE (DESKTOP VS. MOBILE)
   ========================================================================== */
/* Standardmäßig (auf dem PC) das Handy-Video verstecken */
.video-mobile {
  display: none;
}

/* Sobald der Bildschirm kleiner als 768px wird (Handys)... */
@media (max-width: 768px) {
  
  /* ...PC-Video verstecken... */
  .video-desktop {
    display: none;
  }
  
  /* ...und Handy-Video zeigen! */
  .video-mobile {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(56, 50, 46, 0.45); /* Der weiche, abdunkelnde Schleier */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Holt den Text und die Buttons wieder nach ganz vorne */
  width: 100%; /* Sorgt für die perfekte Text-Breite auf allen Bildschirmen */
}

.script-title-hero {
  font-family: 'Alex Brush', cursive;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.banner-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.banner-tagline {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-cta-group {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 15px; /* Automatischer, sauberer Abstand zwischen den Buttons */
  flex-wrap: wrap; /* Erlaubt das Umbrechen, falls der Platz knapp wird */
}

/* ==========================================================================
   PREISLISTE & KARTEN
   ========================================================================== */
.pricing-section {
  padding: 60px 0;
}

.script-header {
  font-family: 'Alex Brush', cursive;
  font-size: 3.5rem;
  color: #38322e;
  margin-bottom: 5px;
}

.script-subtext {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #665e57;
  margin-bottom: 50px;
}

.script-subtext em {
  text-transform: none;
  font-style: italic;
  font-family: 'Alex Brush', cursive;
  font-size: 1.6rem;
  display: block;
  margin-top: 5px;
}

.pricing-grid-single {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 580px;
  margin: 0 auto;
}

.price-card-soft {
  background-color: #ede5db;
  border-radius: 20px;
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
  /* Exklusiver, feiner Rahmen (Soft Gold/Rosé) */
  border: 1px solid rgba(168, 141, 117, 0.35);
  /* Edler, mehrstufiger Schatten für sanfte Tiefe */
  box-shadow: 0 10px 30px rgba(56, 50, 46, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Sanfter Hover-Effekt: Beim Drüberfahren schwebt die Kachel leicht an & der Rand glänzt etwas mehr */
.price-card-soft:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 141, 117, 0.7);
  box-shadow: 0 15px 35px rgba(56, 50, 46, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.highlight-soft {
  background-color: #f3e5e3; /* Zartes Rosa für Mummy & Me */
}

.icon-bubble {
  width: 62px;
  height: 62px;
  background-color: #798775; /* Exakter Salbeiton */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(121, 135, 117, 0.25);
}

.icon-bubble.bubble-rose {
  background-color: #d19b88; /* Exakter Altroséton für Mummy & Me */
  box-shadow: 0 4px 12px rgba(209, 155, 136, 0.25);
}

.price-card-soft h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #38322e;
  margin-bottom: 12px;
}

.script-card-title {
  font-family: 'Alex Brush', cursive !important;
  font-size: 2.8rem !important;
  text-transform: none !important;
}

.highlight-sub {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #665e57;
  margin-bottom: 15px;
}

.card-desc {
  font-size: 0.9rem;
  color: #665e57;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bullet-list {
  list-style: none;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 20px;
  font-size: 0.88rem;
  color: #665e57;
}

.bullet-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a88d75;
}

.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #38322e;
  margin-bottom: 4px;
}

.price-subtext {
  display: block;
  font-size: 0.8rem;
  color: #887e75;
  margin-bottom: 20px;
}

.btn-soft {
  background-color: #b59b84;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-soft:hover {
  background-color: #9e836d;
}

/* ==========================================================================
   MEHR ALS NÄGEL
   ========================================================================== */
.more-than-nails {
  margin-top: 80px;
  padding-top: 40px;
}

.section-text-soft {
  max-width: 550px;
  margin: 20px auto 40px;
  font-size: 0.95rem;
  color: #665e57;
}

.features-4grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.feat-item {
  background-color: #ffffff;
  padding: 25px 15px;
  border-radius: 12px;
  border: 1px solid #eae3db;
}

.feat-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.feat-item h4 {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #38322e;
}

.thank-you-box {
  background-color: #7d8b7a;
  color: #ffffff;
  padding: 30px;
  border-radius: 16px;
  max-width: 580px;
  margin: 0 auto;
}

.thank-you-title {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.thank-you-script {
  font-family: 'Alex Brush', cursive;
  font-size: 2.2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: #38322e;
  color: #f7f3ee;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  color: #d8c2b0;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-subtitle {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #a88d75;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-text {
  color: #c2b8ae;
  font-size: 0.85rem;
  line-height: 1.7;
}

.gold-link {
  color: #d8c2b0;
  text-decoration: none;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: #c2b8ae;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #4a443f;
  color: #9e9388;
  font-size: 0.8rem;
}

/* Ergänzung für durchsichtige Buttons mit Rahmen im Banner */
.btn-soft-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-soft-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   MOBILE FIRST & HAMBURGER MENU STYLES
   ========================================================================== */

/* Verstecke den Hamburger-Button standardmäßig auf großen Bildschirmen */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #f7f3ee; /* Helle Linien für den dunklen Header */
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   MODAL (POPUP) STYLES
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(56, 50, 46, 0.85); /* Dunkler, edler Hintergrund */
  z-index: 100000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: #f7f3ee;
  width: 100%;
  max-width: 650px;
  max-height: 85vh;
  border-radius: 20px;
  padding: 40px 20px 20px 40px; /* Rechts etwas weniger Padding für die Scrollbar */
  position: relative;
  display: flex;
  flex-direction: column; /* Sorgt dafür, dass der Inhalt sauber gestapelt wird */
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  border: 1px solid #e2dad0;
  /* overflow-y: auto; wurde hier entfernt, das macht jetzt der Text-Body! */
}

/* NEU: Nur der Text-Bereich scrollt, der Rahmen (und das X) bleibt fixiert */
.modal-body {
  overflow-y: auto;
  padding-right: 20px;
  flex-grow: 1; /* Nimmt den restlichen Platz ein */
}

/* UX-Extra: Eine super edle, minimalistische Scrollbar passend zum Studio-Design */
.modal-body::-webkit-scrollbar {
  width: 5px;
}
.modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #d8c2b0;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #a88d75;
  cursor: pointer;
  z-index: 10; /* Hält das X immer über dem scrollenden Text */
  transition: color 0.3s;
}

.modal-close:hover {
  color: #38322e;
}

/* Smartphone & Tablet Ansicht (Unter 768px Breakpoint) */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* Button auf Mobile anzeigen */
    position: relative;
    z-index: 10000; /* Stellt sicher, dass das Hamburger-Menü IMMER über dem Milchglas liegt */
  }

  .main-nav {
    position: fixed; 
    top: 0;
    right: -100%; 
    left: auto;
    width: 75%; 
    height: 100vh; 
    background-color: rgba(247, 243, 238, 0.35); /* Noch durchsichtiger für feinstes Milchglas! */
    backdrop-filter: blur(15px); /* Der magische Milchglas-Effekt! */
    -webkit-backdrop-filter: blur(15px); /* Wichtig für iPhones & Safari */
    border-bottom: none;
    border-left: 1px solid rgba(255, 255, 255, 0.4); /* Ein feiner, edler Rand links */
    padding: 100px 30px 40px; /* Platz oben, damit der Menü-Button nicht verdeckt wird */
    box-shadow: -15px 0 40px rgba(0,0,0,0.15);
    display: flex !important; /* Ist immer flex, nur eben außerhalb des Bildschirms */
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Butterweicher Slide-Effekt */
    z-index: 9998; /* Liegt exakt unter dem Hamburger-Button */
  }

  .main-nav.active {
    right: 0; /* Fährt komplett in den Bildschirm rein */
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start; /* Linksbündig sieht in einem Slider edler aus */
    gap: 30px; /* Mehr Platz zwischen den Links für leichtere Touch-Bedienung */
    width: 100%;
  }

  .nav-link {
    font-size: 1.2rem;
    color: #38322e; /* NEU: Dunkle Schrift für den hellen Glas-Hintergrund */
    font-weight: 500;
  }

  .header-cta {
    display: none; /* WhatsApp-Button im Header auf sehr kleinen Schirmen sparen, um Platz zu halten */
  }

  /* Hamburger Animate zu 'X' wenn aktiv */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* NEU: Da der Slider-Hintergrund hell ist, machen wir das X dunkel, damit man es sieht! */
  .menu-toggle.active span {
    background-color: #38322e; 
  }

  /* NEU: Buttons auf dem Smartphone untereinander stapeln */
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta-group a {
    width: 100%;
    max-width: 280px;
  }

  /* NEU: Abstand für den Copyright-Text im Footer auf dem Smartphone */
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.6; /* Macht den Textabstand beim Umbrechen noch etwas lesbarer */
  }

  /* NEU: Popup-Fenster (Modal) für kleine Handys optimieren */
  .modal-content {
    padding: 30px 10px 15px 20px; /* Schmalere Ränder, damit der Text mehr Platz hat */
    max-height: 90vh; /* Darf auf dem Handy etwas höher werden */
  }

  .modal-content .script-header {
    font-size: 2.5rem !important; /* Überschrift minimal verkleinern, damit sie nicht umbricht */
  }
  
  .modal-body {
    padding-right: 10px; /* Weniger Abstand zur Scrollbar auf kleinen Displays */
  }
}