/* custom.css - Chris Waikiki Design */

@import url('https://fonts.googleapis.com/css2?family=Blushing+Rose&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #fff;
  color: #666;
  line-height: 1.65; /* Generell etwas mehr Zeilenabstand */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Verhindert horizontalen Scrollbalken (wichtig für Full-Width Hero) */
}

/* Layout Container (Zentrierung) */
.container {
  width: 100%; 
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;  
}

h1, h2, h3, h4 { /* H4 für Pakete hinzugefügt */
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  color: #444;
}

h1 { font-size: 3rem; color: #333; font-weight: 600; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; font-weight: 600; color: #555;} /* H3 etwas fetter */
h4 { font-size: 1.2rem; font-weight: 600; color: #e8ac0e; margin-bottom: 0.8rem;} /* Für Paket-Features */

.auraganza-box {
    width: 100%; /* 100% Breite */
    height: 200px; /* Höhe von 200px */
    border-radius: 15px; /* Abgerundete Ecken */
    display: flex; /* Flexbox für zentrierte Ausrichtung */
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    background-color: rgba(013, 037, 050);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: leichter Schlagschatten */
}

.auraganza-font {
    font-family: 'Blushing Rose', cursive; /* Setzt den Font */
    font-size: 2rem; /* Größe des Textes */
    background: linear-gradient(to bottom, #DEBB00, #DEBB00, #DEBB00); /* Farbverlauf */
    -webkit-background-clip: text; /* Für Safari */
    -moz-background-clip: text; /* Für Firefox */
    background-clip: text; /* Für andere Browser */
    color: transparent; /* Textfarbe transparent, damit der Farbverlauf sichtbar wird */
    text-shadow: 2px 2px 4px #DEBB00;
}

.auraganza-logo {
    font-family: 'Blushing Rose', cursive;
    font-size: 6rem;
    background: linear-gradient(to bottom, #FFEE93, #DEBB00, #9F7D00); /* Farbverlauf */
    -webkit-background-clip: text; /* Für Safari */
    -moz-background-clip: text; /* Für Firefox */
    background-clip: text; /* Für andere Browser */
    color: transparent;
}

p {
  margin-bottom: 1.3rem; /* Mehr Abstand P */
}
p:last-child {
    margin-bottom: 0; /* Kein Abstand beim letzten P im Container */
}

a {
  color: #d4a90e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FFC107;
}

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

/* Modulare Bullet Styles    */
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

@keyframes pulse {
  0% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.5; transform: scale(0.9); }
}

/* Sicherheitsnetz für Menüs (UNBEDINGT BEIBEHALTEN) */
nav li::before,
.menu li::before,
.wp-block-navigation li::before {
  content: none !important;
  animation: none !important;
}

/* ------------------------- */
/* Utility Klassen           */
/* ------------------------- */
.joost-text {
  font-family: 'Joost';
  src: url('/wp/wp-content/themes/core/fonts/JoostMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Animierte Trennlinie */
.section-divider {
    width: 60%;
    height: 3px;
    margin: 3rem auto;
    border: none;
    background: linear-gradient(90deg, transparent 0%, #ffe646 20%, #f5da21 50%, #e8ac0e 80%, transparent 100%);
    animation: parallaxLineMove 4s infinite alternate ease-in-out;
}

@keyframes parallaxLineMove {
  0% { background-position: -20% 0; opacity: 0.7; }
  100% { background-position: 120% 0; opacity: 1; }
}

/* Rahmenboxen */
.gold-border-box {
  padding: 25px 30px; /* Mehr Padding */
  border-radius: 15px;
  background: white;
  border: 2px solid #f0d654;
  margin-bottom: 25px; /* Mehr Abstand */
  box-shadow: 0 5px 15px rgba(240, 214, 84, 0.1);
}

.box { /* Für Steps & Checklist */
  border: 2px solid #FFD700;
  padding: 30px; /* Mehr Padding */
  border-radius: 15px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px; /* Standard Abstand unten */
}

/* Gold-Preis */
.gold-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem; /* Größer */
  font-weight: 600;
  display: block; /* Eigene Zeile */
  text-align: center;
  background: linear-gradient(135deg, #ffe646, #f5da21 50%, #e8ac0e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.5rem auto 1rem auto; /* Angepasster Abstand */
}


/* Buttons                   */
/* ------------------------- */
.gold-button {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  padding: 12px 28px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(135deg, #ffe646, #f5da21 50%, #e8ac0e);
  color: #444;
  border-bottom: 3px solid #d4a90e;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
}

.gold-button:hover {
  background: linear-gradient(135deg, #fff070, #f8de49 50%, #f0b91f);
  color: #333;
  transform: translateY(-2px);
  border-bottom-width: 5px;
}

.gold-button:active {
    transform: translateY(0px);
    border-bottom-width: 3px;
}

/* WhatsApp Button           */
/* ------------------------- */
.whatsapp-button {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  padding: 12px 28px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(135deg, #25D366, #128C7E 50%, #075E54);
  color: white !important; /* Weißer Text (important, falls andere Styles überschreiben) */
  border-bottom: 3px solid #075E54; /* Dunklerer Rand unten */
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
  text-shadow: 0 1px 1px rgba(0,0,0,0.2); /* Leichter Schatten für bessere Lesbarkeit */
  box-shadow: 0 3px 5px rgba(0,0,0,0.1); /* Optional: Leichter Schatten */
}

.whatsapp-button:hover {
  background: linear-gradient(135deg, #5df78d, #25D366 50%, #128C7E);
  color: white !important;
  transform: translateY(-2px);
  border-bottom-width: 5px;
  box-shadow: 0 5px 8px rgba(0,0,0,0.15); /* Hover-Effekt verstärken */
}

.whatsapp-button:active {
  transform: translateY(0px);
  border-bottom-width: 3px;
}

/* ------------------------- */
/* Hero Section              */
/* ------------------------- */
.hero-section {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  align-items: center; 
}

.hero-section .container {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: rgba(255,255,255,0.92);
  padding: 1.5rem 2rem; /* etwas weniger Padding */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-top: -3rem; /* schiebt die Box ins Bild */
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-section .tagline {
    text-align: center;
}

.hero-section .main-headline {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.hero-section .tagline {
  font-family: 'Joost', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffe646;
  margin-bottom: 1.5rem; /* Mehr Abstand */
  letter-spacing: 0.02em;
}

.hero-section .subline {
  font-family: 'Joost', serif;
  font-size: 1.4rem; /* Größer */
  letter-spacing: 0.02em;
  padding: 0;
  color: #555;
  max-width: 750px; /* Breiter */
  margin: 0 auto 1.5rem auto;
  line-height: 1.5; /* Bessere Lesbarkeit bei längeren Zeilen */
}

.hero-content-container { 
    margin-bottom: 2.5rem; /* Abstand zwischen Text und Bild */
}

/* Hero-Image im Container */
.hero-image {
  display: block;
  width: 100%;
  max-width: 100%; 
  height: auto;
  object-fit: cover; /* Erhält Proportionen */
  margin: 0 auto; /* Zentriert das Bild */
  border-radius: 8px; /* Optional: Leichte Abrundung */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Optional: Schatten */
}

/* Sections Allgemein        */
section {
  padding: 20px 0;
}

section:nth-of-type(even):not(.cta-repeat-section):not(.about-me-section) { /* About Me hat eigenen Hintergrund */
   background-color: #fdfdfd;
}

/* Problem / Desire Section  */
.problem-desire-content {
    max-width: 800px;
    margin: 0 auto;
}
.problem-desire-section h2 {
  text-align: center; /* Zentriert für besseren Fluss */
  margin-bottom: 1.5rem;
}
.problem-desire-section .gold-parallax {
    margin: 3rem auto; /* Abstand der Linie */
}
.problem-desire-section p.joost-text {
    text-align: center;
    font-size: 1.2rem;
}

/* ------------------------- */
/* Solution / Process Section*/
/* ------------------------- */
.solution-process-section h2 {
    margin-bottom: 1.5rem; /* Weniger Abstand zum Intro-Text */
}
.solution-process-section .intro-text {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  text-align: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 3rem; /* Weniger Abstand zur nächsten Sektion */
    flex-wrap: wrap;
}

.step { /* Nutzt .box Stil */
    flex: 1;
    min-width: 270px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0; /* Kein extra Abstand unten, wird vom Container gesteuert */
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.step-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #ffe646, #f5da21 50%, #e8ac0e);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem auto; color: #444; font-family: 'Oswald', sans-serif;
  font-size: 1.5rem; font-weight: 600;
}

.step h3 { margin-bottom: 1rem; color: #555; font-weight: 600; }
.step p { font-size: 0.95rem; line-height: 1.6; }


/* ------------------------- */
/* NEU: Packages Section     */
/* ------------------------- */
.packages-section {
    background-color: #fdfdfd; /* Heller Hintergrund */
    text-align: center; /* Zentriert den Button */
}

}
.packages-section h2 {
    margin-bottom: 1.5rem;
}
.packages-section .intro-text {
    margin-bottom: 3.5rem;
    max-width: 100%;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}

.packages-container {
    max-width: 100%;
	  margin: 0 auto;
    display: flex;
    justify-content: center; 
    gap: 30px;
    flex-wrap: wrap; /* Umbruch */
    align-items: stretch; /* Gleiche Höhe für Boxen */
}

.package-item { /* Nutzt .box Stil */
    flex: 1;
    min-width: 300px; /* Mindestbreite */
    max-width: 350px; /* Maximalbreite */
    display: flex;
    flex-direction: column; /* Inhalt untereinander */
    text-align: center;
    position: relative; /* Für Badge */
    margin-bottom: 20px; /* Abstand bei Umbruch */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.package-item h3 {
    font-size: 1.7rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.package-price {
    margin-bottom: 1rem; /* Weniger Abstand zur Linie */
}
.package-price .package-vat {
    font-size: 0.7em; /* Kleinere Schrift für "netto" */
    color: #888;
    font-weight: 400;
    display: inline-block;
    margin-left: 5px;
}

.package-divider {
    width: 40% !important; /* Schmaler & wichtiger */
    margin: 0 auto 1.5rem auto !important; /* Zentriert, Abstand unten */
    height: 2px !important; /* Dünner */
    animation: none !important; /* Keine Animation */
    opacity: 0.7 !important;
}


.package-item ul {
    padding-left: 0;
    text-align: left; /* Listenelemente linksbündig */
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Nimmt Platz ein, drückt Footer nach unten */
}

.package-item li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem; /* Kleinere Schrift */
    padding-left: 1.5em; /* Mehr Platz */
    line-height: 1.5;
}

.package-item li::before {
    content: '✓ '; /* Häkchen statt Kugel */
    color: #e8ac0e; /* Gold */
    font-weight: bold;
    top: 0; /* Bessere Ausrichtung */
    font-size: 1em; /* Normale Größe */
}
.package-item li strong { /* Hervorhebung für "Alles aus..." */
    font-weight: 600;
    color: #555;
}

.package-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #777;
    margin-top: auto; /* Bleibt am unteren Rand */
    padding-top: 1rem; /* Abstand zum Inhalt darüber */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e8ac0e, #f5da21);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.packages-footer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #888;
}

/* About Me Section     */
.about-me-section {
    background-color: #fff; /* Weißer Hintergrund */
    border-top: 1px solid #eee; /* Leichte Trennung */
    border-bottom: 1px solid #eee;
}
.about-me-section h2 {
    margin-bottom: 2rem;
}
.about-me-content {
    display: flex;
    align-items: center;
    gap: 50px; /* Mehr Abstand */
    flex-wrap: wrap;
    margin-top: 2rem;
}
.about-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}
.about-image img {
    max-width: 300px; /* Größer */
    width: 100%;
    border-radius: 50%; /* Rundes Bild */
    border: 2px solid #f0d654; /* Dickerer Rand */
    padding: 10px;
    background-color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.about-text {
    flex: 1.5;
    min-width: 300px;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}
.about-text p {
    margin-bottom: 1.2rem; /* Angepasster Abstand */
    font-size: 1.05rem;
}
.about-text .joost-text {
    font-size: 1.3rem; /* Größer */
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 600; /* Etwas dicker */
}
/* Trennlinien im About Me Section */
.about-me-section .gold-parallax {
    margin: 2rem auto; /* Abstand der Linien im About-Bereich */
}


/* ------------------------- */
/* Testimonials Section NEU  */
/* ------------------------- */
.testimonials-section {
    background-color: #fdfdfd; /* Heller Hintergrund */
}
.testimonials-section h2 {
    margin-bottom: 3.5rem;
}
.testimonial-container-new {
    max-width: 100%;
    margin: 0 auto;
}
.testimonial-new { /* Gilt für .gold-border-box */
  margin-bottom: 30px;
  padding: 30px 35px; /* Mehr Padding */
  background: #fff; /* Sicherstellen, dass Hintergrund weiß ist */
}
.testimonial-inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-image-wrapper { flex-shrink: 0; text-align: center; }
.testimonial-image-new {
  width: 130px; height: 130px; border-radius: 50%; border: 1px solid #f5da21; /* Hellerer Rand */
  padding: 8px; /* Weniger Padding */ object-fit: cover; box-sizing: border-box; background-color: #fff;
  display: block; margin: 0 auto;
}
.testimonial-text-content { flex-grow: 1; text-align: left; }
.testimonial-attribution {
    margin-bottom: 0.7rem; font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: #555; font-weight: 500;
}
.testimonial-attribution strong { font-weight: 600; color: #333; }

/* .testimonial-quote {
/*    quotes: none !important; /* Deaktiviert Browser-Zeichen */
/*    position: relative;
/*    padding-left: 1.8em; 
/* }

.testimonial-quote::before {
    content: "„" !important; 
    font-family: 'Joost', serif !important;
    color: #f0d654 !important;
    font-size: 3em !important;
    position: absolute;
    left: 0;
    top: -0.1em;
    line-height: 0.8;
    opacity: 1 !important;
}

/* ------------------------- */
/* CTA Repeat Section        */
/* ------------------------- */
.cta-repeat-section {
  background: linear-gradient(135deg, #ffe646, #f5da21 50%, #e8ac0e);
  color: #444; text-align: center; padding: 80px 0;
}
.cta-repeat-section h2 {
  color: white; text-shadow: 1px 1px 3px rgba(0,0,0,0.2); font-weight: 600; font-size: 2.8rem;
}
.cta-repeat-section p {
  color: #555; max-width: 700px; margin-left: auto; margin-right: auto;
  font-size: 1.15rem; margin-bottom: 2rem;
}
.cta-repeat-section .gold-button {
  background: white; color: #e8ac0e; border-bottom: 3px solid #ddd;
  padding: 15px 35px; font-size: 1.2rem;
}
.cta-repeat-section .gold-button:hover { background: #f8f8f8; color: #f0b91f; border-bottom-color: #ccc; }
/* Newsletter Opt-in */
.newsletter-optin { margin-top: 2.5rem; color: #555; font-size: 0.9rem; }
.newsletter-optin input[type="checkbox"] { margin-right: 8px; accent-color: #e8ac0e; vertical-align: middle; }
.newsletter-optin label { cursor: pointer; vertical-align: middle; }
.newsletter-optin .disclaimer { font-size: 0.8rem; margin-top: 0.5rem; color: rgba(68, 68, 68, 0.8); }


/* ------------------------- */
/* Checklist Section NEU     */
/* ------------------------- */
.checklist-section {
    text-align: center; /* Zentriert den Button */
    padding-bottom: 40px; /* Weniger Abstand nach unten */
}
.checklist-section h2 {
    margin-bottom: 1.5rem; /* Weniger Abstand zur Box */
}
.checklist-box { /* Nutzt .box Stil */
    max-width: 850px; /* Breite anpassen */
    margin: 0 auto; /* Zentrieren */
    padding: 35px 40px; /* Mehr Innenabstand */
}
.checklist-intro { /* Intro Text in der Box */
    font-family: 'Joost', serif;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    color: #555;
    text-align: center;
    margin-bottom: 2rem;
}
.checklist-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0; /* Kein extra Margin */
}
.checklist-box li {
    padding-left: 35px; /* Platz für Bullet */
    position: relative;
    margin-bottom: 1rem; /* Abstand zwischen Punkten */
    font-size: 1.05rem;
    line-height: 1.6;
}
.checklist-box li::before { /* Goldene Bullets wie FAQ */
    content: '•';
    position: absolute;
    left: 5px;
    top: -3px;
    font-size: 1.8em;
    line-height: 1;
    background: linear-gradient(135deg, #ffe646, #f5da21 50%, #e8ac0e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.contact-section .container {
  text-align: center; /* Zentriert den Button */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-section .box {
  max-width: 500px; /* Anpassbar */
  margin: 0 auto;   /* Zentrierung */
  padding: 30px;    /* Innenabstand */
  text-align: center; /* Text zentrieren */
}
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}
.contact-section h2 {
  text-align: center; /* Zentriert für besseren Fluss */
  margin-bottom: 1.5rem;
}
.contact .gold-parallax {
    margin: 3rem auto; /* Abstand der Linie */
}
.contact p.joost-text {
    text-align: center;
    font-size: 1.2rem;
}

/* ------------------------- */
/* FAQ Accordion Styles      */
/* ------------------------- */
.faq-section {
    background-color: #fdfdfd; /* Heller Hintergrund */
    border-top: 1px solid #eee;
}
.faq-section h2 { margin-bottom: 3.5rem; }
.faq-accordion { margin-top: 0; max-width: 900px; margin-left: auto; margin-right: auto; }
.faq-item { margin-bottom: 20px; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 25px; cursor: pointer; font-family: 'Oswald', sans-serif;
    font-size: 1.2rem; font-weight: 500; color: #444; position: relative; list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background-color: #fffaf0; }
.faq-question strong { font-weight: 500; padding-right: 15px; }
.faq-toggle { font-size: 2.2rem; font-weight: 300; color: #e8ac0e; transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); flex-shrink: 0; }
details[open] > .faq-question .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0px 25px 20px 25px; color: #666; font-family: 'Open Sans', sans-serif; line-height: 1.7; }
.faq-answer hr.gold-parallax { width: 50%; margin: 5px auto 20px auto; }
.faq-answer p { margin-bottom: 1rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { list-style: none; padding-left: 0; margin: 1.5rem 0; }
.faq-answer li { padding-left: 35px; position: relative; margin-bottom: 0.9rem; font-size: 1rem; }
.faq-answer { word-break: break-word; overflow-wrap: break-word; box-sizing: border-box; max-width: 100%; }
.faq-answer li::before {
    content: '•'; position: absolute; left: 5px; top: -3px; font-size: 1.8em; line-height: 1;
    background: linear-gradient(135deg, #ffe646, #f5da21 50%, #e8ac0e);
    -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block;
}
details[open] > .faq-answer { animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }


/* Responsive Design         */

/* Desktop (ab 992px) */
@media (min-width: 992px) {
  .container {
    width: 80%; /* 80% Breite */
    max-width: 1200px; /* Optional: Absolute Maximalbreite */
  }
}

@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .hero-section .main-headline { font-size: 3rem; }
    .packages-container { justify-content: space-around; }
    .package-item { max-width: 45%; }
}

/* Desktop-Anpassungen */
@media (min-width: 768px) {
  .hero-section .container {
    max-width: 80%;
    padding: 1.5rem 2rem;
  }
  
  .hero-section .main-headline {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; margin-bottom: 2.3rem;}
    .hero-section .main-headline { font-size: 2.3rem; }
    .hero-section .tagline { font-size: 1.1rem; }
    .hero-section .subline { font-size: 1.0rem; /* Angepasst */ }
    .steps-container { flex-direction: column; gap: 25px; }
    .step { min-width: 100%; }

    /* Pakete Responsive */
    .packages-container { flex-direction: column; align-items: center; }
    .package-item { max-width: 450px; margin: 0 auto; } /* Einzeln untereinander */

    /* About Me Responsive */
    .about-me-content { flex-direction: column; gap: 30px; }
    .about-image img { max-width: 280px; }

            /* Testimonials Responsive - REVISED for side-by-side */
            .testimonial-inner {
                display: flex;         /* HINZUGEFÜGT: Stellt sicher, dass Flexbox aktiv ist */
                flex-direction: row;   /* HINZUGEFÜGT: Stellt die Reihenrichtung sicher */
                flex-direction: column; /* HINZUGEFÜGT: Stellt die Spaltenrichtung sicher */
                gap: 20px;             /* Beibehaltener kleinerer Abstand */
                align-items: center;   /* Vertikale Zentrierung beibehalten */
                /* flex-wrap: nowrap; */ /* Standard, aber zur Sicherheit keine Umbrüche erzwingen */
            }
            .testimonial-image-wrapper {
                 flex-shrink: 0; /* Wichtig, damit Bild nicht schrumpft */
            }
            .testimonial-text-content {
                 text-align: left; /* Sicherstellen */
                 flex-grow: 1;    /* Wichtig, damit Text den Rest ausfüllt */
                 flex-basis: 0;   /* Hilft bei der Platzberechnung */
                 min-width: 0;    /* Verhindert manchmal Überlaufen */
            }
            .testimonial-quote {
                 padding-left: 1.5em; /* Padding für Zitat beibehalten */
            }
            .testimonial-quote::before {
                 display: block; /* Zitatzeichen wieder anzeigen */
            }

    hr.gold-parallax { width: 80%; }

    /* FAQ Responsive */
    .faq-question { font-size: 1.1rem; padding: 15px 20px; }
    .faq-toggle { font-size: 2rem; }
    .faq-answer { padding: 0px 20px 15px 20px; }
    .faq-answer li { padding-left: 30px; }
    .faq-answer li::before { font-size: 1.6em; left: 3px; top: -2px; }
    .faq-answer hr.gold-parallax { width: 70%; margin: 0 auto 15px auto; }
}

/* Responsive Anpassungen hero image*/
@media (max-width: 768px) {
  .hero-image {
    height: 60vh; /* Höhe an Viewport anpassen */
    object-fit: cover; /* Bildausschnitt intelligent wählen */
  }
  
  .hero-section .container {
    margin-top: -50px;
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
    html { font-size: 14px; }
    .hero-section { padding-top: 20px; }
    h1 { font-size: 2rem; } /* Kleiner */
    h2 { font-size: 1.8rem; margin-bottom: 2rem; }
    .hero-section .main-headline { font-size: 2rem; }
    .hero-section .subline { font-size: 1.1rem;}
    .gold-button { padding: 10px 20px; font-size: 1rem; }
    .hero-image { height: 300px; }
    section { padding: 50px 0; }
    .cta-repeat-section { padding: 60px 0; }
    .cta-repeat-section h2 { font-size: 2rem;} /* Kleiner */
    .cta-repeat-section p { font-size: 1rem; }

    /* Testimonial Bild kleiner */
     .testimonial-image-new { width: 100px; height: 100px; padding: 6px; }
     .package-item { max-width: 100%; width: 100%; } /* Volle Breite */
     .about-image img { max-width: 240px; } /* Bild noch kleiner */
     .about-text { overflow-wrap: break-word; word-break: break-word; max-width: 100%; }
     .gold-price { font-size: 1.6rem;} /* Preis etwas kleiner */
}
