/* =========================================
   1. BASIS & VARIABLEN
   ========================================= */
:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #666;
  --line: #222;
  --alt: #111;
  --btn: #ffffff;
  --btnText: #000;
  --btnHover: #eee;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Hilfsklassen */
.section { padding: 60px 0; }
.section.alt { background: var(--alt); border-top: 1px solid var(--line); }
.headline { font-family: "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
.subline { color: var(--muted); margin-bottom: 30px; }

/* Scroll Fix für Anker-Links */
body.no-scroll { overflow: hidden; }
section[id] { scroll-margin-top: 90px; }


/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid var(--line);
  padding: 5px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* LOGO */
.brand { 
  text-decoration: none; 
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.2s;
}

.logo-img:hover { transform: scale(1.05); }

/* MAIN NAV */
.header-nav-main {
  display: flex;
  gap: 25px;
  margin-left: 50px;
  margin-right: auto;
}

.header-nav-main a {
  color: #ffffff !important;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.header-nav-main a:hover { opacity: 0.7; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-toggle {
  display: inline-flex !important;
  background: transparent;
  color: #ffffff !important;
  border: 1px solid #444;
  font-size: 1.5rem;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: var(--radius);
  line-height: 1;
}


/* =========================================
   3. DRAWER (MOBILE MENU)
   ========================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  display: none;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 80vw);
  background: #000000;
  color: #ffffff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  border-left: 1px solid var(--line);
}

.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-nav { padding: 10px; display: grid; gap: 5px; }

.drawer-nav a {
  color: #ffffff !important;
  text-decoration: none;
  padding: 15px;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 1px solid #111;
}

.drawer-nav a:hover { background: #1a1a1a; }


/* =========================================
   4. BUTTONS & LINKS
   ========================================= */
.btn {
  background: var(--btn);
  color: var(--btnText) !important;
  border-radius: 4px;
  padding: 10px 16px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}
.btn:hover { background: var(--btnHover); }
.btn-strong { padding: 12px 20px !important; }

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff !important;
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover { background: #fff; color: #000 !important; }

/* Filter Buttons (Galerie) */
.filter-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 5px 0;
  transition: color 0.3s;
  position: relative;
}
.filter-btn.active { color: #fff; }
.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* Zurück Link */
.back-link {
  background: transparent;
  border: none;
  color: #666;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.back-link .arrow { display: inline-block; transition: transform 0.3s ease; font-size: 1.2rem; line-height: 1; }
.back-link:hover { color: #fff; }
.back-link:hover .arrow { transform: translateX(-5px); }

/* Text Link mit Pfeil */
.btn-text-arrow {
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  padding-bottom: 2px;
}
.btn-text-arrow:hover { color: #ccc; border-color: #ccc; letter-spacing: 2px; }


/* =========================================
   5. HERO SECTION (Startbild)
   ========================================= */
.hero {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  min-height: 500px; 
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url("image/hero.png");
  background-size: cover;
  background-position: center top; 
}

.hero h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-size: 4rem; 
  margin-top: -40px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
}


/* =========================================
   6. ANGEBOTE & KARTEN
   ========================================= */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.offer-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 0;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-10px);
  border-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.offer-card .ph {
  height: 200px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.4s;
}

.offer-card:hover .ph { background: #1a1a1a; color: #fff; }

.offer-card h3 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin: 20px 0 10px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.offer-card p {
  padding: 0 20px;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 20px;
}

.card-btn {
  margin: auto 20px 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  align-self: center;
  transition: border-color 0.3s;
}

.offer-card:hover .card-btn { border-color: #fff; }


/* =========================================
   7. NEUER WOCHENPLAN (Spalten-Layout)
   ========================================= */
/* Wrapper für seitliches Scrollen auf Handy */
.grid-scroll-wrapper {
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}

.column-grid {
  display: flex; 
  background: #0a0a0a;
  border: 1px solid #333;
  min-width: 600px; 
}

/* Eine Tages-Spalte */
.col-day {
  flex: 1; 
  border-right: 1px solid #222;
  display: flex;
  flex-direction: column;
  min-height: 300px; 
}
.col-day:last-child { border-right: none; }

/* Der Header (Mo, Di...) */
.cell-header {
  background: #111;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 5px;
  border-bottom: 1px solid #333;
  margin-bottom: 10px; 
}

/* Container um Zeit + Karte */
.course-wrapper {
  padding: 10px 15px; 
  border-bottom: 1px solid rgba(255,255,255,0.05); 
}
.course-wrapper:last-child { border-bottom: none; }

/* Die Uhrzeit über der Karte */
.course-time {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  color: #888; 
  font-weight: 600;
  margin-bottom: 5px;
}

/* Hinweis für leere Tage */
.empty-day-note {
  text-align: center;
  color: #444;
  font-size: 0.8rem;
  padding-top: 20px;
  font-style: italic;
}

/* --- KARTEN DESIGN --- */
.grid-card {
  width: 100%; 
  display: block;
  background: rgba(255,255,255,0.05);
  color: #ddd;
  padding: 8px 5px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}
.grid-card:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  z-index: 2; 
}


/* =========================================
   8. SIMPLE SCHEDULE (Workshops?)
   ========================================= */
/* Ich lasse dies drin, falls deine Workshops das nutzen */
.simple-schedule {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 10px; 
  align-items: start;
  border-top: 1px solid #222; 
  padding-top: 20px;
}

.day-col { display: flex; flex-direction: column; }

.day-head {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.day-body { display: flex; flex-direction: column; gap: 10px; }

.simple-course {
  background: rgba(255,255,255,0.03); 
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent; 
}

.simple-course.empty { background: transparent; cursor: default; }

.simple-course:not(.empty):hover { background: #fff; transform: translateY(-2px); }

.sc-time {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 2px;
}

.sc-title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #ddd;
  font-weight: 600;
  line-height: 1.3;
}

.simple-course:hover .sc-time { color: #555; }
.simple-course:hover .sc-title { color: #000; }

@media (max-width: 900px) {
  .simple-schedule { grid-template-columns: 1fr; gap: 30px; border-top: none; }
  .day-col { border-bottom: 1px solid #222; padding-bottom: 20px; }
  .day-head { text-align: left; margin-bottom: 10px; font-size: 1.5rem; color: #888; }
  .day-body { flex-direction: row; flex-wrap: wrap; }
  .simple-course { min-width: 120px; text-align: left; }
}


/* =========================================
   9. PREISE & ABO
   ========================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.price-card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 4px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: #444;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.price-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #222;
  padding-bottom: 30px;
}

.price-label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.price-title { font-family: "Montserrat", sans-serif; font-size: 1.5rem; color: #fff; margin: 0 0 15px 0; }
.price-value { font-size: 3.5rem; font-weight: 700; color: #fff; font-family: "Montserrat", sans-serif; line-height: 1; }
.currency { font-size: 1.5rem; vertical-align: top; margin-left: 5px; color: #888; }
.period { font-size: 1rem; color: #666; font-weight: 400; }
.price-calc { margin-top: 10px; font-size: 0.9rem; color: #666; }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1; 
  text-align: center;
}
.price-features li { margin-bottom: 15px; color: #ccc; font-size: 0.95rem; }

/* Highlighted Abo */
.price-card.featured {
  background: #111;
  border: 1px solid #fff; 
  transform: scale(1.02); 
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.02) translateY(-10px); box-shadow: 0 0 30px rgba(255,255,255,0.1); }
.highlight-feat { color: #fff !important; font-weight: bold; }

.badge-corner {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 15px;
  border-bottom-left-radius: 8px;
  letter-spacing: 1px;
}

.full-width { width: 100%; display: block; text-align: center; }

@media (max-width: 950px) {
  .price-card.featured { transform: scale(1); border-color: #444; }
}

/* --- PREIS TABS (NEU) --- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.price-tab-btn {
  background: transparent;
  border: 1px solid #333;
  color: #888;
  padding: 10px 25px;
  border-radius: 30px; /* Runde Buttons */
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.price-tab-btn:hover {
  border-color: #fff;
  color: #fff;
}

.price-tab-btn.active {
  background: #fff;
  border-color: #fff;
  color: #000;
  font-weight: bold;
}

/* Animations-Effekt beim Wechsel */
.pricing-view {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   10. ANMELDUNG (Elegant Form)
   ========================================= */
.signup-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.signup-header { text-align: center; margin-bottom: 50px; }
.elegant-form { display: flex; flex-direction: column; gap: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-group { display: flex; flex-direction: column; position: relative; }

.form-group label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input {
  background: transparent !important;
  border: none;
  border-bottom: 1px solid #333; 
  color: #fff !important;
  padding: 10px 0;
  font-size: 1.1rem;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  border-radius: 0;
  transition: all 0.3s ease;
}
.form-input:focus { outline: none; border-bottom-color: #fff; padding-left: 10px; }
.form-input::placeholder { color: #444; font-size: 0.95rem; }

/* Custom Select Dropdown */
.select-wrapper { position: relative; width: 100%; }
select.form-input {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-color: transparent !important;
  color: #fff !important;
  border-radius: 0;
  cursor: pointer;
  padding-right: 30px;
}
select.form-input option { background-color: #000; color: #fff; padding: 10px; }
.select-wrapper::after {
  content: '▼';
  font-size: 0.7rem;
  color: #888;
  position: absolute;
  right: 0;
  top: 15px;
  pointer-events: none;
}
.select-wrapper:focus-within::after { transform: rotate(180deg); color: #fff; }

.form-footer { margin-top: 20px; }
.custom-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 30px;
}
.custom-check input { accent-color: #fff; width: 18px; height: 18px; cursor: pointer; }

.btn-block {
  width: 100%;
  padding: 15px !important;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; gap: 30px; }
}

/*ELEGANTES SELECT-FELD (Dropdown) */

/* 1. Das geschlossene Feld stylen */
select.form-input {
  /* Standard-Browser-Style entfernen */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Gleicher Look wie Textfelder */
  background-color: transparent; /* Transparent statt schwarz */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 4px;
  padding: 12px 15px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  
  /* Platz für den eigenen Pfeil rechts schaffen */
  padding-right: 45px;
  
  /* Eigener weißer Pfeil als Hintergrundbild (SVG) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  /* Position: Rechts, mittig */
  background-position: right 15px center;
  background-size: 18px;
  
  transition: border-color 0.3s ease;
}

/* Hover und Fokus Effekt */
select.form-input:hover,
select.form-input:focus {
  border-color: #fff;
  outline: none;
}

/* 2. Die aufklappbare Liste (Optionen) stylen */
/* Hinweis: Wird von manchen mobilen Browsern (iOS) ignoriert, sieht aber auf Desktop gut aus */
select.form-input option,
select.form-input optgroup {
  background-color: #222; /* Dunkler Hintergrund für die Liste */
  color: #fff; /* Weiße Schrift */
  padding: 10px;
}

/* Die Überschriften in der Liste (z.B. "Tanz") */
select.form-input optgroup {
  font-weight: bold;
  color: #aaa; /* Etwas heller, zur Unterscheidung */
  font-family: 'Montserrat', sans-serif;
}

/* Disabled Option (z.B. "Bitte wählen...") */
select.form-input option:disabled {
  color: #666;
}


/* =========================================
   11. DETAILS (Ving Tsun & Tanz)
   ========================================= */
/* VT Features */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-side p { color: #ccc; font-size: 1.05rem; max-width: 500px; }
.facts-side { display: grid; gap: 20px; }
.fact-card { background: #000; border: 1px solid #222; padding: 25px; border-radius: 8px; }
.fact-title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}
.fact-item { margin-bottom: 8px; font-size: 0.95rem; }

/* VT Detail Intro */
.vt-intro { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.vt-intro h3 { font-family: "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: 2px; color: #fff; }

/* Tanz Details */
.dance-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  min-height: 400px;
}
.dance-img-placeholder {
  width: 100%;
  height: 450px;
  background: #111;
  border: 1px solid #333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.dance-title { font-family: "Montserrat", sans-serif; font-size: 2.5rem; margin: 0 0 10px 0; color: #fff; line-height: 1.1; }
.dance-subtitle {
  color: var(--accent, #aaa); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem;
  margin-bottom: 25px; border-bottom: 1px solid #333; padding-bottom: 15px; display: inline-block;
}
.dance-text { color: #ccc; margin-bottom: 25px; font-size: 1rem; line-height: 1.8; }
.dance-features { list-style: none; padding: 0; margin-bottom: 30px; }
.dance-features li { margin-bottom: 10px; padding-left: 20px; position: relative; color: #eee; }
.dance-features li::before { content: "•"; color: #fff; position: absolute; left: 0; font-weight: bold; }

@media (max-width: 850px) {
  .split-content { grid-template-columns: 1fr; gap: 40px; }
  .dance-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .dance-img-placeholder { height: 300px; }
  .dance-title { font-size: 2rem; }
}


/* =========================================
   12. GALERIE & TEASER
   ========================================= */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.gallery-item { transition: all 0.4s ease; }
.gallery-item.hidden { display: none; opacity: 0; transform: scale(0.9); }
.ph { aspect-ratio: 1; border: 1px solid var(--line); background: #111; display: grid; place-items: center; color: #444; }

/* Startseite Teaser Strip */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 15px;
  height: 200px; 
}

.teaser-item {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(30%); 
}

.teaser-item:hover img { transform: scale(1.1); filter: grayscale(0%); }

.teaser-item .ph {
  width: 100%;
  height: 100%;
  background: #111;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.3s;
}

.teaser-item:hover .ph { background: #1a1a1a; color: #fff; }

@media (max-width: 700px) {
  .gallery-teaser { grid-template-columns: repeat(2, 1fr); height: auto; gap: 10px; }
  .teaser-item { aspect-ratio: 1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================
   13. ANIMATIONEN & VING TSUN FEATURES
   ========================================= */
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUpAnim { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

.slide-in-left { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; animation-delay: 0.2s; }
.slide-in-right { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; animation-delay: 0.4s; }
.fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.fade-up { animation: fadeUpAnim 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.delay-1 { animation-delay: 0.2s; }

/* Features Layout (Ving Tsun) */
.vt-feature-row { 
  display: flex; 
  align-items: center; 
  gap: 40px; 
  margin-bottom: 40px; /* Verringert von 60px (macht die Seite kürzer) */
  opacity: 0; 
}

.vt-img-wrapper { 
  /* flex: 1; <-- ALTE EINSTELLUNG (War zu groß) */
  flex: 0 0 350px; /* NEU: Das Bild ist jetzt fix 350px breit */
  height: 250px;   /* NEU: Das Bild ist nicht mehr so hoch */
  overflow: hidden; 
  border-radius: 8px; 
  border: 1px solid #333; 
}

.vt-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; /* Wichtig: Bild wird zugeschnitten, nicht verzerrt */
  transition: transform 0.5s; 
}

.vt-img-wrapper:hover .vt-img { transform: scale(1.05); }

.vt-text-content { flex: 1; }
.vt-text-content h4 { font-family: "Montserrat", sans-serif; font-size: 1.5rem; color: #fff; margin-bottom: 15px; }
.vt-text-content p { color: #ccc; font-size: 1rem; }

/* Responsive Anpassung für Handy */
@media (max-width: 800px) {
  .vt-feature-row { 
    flex-direction: column; 
    text-align: left; 
    gap: 20px; 
    animation-name: fadeInUp; 
  }
  
  /* Auf Handy soll das Bild wieder volle Breite haben */
  .vt-img-wrapper {
    flex: auto;
    width: 100%;
    height: auto;
    max-height: 300px;
  }
  
  .slide-in-right { flex-direction: column-reverse; }
}


/* =========================================
   14. FOOTER & SONSTIGES
   ========================================= */
.footer { padding: 40px 0; background: #000; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-box { border: 1px solid var(--line); padding: 15px; background: #111; border-radius: 4px; }

.legal-text h3 { color: #fff; margin: 25px 0 10px; font-family: 'Montserrat', sans-serif; font-size: 1.1rem; }
.legal-text p { margin-bottom: 15px; }

/* Generelle Listen */
.list-item { padding: 15px 0; border-bottom: 1px solid var(--line); }
.list-title { font-weight: 700; }
.list-meta { color: var(--muted); font-size: 0.9rem; }

