/*
Theme Name: Marketingagentur Erstling
Theme URI: https://marketingagentur-erstling.de
Author: David Erstling
Description: Modernes Marketing-Agentur Theme für Ochsenfurt – Social Media, Video, Foto, Webseiten & Kurse
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: erstling
*/

/* ============================================================
   FARBEN & VARIABLEN – Hier einfach Farben anpassen!
   ============================================================ */
:root {
  --primary:        #FF6B00;      /* Akzentfarbe (Orange) */
  --primary-dark:   #E05A00;      /* Dunkles Orange für Hover */
  --bg-dark:        #080C14;      /* Haupt-Hintergrund */
  --bg-section:     #0d1220;      /* Abwechselnder Hintergrund */
  --bg-card:        #111827;      /* Karten-Hintergrund */
  --bg-card-hover:  #1a2235;      /* Karten-Hover */
  --text-primary:   #FFFFFF;      /* Haupttext */
  --text-secondary: #94A3B8;      /* Grauer Text */
  --text-muted:     #64748B;      /* Abgedunkelter Text */
  --border:         rgba(255,255,255,0.08);
  --border-accent:  rgba(255,107,0,0.3);
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 30px rgba(0,0,0,0.4);
  --shadow-accent:  0 8px 40px rgba(255,107,0,0.2);
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width:      1200px;
  --font:           'Poppins', sans-serif;
}

/* ============================================================
   RESET & BASIS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font); }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}
.section-title h2 { color: var(--text-primary); }
.section-title h2 span { color: var(--primary); }
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
}
.section-badge {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 70px 0;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #FF9D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; border-radius: 10px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}
#masthead.scrolled {
  background: rgba(8,12,20,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.site-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary) !important;
  display: flex; align-items: center; gap: 10px;
}
.site-logo span { color: var(--primary); }
.site-logo img { height: 45px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
.nav-menu a:hover { color: var(--text-primary); }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
/* Gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,12,20,0.9) 0%, rgba(8,12,20,0.5) 100%);
}
/* Animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: #4F46E5;
  bottom: -100px; left: -100px;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title { margin-bottom: 1.5rem; }
.hero-title em {
  font-style: normal;
  color: var(--primary);
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Scroll-Indikator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   LEISTUNGEN ÜBERSICHT (Icons-Grid)
   ============================================================ */
#leistungen-overview {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.leistung-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.leistung-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
}
.leistung-icon {
  width: 64px; height: 64px;
  background: rgba(255,107,0,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}
.leistung-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.leistung-card p { font-size: 0.85rem; margin: 0; }

/* ============================================================
   PAKETE / PRICING
   ============================================================ */
#pakete { background: var(--bg-dark); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255,107,0,0.06) 0%, var(--bg-card) 100%);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-accent);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.pricing-price {
  margin: 1rem 0;
  line-height: 1;
}
.pricing-price strong {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
}
.pricing-price span { color: var(--text-muted); font-size: 0.9rem; }
.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.pricing-features li .check {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.pricing-features li.included { color: var(--text-primary); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
#video { background: var(--bg-section); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-card-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
/* Placeholder für fehlende Bilder */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2235, #0d1220);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
  gap: 0.5rem;
}
.img-placeholder .icon { font-size: 2.5rem; }
.img-placeholder .label {
  font-size: 0.7rem;
  opacity: 0.6;
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 3px 8px;
  border-radius: 4px;
}
.product-card-body { padding: 1.5rem; }
.product-card-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.product-card-body p { font-size: 0.85rem; margin: 0 0 1rem; }
.product-tag {
  display: inline-block;
  background: rgba(255,107,0,0.1);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ============================================================
   FOTO SECTION
   ============================================================ */
#foto { background: var(--bg-dark); }
.foto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.foto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.foto-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}
.foto-card-img {
  height: 260px;
  overflow: hidden;
}
.foto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.foto-card:hover .foto-card-img img { transform: scale(1.05); }
.foto-card-content { padding: 2rem; }
.foto-card-content h3 { margin-bottom: 0.5rem; }
.foto-card-content p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ============================================================
   WEBSEITEN SECTION
   ============================================================ */
#webseiten { background: var(--bg-section); }
.webseiten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.webseiten-visual {
  position: relative;
}
.browser-mockup {
  background: #1a2235;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.browser-bar {
  background: #0d1220;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #28CA41; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
}
.browser-content {
  height: 280px;
  overflow: hidden;
}
.browser-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.webseiten-list { list-style: none; margin-bottom: 2rem; }
.webseiten-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.webseiten-list li:last-child { border-bottom: none; }
.webseiten-list li .bullet {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   KURSE & BERATUNG
   ============================================================ */
#kurse { background: var(--bg-dark); }
.kurse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.kurs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.kurs-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
}
.kurs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #FF9D00);
}
.kurs-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,107,0,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.kurs-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.kurs-card p { font-size: 0.875rem; margin-bottom: 1.5rem; }
.kurs-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.kurs-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Beratung */
.beratung-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(79,70,229,0.1));
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.beratung-content h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.beratung-content p { font-size: 1rem; margin: 0; }
.beratung-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* ============================================================
   WARUM WIR / STATS
   ============================================================ */
#warum {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.warum-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.warum-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.stat-box .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.stat-box .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.warum-list { margin: 1.5rem 0 2rem; }
.warum-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.warum-list li .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   REFERENZEN / KUNDEN-LOGOS
   ============================================================ */
#referenzen { background: var(--bg-dark); }
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.logo-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  filter: grayscale(100%) brightness(0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 70px;
}
.logo-item img { max-height: 40px; width: auto; object-fit: contain; }
.logo-item:hover {
  filter: grayscale(0%) brightness(1);
  border-color: var(--border-accent);
}

/* ============================================================
   KONTAKT SECTION
   ============================================================ */
#kontakt { background: var(--bg-section); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-info h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.kontakt-info p { font-size: 0.95rem; }
.kontakt-details { margin: 2rem 0; }
.kontakt-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.kontakt-item:last-child { border-bottom: none; }
.kontakt-icon {
  width: 42px; height: 42px;
  background: rgba(255,107,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kontakt-item strong { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.kontakt-item span { color: var(--text-secondary); font-size: 0.95rem; }
.kontakt-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,107,0,0.04);
}
select option { background: var(--bg-card); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-about p {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted) !important;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--primary); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .section-pad { padding: 70px 0; }
  .grid-3, .product-grid, .kurse-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .warum-grid { grid-template-columns: 1fr; gap: 3rem; }
  .webseiten-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .beratung-banner { flex-direction: column; text-align: center; }
  .beratung-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,12,20,0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-cta { margin: 1rem 1.5rem 0.5rem; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .foto-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .grid-3, .product-grid, .kurse-grid, .pricing-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   WORDPRESS CORE
   ============================================================ */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin: 0 auto; display: block; }
