/* style.css - Dunklere Hintergründe mit #ffd4dd & #82bae6 */
:root {
  /* Deine Hauptfarben */
  --pink-light: #ffd4dd;
  --pink-medium: #f0b8c4;
  --pink-dark: #e09aaa;
  --blue-light: #82bae6;
  --blue-medium: #6aa8d4;
  --blue-dark: #528aba;
  
  /* Hintergrund - DUNKLER, aber nicht zu dunkel */
  --bg-body: #c8d8e8;
  --bg-card: #dce8f0;
  --bg-card-hover: #e4eef5;
  --bg-section: #d0deea;
  --bg-footer: #2c4a6e;
  
  /* Textfarben - dunkel für guten Kontrast */
  --text-dark: #1a2a3a;
  --text-mid: #2a4a6a;
  --text-light: #4a6a8a;
  
  /* Schatten & Effekte */
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-strong: 0 12px 40px rgba(0,0,0,0.15);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-body);
  color: var(--text-mid);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

h1, h2, h3, h4, .section-title, .hero h1, .page-header h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== NAVIGATION - BLEIBT HELL ========== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(130,186,230,0.3);
  min-height: 80px;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(130,186,230,0.4);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img { 
  height: 95px !important;
  width: auto !important; 
  max-height: none !important;
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.logo-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin-left: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
  padding: 0.3rem 0;
}

.nav-links a:hover { color: var(--blue-light); }
.nav-links a.active-nav { color: var(--blue-light); font-weight: 600; }
.nav-links a.active-nav::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
}

.nav-cta {
  background: var(--pink-light) !important;
  color: var(--text-dark) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  font-size: 0.9rem !important;
}

.nav-cta:hover { 
  background: var(--pink-medium) !important; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 16px rgba(255,212,221,0.4);
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 6px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 10px;
  z-index: 1001;
}

.hamburger span { 
  width: 26px; 
  height: 2.5px; 
  background: var(--text-dark); 
  transition: 0.3s ease; 
  border-radius: 2px; 
}

@media (max-width: 950px) {
  #navbar { padding: 0.5rem 1.2rem; min-height: 70px; }
  .logo-img { height: 75px !important; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: rgba(255,255,255,0.98); 
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column; padding: 7rem 2.5rem; gap: 2rem;
    transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    margin-left: 0; box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
}

@media (max-width: 480px) {
  .logo-img { height: 65px !important; }
}

/* ========== HERO ========== */
.hero {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  min-height: 90vh;
  margin-top: 80px; 
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(130,186,230,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,212,221,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-left { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  padding: 3rem 2rem 3rem 6vw; 
  position: relative; z-index: 1;
}

.hero-badge { 
  display: inline-flex;
  align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.9); 
  padding: 0.5rem 1.2rem; 
  border-radius: 30px; 
  font-size: 0.85rem; 
  font-weight: 500; 
  color: var(--blue-dark); 
  margin-bottom: 1.8rem; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); 
  width: fit-content;
  border: 1px solid var(--pink-light);
}

.hero h1 { 
  font-size: clamp(2.2rem, 5vw, 3.4rem); 
  line-height: 1.15; 
  margin-bottom: 1rem; 
  color: var(--text-dark);
}

.hero h1 em { font-style: italic; color: var(--blue-light); }

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--blue-dark);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.hero p { 
  font-size: 1rem; 
  color: var(--text-mid); 
  max-width: 480px; 
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-phone { display: flex; align-items: center; gap: 1rem; font-size: 1.2rem; font-weight: 600; }
.hero-phone-icon {
  width: 44px; height: 44px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.hero-phone a { color: var(--blue-dark); font-size: 1.1rem; }
.hero-phone small { display: block; font-size: 0.7rem; font-weight: 400; color: var(--text-light); }

.hero-right { display: flex; align-items: center; justify-content: center; padding: 2rem; position: relative; z-index: 1; }
.hero-image { 
  width: 100%; height: auto; max-height: 550px; 
  object-fit: cover; border-radius: 40px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; margin-top: 70px; }
  .hero-left { padding: 2.5rem 1.5rem 1.5rem; text-align: center; align-items: center; }
  .hero p { max-width: 100%; }
  .hero-right { padding: 1rem 1rem 2rem; }
  .hero-image { max-height: 320px; border-radius: 28px; }
  .hero-actions { justify-content: center; }
}

/* ========== BUTTONS ========== */
.btn-primary, .btn-secondary, .btn-accent, .btn-whatsapp, .instagram-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; 
  padding: 0.75rem 1.6rem;
  border-radius: 40px; font-weight: 600; 
  transition: var(--transition-smooth);
  border: none; cursor: pointer; font-size: 0.9rem;
  white-space: nowrap; text-decoration: none;
}

.btn-primary { 
  background: var(--pink-light); 
  color: var(--text-dark); 
  box-shadow: 0 2px 10px rgba(255,212,221,0.4);
}

.btn-primary:hover { 
  background: var(--pink-medium); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 18px rgba(255,212,221,0.5); 
}

.btn-secondary { 
  background: rgba(255,255,255,0.8); 
  color: var(--blue-dark); 
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pink-light);
}

.btn-secondary:hover { 
  background: var(--pink-light);
  transform: translateY(-2px); 
  box-shadow: var(--shadow-medium);
  border-color: transparent;
}

.btn-accent {
  background: var(--pink-light); color: var(--text-dark);
}
.btn-accent:hover { background: var(--pink-medium); transform: translateY(-2px); }

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem; border-radius: 40px;
  font-weight: 600; transition: all 0.3s ease;
  border: none; cursor: pointer; font-size: 0.9rem;
  white-space: nowrap; text-decoration: none;
  background: #25D366; color: white;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #1DA851; transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.instagram-btn { 
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
  color: white; justify-content: center; width: 100%;
}
.instagram-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ========== TRUST STRIP ========== */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; 
  gap: 2rem; padding: 1.8rem 1.5rem; 
  background: var(--bg-card);
  border-bottom: 1px solid var(--pink-light);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; color: var(--text-mid); font-size: 0.9rem; }
.trust-item .icon { font-size: 1.3rem; color: var(--pink-light); }

/* ========== SECTIONS ========== */
.section { padding: 4rem 1.5rem; }
.section-inner { max-width: 1150px; margin: 0 auto; }

.section-label { 
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; 
  text-transform: uppercase; color: var(--blue-light); margin-bottom: 0.5rem; 
}

.section-title { 
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  margin-bottom: 1rem; 
  color: var(--text-dark); 
  font-weight: 700;
}

/* ========== WHY CARDS ========== */
.why-grid, .leistungen-grid, .werte-grid { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; 
}

.why-card { 
  background: var(--bg-card); 
  padding: 2rem 1.5rem; 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-soft); 
  transition: var(--transition-smooth); 
  text-align: center;
  border: 1px solid var(--pink-light);
}

.why-card:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow-medium);
  border-color: var(--blue-light);
  background: var(--bg-card-hover);
}

.why-card .icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--blue-dark); }
.why-card p { color: var(--text-mid); line-height: 1.6; font-size: 0.9rem; }

/* ========== BACKGROUNDS ========== */
.leistungen-bg { background: var(--bg-section); }
.galerie-bg { background: var(--bg-body); }

/* ========== ABLAUF ========== */
.ablauf-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; text-align: center; }
.step-card { 
  background: var(--bg-card); 
  padding: 2rem 1.5rem; 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow-soft); 
  transition: var(--transition-smooth); 
  position: relative;
  border: 1px solid var(--pink-light);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); background: var(--bg-card-hover); }
.step-num { 
  width: 48px; height: 48px;
  background: var(--pink-light);
  color: var(--text-dark); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 700; 
  font-size: 1.3rem; 
  margin: 0 auto 1rem; 
}
.step-card h3 { color: var(--blue-dark); margin-bottom: 0.4rem; font-size: 1.1rem; }
.step-card p { color: var(--text-mid); font-size: 0.85rem; }

/* ========== GALLERY ========== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--pink-light); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; border-radius: calc(var(--radius) - 2px); }
.gallery-item:hover img { transform: scale(1.03); }

/* ========== KONTAKT ========== */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.kontakt-card { 
  background: var(--bg-card); 
  border-radius: var(--radius-lg); 
  padding: 2rem; 
  box-shadow: var(--shadow-soft); 
  display: flex; 
  flex-direction: column; 
  gap: 1.5rem; 
  border: 1px solid var(--pink-light);
}
.kontakt-item { display: flex; gap: 1rem; align-items: flex-start; }
.kontakt-icon { 
  font-size: 1.5rem;
  background: var(--pink-light); 
  width: 48px; 
  height: 48px; 
  border-radius: 14px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0;
}
.kontakt-item h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; margin-bottom: 2px; color: var(--blue-dark); }
.kontakt-item p, .kontakt-item a { color: var(--text-mid); }

.kontakt-highlight { 
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  border-radius: var(--radius-lg); 
  padding: 2rem;
}
.kontakt-highlight h3 { font-family: 'Playfair Display', serif; color: var(--text-dark); font-size: 1.6rem; margin-bottom: 0.8rem; }
.kontakt-highlight p { color: var(--text-dark); opacity: 0.9; }

.map-container { margin: 1.5rem 0; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.map-container iframe { display: block; width: 100%; height: 240px; border: none; }

@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .leistung-grid { grid-template-columns: 1fr !important; }
  .about-header { grid-template-columns: 1fr !important; }
}

/* ========== LEISTUNG GRIDS ========== */
.leistung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.leistung-list { list-style: none; margin: 1.2rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
.leistung-list li::before { content: '✓'; color: var(--pink-light); margin-right: 0.6rem; font-weight: bold; font-size: 1rem; }
.leistung-list li { color: var(--text-mid); line-height: 1.5; font-size: 0.95rem; }
.rounded-img { border-radius: 24px; width: 100%; height: auto; box-shadow: var(--shadow-medium); border: 1px solid var(--pink-light); }

/* ========== ÜBER MICH ========== */
.about-header {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 3px solid var(--pink-light);
}

.about-photo-placeholder {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 3px solid white;
  text-align: center;
  padding: 1.5rem;
}

.about-photo-placeholder .photo-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.about-photo-placeholder p { 
  color: var(--text-dark); 
  font-weight: 600; 
  font-family: 'Playfair Display', serif; 
  font-size: 1rem; 
}

.about-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.about-intro .subtitle {
  color: var(--blue-light);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.about-intro p {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--pink-light);
}

.about-detail-card {
  background: var(--bg-card);
  padding: 1.2rem;
  border-radius: 14px;
  border-left: 3px solid var(--pink-light);
  transition: all 0.3s ease;
}

.about-detail-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(3px);
}

.about-detail-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.about-detail-card p {
  color: var(--text-mid);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pink-light);
}

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

.value-icon {
  width: 50px; height: 50px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 0.6rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.value-item:hover .value-icon {
  background: var(--blue-light);
  transform: scale(1.02);
}

.value-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--blue-dark);
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.8rem;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .about-header { grid-template-columns: 1fr; text-align: center; }
  .about-photo, .about-photo-placeholder { margin: 0 auto; max-width: 200px; }
  .about-intro h1 { font-size: 1.6rem; }
  .about-details { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; gap: 0.8rem; }
}

/* ========== PAGE HEADER ========== */
.page-header { 
  margin-top: 80px; 
  background: var(--bg-section);
  padding: 4rem 2rem 3rem; 
}
.page-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text-dark); }
.page-header p { color: var(--text-mid); font-size: 1rem; max-width: 600px; margin: 0.6rem auto 0; }

@media (max-width: 768px) {
  .page-header { margin-top: 70px; padding: 3rem 1.5rem 2rem; }
}

/* ========== IMPRESSUM ========== */
.impressum-content { max-width: 800px; margin: 0 auto; }
.impressum-card {
  background: var(--bg-card); 
  border-radius: var(--radius-lg); 
  padding: 2rem;
  margin-bottom: 1.5rem; 
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pink-light);
}
.impressum-card h2 {
  font-size: 1.6rem; 
  color: var(--text-dark);
  margin-bottom: 1.2rem; 
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--pink-light);
}
.impressum-block { margin-bottom: 1.5rem; }
.impressum-block:last-child { margin-bottom: 0; }
.impressum-block h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 0.5rem; }
.impressum-block p { color: var(--text-mid); line-height: 1.65; margin-bottom: 0.3rem; font-size: 0.9rem; }
.impressum-block a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 2px; }
.impressum-block a:hover { color: var(--pink-light); }

@media (max-width: 768px) {
  .impressum-card { padding: 1.5rem; }
  .impressum-card h2 { font-size: 1.4rem; }
}

/* ========== FEIERABEND-SPEZIAL (Leistungsseite) ========== */
.feierabend-special {
  background: var(--bg-card);
  border-radius: 28px;
  margin: 2.5rem 0;
  overflow: hidden;
  border: 1px solid var(--pink-light);
}
.feierabend-info {
  padding: 2.5rem;
  text-align: center;
}
.feierabend-badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--text-dark);
  padding: 0.25rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.feierabend-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.feierabend-info p {
  color: var(--text-mid);
}
.feierabend-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin: 0.8rem 0 0.4rem;
}
.feierabend-zeiten {
  background: var(--pink-light);
  padding: 0.8rem 1rem;
  border-radius: 20px;
  margin: 1.2rem auto;
  display: inline-block;
  box-shadow: var(--shadow-soft);
}
.feierabend-zeiten p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.9rem;
}
.feierabend-list {
  list-style: none;
  margin: 1.2rem auto;
  display: inline-block;
  text-align: left;
}
.feierabend-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.feierabend-list li::before {
  content: "✓";
  color: var(--pink-light);
  font-weight: bold;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .feierabend-info { padding: 1.8rem; }
  .feierabend-info h2 { font-size: 1.4rem; }
}

/* ========== FOOTER ========== */
footer { 
  background: var(--bg-footer); 
  color: rgba(255,255,255,0.8); 
  padding: 3rem 1.5rem 1.5rem; 
}

.footer-inner { 
  max-width: 1150px; margin: 0 auto; 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); 
  gap: 2.5rem; margin-bottom: 2rem; 
}

.footer-brand .logo-img {
  height: 75px !important;
  width: auto !important;
  margin-bottom: 1rem;
  border-radius: 12px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.footer-brand p { margin: 0.6rem 0; font-size: 0.85rem; opacity: 0.8; line-height: 1.5; }

.footer-col h4 { 
  color: white; 
  margin-bottom: 0.8rem; 
  font-family: 'Inter', sans-serif; 
  font-size: 0.9rem; 
  letter-spacing: 0.02em; 
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink-light); }

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.1); 
  padding-top: 1.5rem; 
  text-align: center; 
  font-size: 0.75rem; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 1.5rem; 
  opacity: 0.6; 
}

@media (max-width: 768px) {
  .footer-brand .logo-img { height: 60px !important; }
}

/* ========== FLOAT BUTTONS ========== */
.float-btns { 
  position: fixed; bottom: 24px; right: 24px; 
  display: flex; flex-direction: column; gap: 12px; z-index: 90; 
}

.float-btn { 
  width: 52px; height: 52px; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  font-size: 1.4rem; box-shadow: 0 6px 18px rgba(0,0,0,0.12); 
  transition: all 0.3s ease; 
}

.float-wa-btn { background: #25D366; color: white; }
.float-phone-btn { background: var(--pink-light); color: var(--text-dark); }

.float-btn:hover { transform: scale(1.08); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.reveal.visible { opacity: 1; transform: translateY(0); }