/* =========================
   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; /* Einheitlich auf unsere neuen 16px gesetzt */
  --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;
}

/* Fallback-Stack hinzugefügt für fehlerfreie Handydarstellung */
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; /* Erbt nun brav die Schriftart vom Formular */
  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
========================= */

.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) - HIER PASSIERT DIE MAGIE
========================= */

@media (max-width: 768px) {
  
  /* --- 1. Schriftgrößen mobil verkleinern --- */
  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; }

  /* --- 2. Abstände (Padding) verkleinern für mehr Übersicht --- */
  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; 
  }

  /* --- 3. Kompaktere Boxen --- */
  .card, .testimonial-card {
    padding: 20px !important;
  }
  
  .features {
    gap: 15px; 
  }

  .container {
    width: 92%; 
  }

  /* --- 4. Navigation --- */
  .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-ONLY BREAK)
========================= */
.mobile-break {
  display: none; /* Auf dem Desktop unsichtbar */
}

@media (max-width: 768px) {
  .mobile-break {
    display: block !important; /* Auf dem Handy aktiv */
  }
}