/* =========================
   LOKALE SCHRIFTARTEN (DSGVO-konform)
========================= */

/* Nunito - Bold (700) für fettgedruckte Texte */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('nunito-v32-latin-700.woff2') format('woff2');
  font-display: swap;
}

/* Nunito - Regular (400) */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('nunito-v32-latin-regular.woff2') format('woff2');
  font-display: swap;
}

/* Baloo 2 - Regular (400) */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400;
  src: url('baloo-2-v23-latin-regular.woff2') format('woff2');
  font-display: swap;
}

/* Baloo 2 - Bold (700) */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 700;
  src: url('baloo-2-v23-latin-700.woff2') format('woff2');
  font-display: swap;
}

/* Baloo 2 - ExtraBold (800) */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 800;
  src: url('baloo-2-v23-latin-800.woff2') format('woff2');
  font-display: swap;
}

/* =========================
   GLOBAL DESIGN SYSTEM
========================= */

:root{
  --beige:#F7E8D3;
  --card:#FFF3E0;
  --border:#E6D6BD;
  --ink:#174C3F;
  --green:#1E6B5B;
  --orange:#F29A3A;
  --text:#24433B;
  --big-radius:16px; 
  --shadow:0 12px 28px rgba(23, 76, 63, .10);
  --maxwidth:1200px;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:"Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:var(--beige);
  color:var(--text);
  line-height:1.7;
}

.container{
  width:90%;
  max-width:var(--maxwidth);
  margin:auto;
}

h1,h2,h3,h4,h5,h6,
.btn,
nav a{
  font-family:"Baloo 2", "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight:800;
}

h1,h2,h3,h4,h5,h6{
  color:var(--ink);
  margin-bottom:1rem;
}

p{
  margin-bottom:1rem;
}

/* =========================
   HEADER & NAVIGATION
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--beige); 
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo img{
  width:50px;
  height:50px;
  border-radius:16px;
  object-fit:cover;
  background:#fff;
}

.logo .title{
  font:800 22px/1 "Baloo 2", "Nunito", sans-serif;
  color:var(--green);
}

nav ul{
  list-style:none;
  display:flex;
  gap:1.5rem;
  flex-wrap:wrap;
  align-items:center;
}

nav a{
  text-decoration:none;
  color:var(--green);
}

nav a:hover{
  color:var(--orange);
}

.nav-highlight {
  color: var(--orange) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-badge {
  background: linear-gradient(180deg, var(--orange), #F18E22);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(242, 154, 58, 0.4);
  transform: translateY(-2px);
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
  display: none; 
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}

.menu-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-block;
  background:linear-gradient(180deg, var(--orange), #F18E22);
  color:#fff;
  padding:14px 26px;
  border:2px solid #CF731F;
  border-radius:999px;
  text-decoration:none;
  box-shadow:var(--shadow);
  transition:0.3s;
  text-align: center;
}

.btn:hover{
  opacity:0.9;
  transform:translateY(-1px);
}

/* =========================
   LAYOUT SECTIONS & CARDS
========================= */

section{
  padding:80px 0;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card {
  background: var(--card);
  padding: 30px;
  border: 2px solid var(--border);
  border-radius: var(--big-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%; 
}

.card .btn {
  margin-top: auto;
}

/* =========================
   TESTIMONIALS 
========================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.author-info {
  border-top: 1px solid var(--border);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--green);
  font-size: 1rem;
}

.author-info span {
  font-size: 0.8rem;
  color: #666;
  margin-top: 3px;
}

/* =========================
   FORMS
========================= */

form{
  max-width:700px;
  margin:auto;
}

.form-group{
  margin-bottom:20px;
}

label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
  color:var(--ink);
}

input, textarea, select{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  font-size:16px;
  font-family: inherit;
  color:var(--text);
  background:#fff;
}

textarea{
  min-height:120px;
  resize:vertical;
}

.error{
  color:red;
  font-size:0.9rem;
  margin-top:5px;
}

/* =========================
   HERO & BILD-HINTERGRÜNDE (Legacy)
========================= */

.hero { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("studio-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.hero h1, .hero p { color: #ffffff; }

.casting-section { padding: 80px 0; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("casting-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; }
.casting-section h2, .casting-section p { color: #ffffff; }
.casting-section .city-links { font-size: 1.1rem; line-height: 2; }
.casting-section .city-links a { color: #ffffff; text-decoration: none; font-weight: 700; }
.casting-section .city-links a:hover { color: var(--orange); text-decoration: underline; }

.about-section { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("about-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.about-section h2, .about-section p { color: #ffffff; }

.standards-section { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("standards-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; }
.standards-section h2 { color: #ffffff; text-align: center; margin-bottom: 50px; }

.newcomer-hero { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("newcomer-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.newcomer-hero h1, .newcomer-hero p { color: #ffffff; }

.bewerbung-hero { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("bewerbung-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.bewerbung-hero h1, .bewerbung-hero p { color: #ffffff; }

.verdienst-hero { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("verdienst-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.verdienst-hero h1, .verdienst-hero p { color: #ffffff; }

.casting-hero { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("casting-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.casting-hero h1, .casting-hero p { color: #ffffff; }

.locations-section { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("locations-bg.png"); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.locations-section h2, .locations-section p { color: #ffffff; }

.city-hero { padding: 120px 0; background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("city-bg.jpg"); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; }
.city-hero h1, .city-hero p { color: #ffffff; }

/* =========================
   FOOTER
========================= */

footer{
  background-color:var(--beige);
  padding:20px 0;
  text-align:center;
  font-size:0.9rem;
  border-top:1px solid var(--border);
}

footer a{
  color:var(--green);
  text-decoration:none;
  margin:0 6px;
  font-weight:700;
}

footer a:hover{
  color:var(--orange);
  text-decoration:underline;
}

/* =========================
   RESPONSIVE (SMARTPHONE)
========================= */

@media (max-width: 768px) {
  h1 { font-size: 2rem !important; line-height: 1.3; }
  h2 { font-size: 1.7rem !important; line-height: 1.3; }
  h3 { font-size: 1.3rem !important; }

  section { padding: 50px 0 !important; }
  
  .hero, .casting-section, .about-section, .standards-section, .newcomer-hero, 
  .bewerbung-hero, .verdienst-hero, .casting-hero, .locations-section, .city-hero {
    padding: 70px 0 !important; 
  }

  .card, .testimonial-card {
    padding: 20px !important;
  }
  
  .features {
    gap: 15px; 
  }

  .container {
    width: 92%; 
  }

  .main-nav {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .main-nav.active {
    display: block !important; 
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px 0;
  }

  .main-nav li {
    text-align: center;
    margin: 10px 0;
  }

  .menu-toggle {
    display: flex; 
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--ink);
    border-radius: 2px;
    transition: all 0.3s linear;
  }
}

/* =========================
   HILFSKLASSEN
========================= */
.mobile-break {
  display: none; 
}

@media (max-width: 768px) {
  .mobile-break {
    display: block !important; 
  }
}

/* =========================
   RATGEBER & MODULE BARS (NEU)
========================= */

/* Age-Popup */
.age-popup { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; justify-content: center; align-items: center; }
.age-box { background: #fff; padding: 40px; border-radius: 16px; border: 2px solid var(--border); text-align: center; max-width: 500px; width: 90%; }
.age-box h2 { margin-bottom: 15px; color: var(--ink); }
.age-box p { margin-bottom: 25px; color: var(--text); }
.age-box div { display: flex; justify-content: center; gap: 15px; }

/* Ratgeber-Boxen (angepasst an dein Design) */
.home-accent { background: #fff; border: 2px solid var(--border); padding: 25px; border-radius: 16px; margin: 30px 0; }
.info-box { background: #fff; border-left: 4px solid var(--orange); padding: 20px; margin: 25px 0; border-radius: 0 8px 8px 0; box-shadow: var(--shadow); }
.math-box { background: #fff; border: 2px solid var(--border); border-radius: 16px; padding: 25px; margin: 30px 0; box-shadow: var(--shadow); }
.travel-box { background: #fff; border: 2px solid var(--border); border-radius: 16px; padding: 30px; margin: 30px 0; box-shadow: var(--shadow); border-left: 5px solid var(--orange); }
.couple-box { background: #fff; border: 2px solid var(--border); border-radius: 16px; padding: 35px; margin: 30px 0; box-shadow: var(--shadow); border-top: 5px solid var(--orange); }
.highlight-box { background: var(--card); border-left: 4px solid var(--orange); padding: 20px; margin: 30px 0; border-radius: 0 8px 8px 0; }
.mom-box { background: #fff; border: 2px solid var(--border); border-radius: 16px; padding: 30px; margin: 30px 0; box-shadow: var(--shadow); border-top: 5px solid var(--green); }
.beauty-accent { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

/* Listen & Tabellen */
.check-list li { margin-bottom: 15px; list-style-type: '✓'; padding-left: 10px; color: var(--text); }
.comparison-table { width: 100%; border-collapse: collapse; margin: 30px 0; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--border); }
.comparison-table th, .comparison-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.comparison-table th { background-color: var(--card); color: var(--ink); font-weight: 700; }
.comparison-table tr:last-child td { border-bottom: none; }
.check-icon { color: var(--green); font-weight: bold; }
.cross-icon { color: #e74c3c; font-weight: bold; }

/* Bilder für Locations & Formate */
.location-card img, .format-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 16px; margin-bottom: 15px; background-color: var(--card); }

/* FAQ Boxen */
details.faq-box { background: #fff; border: 2px solid var(--border); border-radius: 16px; margin-bottom: 20px; padding: 20px 30px; transition: all 0.3s ease; }
details.faq-box:hover { box-shadow: var(--shadow); border-color: var(--orange); }
details.faq-box summary { font-size: 1.15rem; font-weight: 700; cursor: pointer; list-style: none; outline: none; color: var(--ink); }

/* Rechts-Texte (Datenschutz & Impressum) */
.legal-content h2 { margin-top: 40px; margin-bottom: 20px; color: var(--ink); border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.legal-content h3 { margin-top: 30px; margin-bottom: 15px; color: var(--green); font-size: 1.3rem; }
.legal-content h4 { margin-top: 20px; margin-bottom: 10px; font-size: 1.1rem; }
.legal-content p, .legal-content li { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 15px; }

/* 5-Spalten Feature Grid (geld-verdienen.html) */
@media (min-width: 1100px) {
  .features-5 { grid-template-columns: repeat(5, 1fr) !important; gap: 20px !important; }
}

/* =========================
   OPTIMIERTE HERO-BEREICHE (Ratgeber & Städte)
========================= */
.hero-clean {
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed;
  padding: 120px 0 !important;
  text-align: center !important;
  position: relative;
}

.hero-clean .container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-clean h1 {
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-clean p {
  color: #ffffff;
  line-height: 1.8;
  font-size: 1.2rem;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .hero-clean { padding: 70px 0 !important; }
  .hero-clean h1 { font-size: 2rem !important; }
}

/* =========================
   NEUE UTILITY- & LAYOUT-KLASSEN (Ausgelagert)
========================= */

/* Typografie & Farben */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-white { color: #ffffff !important; }
.text-green-bold { color: var(--green); font-weight: 700; }
.text-orange-bold { color: var(--orange); font-weight: 700; }
.hero-title { font-size: 2.5rem; line-height: 1.3; }
.hero-subtitle { line-height: 1.8; font-size: 1.2rem; max-width: 750px; margin-left: auto; margin-right: auto; }

/* Abstände (Margins) */
.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }

/* Container-Breiten */
.container-sm { max-width: 800px; margin-left: auto; margin-right: auto; }
.container-md { max-width: 900px; margin-left: auto; margin-right: auto; }

/* Boxen & Badges */
.box-white { background: #fff; padding: 30px; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.box-card-center { background: var(--card); padding: 40px; border-radius: 16px; border: 2px solid var(--border); text-align: center; }
.badge-orange { background: var(--orange); color: #fff; padding: 4px 12px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; }
.badge-outline-green { background: #fff; padding: 8px 16px; border-radius: 20px; border: 2px solid var(--border); font-size: 0.9rem; font-weight: 700; color: var(--green); }

/* Icons & Listen */
.number-icon { font-size: 3.5rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 15px; }
.emoji-icon { font-size: 2.5rem; margin-bottom: 15px; }
.list-styled { line-height: 1.8; padding-left: 20px; }
.list-styled li { margin-bottom: 10px; }

/* Formular-Elemente */
.custom-checkbox { width: 22px !important; height: 22px !important; accent-color: var(--orange); cursor: pointer; border-radius: 4px; }
.custom-checkbox-green { accent-color: var(--green); margin-top: 2px; }

/* Footer Links */
.footer-link-green { color: var(--green) !important; font-weight: 700; text-decoration: none; }
.footer-link-orange { color: var(--orange) !important; font-weight: 700; text-decoration: none; }

/* Sektions-Hintergründe */
.section-light { background-color: var(--bg-light); padding: 80px 0; }
.section-card { background-color: var(--card); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }