## style.css

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/Outfit/Outfit-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/Outfit/Outfit-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/Outfit/Outfit-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --blue: #134395;
  --pink: #D8388C;
  --text: #333333;
  --light: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(216,56,140,0.15) 0%, rgba(216,56,140,0) 70%);
  top: -200px;
  right: -200px;
  z-index: -1;
  filter: blur(30px);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 500;
  position: relative;
  padding: 6px 8px;
  border-radius: 8px;

  transition: all 0.25s ease;
}

/* UNDERLINE + GLOW BASE */
nav a::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 2px;

  width: 0%;
  height: 2px;
  background: var(--pink);

  transition: width 0.3s ease;
  border-radius: 2px;
}

/* BACKGROUND HIGHLIGHT LAYER */
nav a::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(216,56,140,0.08); /* Fuchsia Soft */
  border-radius: 10px;

  transform: scale(0.8);
  opacity: 0;

  transition: all 0.25s ease;
  z-index: -1;
}

/* HOVER STATE */
nav a:hover {
  color: var(--pink);
  transform: translateY(-2px);
}

/* Fuchsia Underline animiert */
nav a:hover::after {
  width: 80%;
}

/* Soft Glow Background */
nav a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 8% 100px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}

.logo-animation-wrapper {
  position: relative;

  display: flex;
  flex-direction: column;   /* 👈 DAS ist der entscheidende Fix */
  align-items: center;      /* zentriert alles sauber */
}

.logo-base {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.crown-top {
  position: absolute;
  width: 420px;
  top: -220px;
  left: 49%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 1.5s ease;
  z-index: 3;
}

.crown-top.active {
  top: 3px;
  opacity: 1;
}

.floating-crown {
  position: absolute;
  width: 700px;
  height: 700px;
  background: url('images/crown-bg.webp') center/contain no-repeat;
  opacity: 0.05;
  bottom: -200px;
  right: -100px;
  animation: floatCrown 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatCrown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

.coming-soon {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(216,56,140,0.1);
  color: var(--pink);
  margin-bottom: 25px;
  font-weight: 500;
}

.hero-text h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--blue);
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
}

.hero-text h1 span {
  font-size: 3rem;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 700px;
  color: var(--text);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid rgba(19,67,149,0.15);
  color: var(--blue);
}

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--blue);
  opacity: 0.7;
  font-size: 0.95rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.about,
.contact {
  padding: 140px 8%;
}

.about {
  background: var(--light);
}

.section-inner {
  max-width: 1200px;
  margin: auto;
}

.section-inner h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--blue);
}

.section-inner p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text);
}

.map-wrapper {
  width: 100%;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  margin-top: 15px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================
   GRID (WICHTIGER FIX)
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;
}


/* =========================
   CARDS
========================= */

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);

  transition: 0.4s ease;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* Hover Effekt (wie service-card) */
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(19,67,149,0.15);
}

/* Pink Glow wie bei Services */
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(216,56,140,0.12), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.contact-card:hover::before {
  opacity: 1;
}

/* Titel */
.contact-card h3 {
  color: var(--blue);
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

/* Text */
.contact-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

/* =========================
   OPEN STATUS
========================= */

.open-status {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.open-status.open {
  color: #2e9b3f;
}

.open-status.closed {
  color: #d8388c;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px;
  }

  .map-wrapper {
    height: 260px
  }
}

footer {
  text-align: center;
  padding: 40px;
  color: var(--text); /* statt #888 */
  background: white;
}

@media (max-width: 1100px) {

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    justify-items: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.15;
  }

  .hero-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-crown {
    width: 420px;
    height: 420px;
    opacity: 0.04;
  }

  .logo-base {
    max-width: 380px;
  }

  .crown-top {
    width: 320px;
  }
}

@media (max-width: 768px) {

  .navbar {
    padding: 16px 6%;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-content {
    gap: 35px;
  }

  .hero-text h1 {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 100%;
    padding: 0 5px;
  }

  .logo-base {
    max-width: 300px;
  }

  .crown-top {
    width: 240px;
  }

  .floating-crown {
    display: none; /* wichtig für Performance + Ruhe im Layout */
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .section-inner h2 {
    font-size: 1.9rem;
  }
}

 /* =========================
   COOKIE BANNER - BASE
========================= */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;

  max-width: 520px;
  margin: 0 auto;

  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);

  padding: 20px;
  z-index: 9999;

  box-sizing: border-box;

  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;

  transition: all 0.35s ease;
}

/* sichtbar */
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
   TEXT STYLING
========================= */

.cookie-box h3 {
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.cookie-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 15px;

  overflow-wrap: break-word;
}

/* Links */
.cookie-box a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 500;
}

.cookie-box a:hover {
  text-decoration: underline;
}

/* =========================
   TOGGLE OPTIONS
========================= */

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 10px 0;

  font-size: 0.9rem;
  color: var(--text);
}

.cookie-toggle input {
  accent-color: var(--blue);
  transform: scale(1.1);
}

/* =========================
   BUTTONS
========================= */

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;

  margin-top: 15px;
}

.cookie-btn-primary,
.cookie-btn-secondary {
  border-radius: 100px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 0.9rem;
  border: none;
}

/* PRIMARY */
.cookie-btn-primary {
  background: var(--blue);
  color: #fff;
}

.cookie-btn-primary:hover {
  background: var(--pink);
}

/* SECONDARY */
.cookie-btn-secondary {
  background: transparent;
  border: 1px solid #ddd;
  color: var(--blue);
}

.cookie-btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 600px) {

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));

    max-width: none;

    padding: 16px;
    border-radius: 16px;

    max-height: 80vh;
    overflow-y: auto;
  }

  .cookie-box h3 {
    font-size: 1.05rem;
  }

  .cookie-box p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn-primary,
  .cookie-btn-secondary {
    width: 100%;
    padding: 12px;
  }
}

/* =========================
   SAFETY (iOS FIX)
========================= */

body.cookie-open {
  overflow: hidden;
}
/* =========================
   TEXT CONTENT
========================= */

.cookie-box h3 {
  color: #134395;
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cookie-box p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 14px;

  /* 🔥 WICHTIG: verhindert kaputten Umbruch */
  overflow-wrap: break-word;
  word-break: break-word;
}

.cookie-box a {
  color: #D8388C;
  text-decoration: none;
  font-weight: 500;
}

/* =========================
   BUTTONS
========================= */

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}

.cookie-btn-primary,
.cookie-btn-secondary {
  border-radius: 100px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 0.9rem;
}

/* PRIMARY */
.cookie-btn-primary {
  background: #134395;
  color: #fff;
  border: none;
}

.cookie-btn-primary:hover {
  background: #D8388C;
}

/* SECONDARY */
.cookie-btn-secondary {
  background: transparent;
  border: 1px solid #ddd;
  color: #134395;
}

.cookie-btn-secondary:hover {
  border-color: #D8388C;
  color: #D8388C;
}

/* =========================
   MOBILE (iPhone 12 SAFE)
========================= */

@media (max-width: 600px) {

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));

    max-width: none;
    width: auto;

    padding: 16px;

    border-radius: 16px;

    /* verhindert "zu hoch / gequetscht" */
    max-height: 80vh;
    overflow-y: auto;
  }

  .cookie-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-box h3 {
    font-size: 1rem;
  }

  .cookie-box p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-btn-primary,
  .cookie-btn-secondary {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* =========================
   SAFETY (iOS FIX)
========================= */

body {
  padding-bottom: env(safe-area-inset-bottom);
}


.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  nav {
    position: fixed;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);

    transform: translateX(120%);
    transition: 0.3s ease;
  }

  nav.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
  }

  nav a {
    padding: 12px 0;
    font-size: 1rem;
  }
}

/* =========================
   GLOBAL LINK RESET (sauber & konsistent)
========================= */

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:visited,
a:active {
  color: inherit;
}

a:hover {
  color: var(--pink); /* oder var(--blue) wenn neutral bleiben soll */
  text-decoration: none;
}


/* =========================
   BUTTON LINKS FIX (WICHTIG)
========================= */

.btn-primary,
.btn-secondary {
  text-decoration: none; /* sicherstellen */
}

/* PRIMARY BUTTON bleibt klar lesbar */
.btn-primary {
  color: #fff !important; /* überschreibt global a */
}

/* SECONDARY BUTTON bleibt dunkel */
.btn-secondary {
  color: var(--blue) !important;
}

/* Hover stabilisieren */
.btn-primary:hover,
.btn-secondary:hover {
  text-decoration: none;
}


/* =========================
   REVEAL SECTIONS
========================= */

.reveal-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

/* Bild */
.reveal-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Startzustand (unsichtbar + verschoben) */
.reveal-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

/* aktiv beim Scroll */
.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}

/* LINKS rein */
.reveal-section.left .reveal-image {
  transform: translateX(-80px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal-section.left.active .reveal-image {
  transform: translateX(0);
  opacity: 1;
}

/* RECHTS rein */
.reveal-section.right .reveal-image {
  transform: translateX(80px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal-section.right.active .reveal-image {
  transform: translateX(0);
  opacity: 1;
}

.reveal-section.right .reveal-image {
  order: 2;
}

.reveal-section.right .reveal-text {
  order: 1;
}

/* TEXT etwas verzögert */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease 0.2s;
}

.reveal-section.active .reveal-text {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .reveal-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .doctor-photo {
    width: min(280px, 90%);
    transform: none;
    margin-top: 20px;
  }
}
/* =========================
   ZAHNÄRZTE FOTO UNTER LOGO
========================= */

.doctor-photo {
  display: block;
  margin: 25px auto 0;

  width: min(420px, 85%);
  height: auto;

  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);

  opacity: 0;
  transform: translateX(-60px) rotate(-4deg);

  animation: doctorIn 1.2s ease forwards;
  animation-delay: 0.4s;
}

/* Animation */
@keyframes doctorIn {
  to {
    opacity: 1;
    transform: translateX(0) rotate(-3deg);
  }
}

/// LEISTUNGEN//////


.services {
  padding: 140px 8%;
  background: #f8fafc;
}

.services-intro {
  text-align: left;
  max-width: 850px;
  margin: 0 0 50px 0;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effekt (modern + clean) */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(19,67,149,0.15);
}

/* pinker Glow beim Hover */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(216,56,140,0.12), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  color: var(--blue);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px;
  }
}


/* =========================
   LEISTUNGEN SECTION
========================= */

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

/* Bild */
.services-image {
  display: flex;
  justify-content: center;
}

.services-image img {
  width: 100%;
  max-width: 650px; /* wichtiger Boost */
  transform: scale(1.02);
}

/* Content */
.services-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* GRID für Karten (falls noch nicht vorhanden) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* =========================
   SERVICE CARDS (BASE)
========================= */

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover nur subtil (weil Click-UX wichtiger ist) */
.service-card:hover {
  transform: translateY(-4px);
}

/* =========================
   SHORT TEXT
========================= */

.service-card .short {
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.6;
}

/* =========================
   EXPAND CONTENT (HIDDEN)
========================= */

.service-card .more-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.45s ease;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

/* =========================
   ACTIVE STATE (EXPANDED)
========================= */

.service-card.active {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
  border: 1px solid rgba(19,67,149,0.08);
}

.service-card.active .more-text {
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 15px;
}

/* =========================
   GRID RESPONSIVE FIX
========================= */

@media (max-width: 1100px) {

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-image {
    order: -1;
    margin-bottom: 30px;

    display: flex;
    justify-content: center;
  }

  .services-image img {
    width: 80%;        /* 👈 DAS ist der wichtige Fix */
    max-width: 320px;  /* optional harte Grenze */
    height: auto;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PRAXIS NAME FIX
========================= */

.praxis-name {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .praxis-name {
    white-space: normal;
    display: inline;
  }
}

/* =========================
   DESKTOP HOVER PREVIEW (SMART)
========================= */

@media (hover: hover) {

  .service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
  }

  /* Hover zeigt Preview vom Text */
  .service-card:hover .more-text {
    max-height: 900px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
  }
}

/* =========================
   SERVICE ICONS
========================= */

.service-icon {
  width: 82px;
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  transition: all 0.35s ease;
}

/* SVG Bild */
.service-icon img {
  width: 82px;
  height: 82px;

  object-fit: contain;

  transition: all 0.35s ease;

  /* Standardfarbe = Blau */
  filter:
    brightness(0)
    saturate(100%)
    invert(20%)
    sepia(79%)
    saturate(1600%)
    hue-rotate(210deg)
    brightness(92%)
    contrast(92%);
}


/* SVG wird pink */
.service-card.active .service-icon img {
  filter:
    brightness(0)
    saturate(100%)
    invert(29%)
    sepia(88%)
    saturate(2480%)
    hue-rotate(308deg)
    brightness(90%)
    contrast(92%);
}

/* MOBILE */
@media (max-width: 768px) {

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-icon img {
    width: 64px;
    height: 64px;
  }
}

/* =========================
   MAP CARD CLEAN FIX
========================= */

.map-card {
  grid-column: 1 / -1; /* volle Breite */
  padding: 40px;
}

/* Container für Map */
.map-wrapper {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #f2f4f7;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Placeholder Hintergrund */
.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eef2f7, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay Box */
.map-overlay {
  padding: 20px;
  max-width: 280px;
}

.map-overlay h4 {
  color: var(--blue);
  margin-bottom: 10px;
}

.map-overlay p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 15px;
}

/* Button */
.map-btn {
  background: var(--blue);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.map-btn:hover {
  background: var(--pink);
}

/* Desktop harmonisch */
@media (min-width: 769px) {
  .map-wrapper {
    min-height: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 320px;
  }
}

# Bilderstruktur

```plaintext
/images
   logo-base.webp
   crown-top.webp
   crown-bg.webp

/* =========================
   COSTS / WAHLZAHNARZT INFO
========================= */

.costs {
  padding: 120px 8%;
  background: #ffffff;
}

.costs-card {
  background: linear-gradient(
    135deg,
    rgba(19,67,149,0.06),
    rgba(216,56,140,0.05)
  );
  border-radius: 32px;
  padding: 55px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.costs-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(216,56,140,0.18),
    transparent 70%
  );
  pointer-events: none;
}

.costs-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(216,56,140,0.1);
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.costs-card h2 {
  color: var(--blue);
  font-size: 2.6rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.costs-card p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
  max-width: 900px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* Link oben im Hero sauber */
.coming-soon {
  text-decoration: none;
}

/* damit der fixe Header den Bereich nicht überdeckt */
#kosten {
  scroll-margin-top: 120px;
}

/* MOBILE */
@media (max-width: 768px) {
  .costs {
    padding: 90px 22px;
  }

  .costs-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .costs-card h2 {
    font-size: 2rem;
  }

  .costs-card p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (max-width: 768px) {
  .team-card.reception {
    display: block;
  }

  .team-card.reception .team-avatar {
    margin-bottom: 20px;
  }
}

/* =========================
   TEAM SECTION
========================= */

.team {
  padding: 120px 8%;
  background: #ffffff;
}

.team-intro {
  max-width: 850px;
  text-align: left;
  margin-bottom: 55px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

/* Grundkarte */
.team-card {
  grid-column: span 2;
  background: #ffffff;
  padding: 34px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Zahnärzte oben breiter */
.team-card.doctor {
  grid-column: span 3;
}

/* Annahme unten über volle Breite */
.team-card.reception {
  grid-column: 1 / -1;
}

/* Hover */
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(19,67,149,0.15);
}

/* Pinker Glow */
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(216,56,140,0.12), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card > * {
  position: relative;
  z-index: 1;
}

/* Initialen-Kreis / später Foto */
.team-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(19,67,149,0.08);
  color: var(--blue);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 22px;

  overflow: hidden;
  transition: 0.35s ease;
}

/* Für spätere Team-Fotos */
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover Avatar */
.team-card:hover .team-avatar {
  background: rgba(216,56,140,0.12);
  color: var(--pink);
  transform: scale(1.05);
}

.team-card h3 {
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 8px;
  line-height: 1.35;
}

.team-card span {
  display: block;
  color: var(--pink);
  font-weight: 600;
  line-height: 1.4;
}

/* Annahme als breite Karte etwas schöner */
.team-card.reception {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 28px;
  align-items: center;
  min-height: 170px;
}

.team-card.reception .team-avatar {
  margin-bottom: 0;
}

.team-card.reception h3,
.team-card.reception span {
  grid-column: 2;
}

/* Tablet */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card,
  .team-card.doctor,
  .team-card.reception {
    grid-column: span 1;
  }

  .team-card.reception {
    display: flex;
    min-height: 220px;
  }

  .team-card.reception .team-avatar {
    margin-bottom: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team {
    padding: 90px 8%;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card.doctor,
  .team-card.reception {
    grid-column: span 1;
  }

  .team-card {
    padding: 30px 26px;
    min-height: 200px;
  }

  .team-card.reception {
    display: flex;
  }

  .team-card.reception .team-avatar {
    margin-bottom: 22px;
  }

  .team-intro {
    font-size: 1rem;
    line-height: 1.75;
  }
}