@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Design Tokens – Light Romantic Palette */
  --primary: #4A5E4B;        /* Soft Sage Green */
  --primary-light: #627D63;
  --secondary: #C5A880;      /* Muted Warm Gold */
  --secondary-dark: #A88B64;
  --accent: #C38E70;         /* Soft Terracotta */
  --bg-light: #FAF8F5;       /* Warm Ivory / Cream */
  --bg-card: #FFFFFF;
  --bg-dark: #4A3F3A;        /* Warm Deep Walnut – friendly, not cold */
  --text-dark: #2E2926;
  --text-muted: #7A7068;
  --text-light: #FDFDFD;
  --text-light-muted: #C8BFBA;
  --border-color: #E8E0D8;
  --white: #FFFFFF;
  
  /* Fonts */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  
  /* Layout */
  --container-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-dark);
}

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

.highlight {
  font-style: italic;
  color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(61, 74, 62, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.btn-gold {
  background-color: var(--secondary);
  color: var(--bg-dark);
}

.btn-gold:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(226, 221, 213, 0.1);
}

.navbar.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  height: 70px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(226, 221, 213, 0.5);
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav-logo span {
  font-weight: 400;
  color: var(--secondary-dark);
}

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

.nav-links a {
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--secondary-dark);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--primary);
  color: var(--text-light) !important;
  border: none;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--primary-light) !important;
  color: var(--text-light) !important;
  transform: translateY(-2px);
}

/* Lang Toggle */
.lang-toggle {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.lang-btn {
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn.active {
  color: var(--secondary-dark);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--text-dark);
  background-color: var(--bg-light);
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/linda-christian-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.45;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.7) 0%, rgba(250, 248, 245, 0.45) 50%, rgba(250, 248, 245, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 1.5rem;
  display: inline-block;
  font-weight: 500;
}

.hero-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-title span {
  display: block;
  font-family: var(--font-title);
  font-style: italic;
  font-size: 4.5rem;
  color: var(--secondary-dark);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 35px;
  border: 1px solid rgba(253, 253, 253, 0.5);
  border-radius: 50px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* Section Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.section-dark .section-label {
  color: var(--secondary);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-dark .section-desc {
  color: var(--text-light-muted);
}

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

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-text p strong {
  color: var(--primary);
}

.about-bullets {
  margin: 2.5rem 0;
  list-style: none;
}

.about-bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.about-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-dark);
  font-weight: 700;
}

.about-author-sign {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--secondary-dark);
  margin-top: 2rem;
}

/* About Images Overlap */
.about-images-wrapper {
  position: relative;
  height: 520px;
}

.about-img-primary {
  width: 75%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  border: 10px solid var(--bg-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* Philosophy Section */
.phil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.phil-card {
  background-color: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.phil-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 74, 62, 0.06);
  border-color: var(--secondary);
}

.phil-icon {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary-dark);
}

.phil-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.phil-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Myths Section */
.myths-wrapper {
  background-color: #EAE6DF;
  padding: 5rem;
  border-radius: 12px;
  margin-top: 4rem;
}

.myths-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3.5rem;
  font-weight: 500;
}

.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.myth-item {
  display: flex;
  gap: 1.5rem;
}

.myth-cross {
  font-size: 1.8rem;
  color: #B25E50;
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
}

.myth-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.myth-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.myth-content .truth {
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}

.myth-content .truth strong {
  color: var(--secondary-dark);
}

/* Process Section */
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-num {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.step-card:hover .step-num {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 1rem;
}

/* Pricing Section */
.pricing-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(61, 74, 62, 0.05);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.price-details {
  padding: 4rem;
}

.price-details h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.price-details p {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.price-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.price-feature {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.price-feature-icon {
  color: var(--secondary-dark);
  font-weight: bold;
}

.price-action {
  background-color: #F3ECE2;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-left: 1px solid var(--border-color);
}

.price-tag {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.price-tag span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing Quote Box (replaces price-action when no price is shown) */
.pricing-quote-box {
  background-color: #F3ECE2;
  border-radius: 8px;
  padding: 3rem 2.5rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.pricing-quote-text {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--primary);
  margin: 0;
}

.pricing-quote-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 520px;
}

/* Testimonials Section */
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
  opacity: 0.3;
  transition: opacity 0.6s ease;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-quote-icon {
  font-family: var(--font-title);
  font-size: 8rem;
  line-height: 1;
  color: rgba(197, 168, 128, 0.08);
  margin-bottom: -4rem;
  height: 4rem;
}

.testimonial-quote {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
  color: var(--primary);
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--secondary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* Call to Action Section with Parallax Background */
.cta-section {
  position: relative;
  padding: 10rem 0;
  text-align: center;
  color: var(--text-dark);
  overflow: hidden;
  background-color: var(--bg-light);
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/wedding-ceremony.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 1;
  transition: transform 0.5s ease-out;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(250, 248, 245, 0.4) 0%, rgba(250, 248, 245, 0.9) 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: 3.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 4rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #EAE6DF;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.contact-detail-text a,
.contact-detail-text strong {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-socials {
  display: flex;
  gap: 1.5rem;
}

.contact-social-btn {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.contact-social-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Form Styling */
.contact-form {
  background-color: var(--bg-card);
  padding: 4rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px rgba(61, 74, 62, 0.04);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  outline: none;
  background-color: var(--bg-light);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--secondary-dark);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.1);
}

textarea.form-control {
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.form-checkbox-group input {
  margin-top: 0.3rem;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-checkbox-label a:hover {
  color: var(--secondary-dark);
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-success-message h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.form-success-message p {
  color: var(--text-muted);
}

/* Footer Styling */
.footer {
  background-color: var(--bg-light);
  color: var(--text-muted);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-brand h3 span {
  color: var(--secondary-dark);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-links-col h4 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-dark);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: var(--secondary-dark);
}

/* Modals for Impressum / Datenschutz */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(28, 35, 30, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 4rem 3rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-content h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.modal-content h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem 0;
}

.modal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-title span {
    font-size: 3.8rem;
  }
  
  .about-grid {
    gap: 3rem;
  }
  
  .phil-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .pricing-card {
    grid-template-columns: 1fr;
  }
  
  .price-action {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .navbar {
    background-color: var(--bg-dark);
    height: var(--nav-height);
  }
  
  .navbar.scrolled {
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(253, 253, 253, 0.1);
  }
  
  .navbar.scrolled .nav-logo {
    color: var(--text-light);
  }
  
  .navbar.scrolled .nav-links a {
    color: var(--text-light);
  }
  
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    padding: 4rem;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-title span {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-images-wrapper {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-img-primary {
    height: 320px;
  }
  
  .about-img-secondary {
    height: 220px;
  }
  
  .phil-grid {
    grid-template-columns: 1fr;
  }
  
  .myths-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .myths-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .price-details {
    padding: 2.5rem 1.5rem;
  }
  
  .price-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonial-quote {
    font-size: 1.4rem;
  }
  
  .contact-form {
    padding: 2.5rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-title span {
    font-size: 2.6rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Blog & Translation Styles
   ========================================================================== */

/* Blog Section on Homepage */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.blog-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 74, 62, 0.08);
  border-color: var(--secondary);
}

.blog-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-card-category {
  background-color: #F3ECE2;
  color: var(--secondary-dark);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-title a:hover {
  color: var(--secondary-dark);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  transition: var(--transition-fast);
}

.blog-card-link::after {
  content: ' →';
  transition: transform 0.2s ease;
}

.blog-card-link:hover {
  color: var(--secondary-dark);
}

.blog-card-link:hover::after {
  transform: translateX(5px);
}

/* Blog Overview Page Specific Styles */
.blog-hero {
  padding: 12rem 0 6rem 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.blog-hero h1 {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-hero p {
  color: var(--text-light-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Filter Styles */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

/* Blog Article Detail Pages */
.blog-post-section {
  padding: 6rem 0 8rem 0;
}

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-post-header h1 {
  font-size: 3.2rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.blog-post-meta-detailed {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-post-meta-detailed .author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-post-featured-image {
  margin-bottom: 4rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.blog-post-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-post-body h2 {
  font-size: 2rem;
  margin: 3.5rem 0 1.5rem 0;
  color: var(--primary);
}

.blog-post-body h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem 0;
  color: var(--primary-light);
}

.blog-post-body p {
  margin-bottom: 2rem;
  color: #3e3833;
}

.blog-post-body blockquote {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--secondary-dark);
  border-left: 3px solid var(--secondary);
  padding-left: 2rem;
  margin: 3rem 0;
}

.blog-post-body ul, 
.blog-post-body ol {
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.blog-post-body li {
  margin-bottom: 0.8rem;
}

/* FAQ Sektion für AEO / SEO */
.blog-post-faq-section {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3.5rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.blog-post-faq-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.faq-answer {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Blog Post Footer */
.blog-post-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.author-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-card-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.author-card-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.post-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.post-nav-link span {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

.post-nav-link.next {
  text-align: right;
}

/* Responsiveness for Blog Sektion */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-post-header h1 {
    font-size: 2.2rem;
  }
  
  .blog-post-section {
    padding: 4rem 0 6rem 0;
  }
  
  .blog-post-featured-image {
    margin-bottom: 2.5rem;
  }
  
  .author-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  
  .blog-post-faq-section {
    padding: 2rem 1.5rem;
  }
}
