:root {
  --accent-pink: #d3aca8;
  --accent-pink-rgb: 211, 172, 168;
  /* aus Logo extrahiert */
  --accent-pink-dark: #c76a76;
  --green: #6a804a;
  /* aus Logo extrahiert */
  --green-light: #9eac89;
  --bg-pink: #f9f5f4;
  --text: #222222;
  --muted: #6b6b6b;
  --color-fonthead-red: #9b313f;
  --color-fonthead-green: #747a32;
  --color-fonthead-black: #000000;


  /* Font Family Variablen */
  --font-heading: 'Ms Madi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Vend Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Font Weight Variablen */
  --fw-thin: 100;
  --fw-extra-light: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
  --fw-black: 900;

  /* Font Size Scale */
  --fs-xs: 0.75rem;
  /* 12px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-base: 1rem;
  /* 16px */
  --fs-lg: 1.125rem;
  /* 18px */
  --fs-xl: 1.25rem;
  /* 20px */
  --fs-2xl: 1.5rem;
  /* 24px */
  --fs-3xl: 1.875rem;
  /* 30px */
  --fs-4xl: 2.25rem;
  /* 36px */
  --fs-5xl: 3rem;
  /* 48px */
  --fs-6xl: 3.75rem;
  /* 60px */
  --fs-7xl: 4.5rem;
  /* 72px */

  /* Line Heights */
  --lh-tight: 1.1;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;

  /* Letter Spacing */
  --ls-tight: -0.5px;
  --ls-normal: 0;
  --ls-wide: 0.5px;
  --ls-wider: 1px;
  --ls-widest: 2px;
}

/* ===========================================
           FONT SYSTEM: HEADING FONT (Montserrat)
           =========================================== */

/* Basisklasse für Heading Font */
.font-heading {
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

/* Font Weight Subklassen */
.font-heading.fw-thin {
  font-weight: var(--fw-thin);
}

.font-heading.fw-light {
  font-weight: var(--fw-light);
}

.font-heading.fw-regular {
  font-weight: var(--fw-regular);
}

.font-heading.fw-medium {
  font-weight: var(--fw-medium);
}

.font-heading.fw-semibold {
  font-weight: var(--fw-semibold);
}

.font-heading.fw-bold {
  font-weight: var(--fw-bold);
}

.font-heading.fw-extrabold {
  font-weight: var(--fw-extra-bold);
}

.font-heading.fw-black {
  font-weight: var(--fw-black);
}

/* Font Size Subklassen */
.font-heading.size-xs {
  font-size: var(--fs-xs);
}

.font-heading.size-sm {
  font-size: var(--fs-sm);
}

.font-heading.size-base {
  font-size: var(--fs-base);
}

.font-heading.size-lg {
  font-size: var(--fs-lg);
}

.font-heading.size-xl {
  font-size: var(--fs-xl);
}

.font-heading.size-2xl {
  font-size: var(--fs-2xl);
}

.font-heading.size-3xl {
  font-size: var(--fs-3xl);
}

.font-heading.size-4xl {
  font-size: var(--fs-4xl);
}

.font-heading.size-5xl {
  font-size: var(--fs-5xl);
}

.font-heading.size-6xl {
  font-size: var(--fs-6xl);
}

.font-heading.size-7xl {
  font-size: var(--fs-7xl);
}

/* Letter Spacing Subklassen */
.font-heading.ls-tight {
  letter-spacing: var(--ls-tight);
}

.font-heading.ls-normal {
  letter-spacing: var(--ls-normal);
}

.font-heading.ls-wide {
  letter-spacing: var(--ls-wide);
}

.font-heading.ls-wider {
  letter-spacing: var(--ls-wider);
}

.font-heading.ls-widest {
  letter-spacing: var(--ls-widest);
}

/* Text Transform Subklassen */
.font-heading.uppercase {
  text-transform: uppercase;
}

.font-heading.lowercase {
  text-transform: lowercase;
}

.font-heading.capitalize {
  text-transform: capitalize;
}

/* Vordefinierte Kombinationen (Utility Classes) */
.heading-display {
  font-family: var(--font-heading);
  font-weight: var(--fw-black);
  font-size: var(--fs-7xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.heading-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-5xl);
  line-height: var(--lh-tight);
}

.heading-subtitle {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xl);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

/* ===========================================
           FONT SYSTEM: BODY FONT (Open Sans)
           =========================================== */

/* Basisklasse für Body Font */
.font-body {
  font-family: var(--font-body);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-normal);
}

/* Font Weight Subklassen */
.font-body.fw-light {
  font-weight: var(--fw-light);
}

.font-body.fw-regular {
  font-weight: var(--fw-regular);
}

.font-body.fw-medium {
  font-weight: var(--fw-medium);
}

.font-body.fw-semibold {
  font-weight: var(--fw-semibold);
}

.font-body.fw-bold {
  font-weight: var(--fw-bold);
}

/* Font Size Subklassen */
.font-body.size-xs {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
}

.font-body.size-sm {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.font-body.size-base {
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
}

.font-body.size-lg {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
}

.font-body.size-xl {
  font-size: var(--fs-xl);
  line-height: var(--lh-relaxed);
}

/* Line Height Subklassen */
.font-body.lh-tight {
  line-height: var(--lh-tight);
}

.font-body.lh-normal {
  line-height: var(--lh-normal);
}

.font-body.lh-relaxed {
  line-height: var(--lh-relaxed);
}

/* Vordefinierte Kombinationen */
.body-large {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: var(--fs-xl);
  line-height: var(--lh-relaxed);
}

.body-small {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: #666;
}

.body-caption {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

/* ===========================================
           SPEZIFISCHE ANWENDUNGSKLASSEN
           =========================================== */

/* Brand Title & Subtitle */
.brand-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-black);
  font-size: 2.1rem !important;
}

.text-gradient-red {
  background: var(--color-fonthead-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-green {
  background: var(--color-fonthead-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.brand-sub {
  font-family: var(--font-body);
  font-weight: var(--fw-light);
  font-size: 0.8rem !important;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-fonthead-black);
}

/* ===========================================
           RESPONSIVE ANPASSUNGEN
           =========================================== */

@media (max-width: 768px) {
  :root {
    /* Kleinere Font Sizes für Mobile */
    --fs-5xl: 2.5rem;
    --fs-6xl: 3rem;
    --fs-7xl: 3.5rem;
  }

  .heading-display {
    font-size: var(--fs-6xl);
  }

  .font-heading.size-7xl,
  .font-heading.size-6xl,
  .font-heading.size-5xl {
    font-size: clamp(2rem, 6vw, 3rem) !important;
  }
}

@media (max-width: 480px) {
  .font-heading.ls-widest {
    letter-spacing: var(--ls-wide);
  }

  .brand-sub {
    letter-spacing: var(--ls-wider);
  }
}

/* ===========================================
           HELPER CLASSES FÜR SCHNELLE ANWENDUNG
           =========================================== */

.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-stroke {
  -webkit-text-stroke: 1px currentColor;
  color: transparent;
}

/* Grund */
* {
  box-sizing: border-box
}


body {
  /*  font-family: "Inter", "Helvetica Neue", Arial, sans-serif; */
  color: var(--text);
  margin: 0;
  background: var(--bg-pink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* Font */
.ms-madi-regular {
  font-family: "Ms Madi", cursive;
  font-weight: 400;
  font-style: normal;
}

.ms-madi-bold {
  font-family: "Ms Madi", cursive;
  font-weight: 700;
  font-style: bold;
}

.vend-sans-regular {
  font-family: "Vend Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.vend-sans-bold {
  font-family: "Vend Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: bold;
}


/* NAV */
.navbar {
  /* background: rgba(255,255,255,0.85); */
  background: rgba(var(--accent-pink-rgb), 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(6px);
}

.logo {
  max-height: 48px;
}

.logo-hero {
  max-width: 260px;
  max-height: 140px;
}

/* Super schmale Navbar */
#mainNav.navbar {
  padding-top: 0.15rem !important;
  padding-bottom: 0.15rem !important;
  height: 55px !important;
}

#mainNav .logo {
  height: 35px !important;
}

#mainNav .brand-title {
  font-size: 1.2rem !important;
  line-height: 0.9 !important;
}

#mainNav .brand-sub {
  font-size: 0.6rem !important;
  line-height: 0.9 !important;
}

#mainNav .nav-link {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}

/* Section baseline */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-light {
  background: transparent;
}

.section-accent {
  background: linear-gradient(180deg, var(--accent-pink) 0%, var(--green-light) 100%);
  /*  color: #fff; */
  color: var(--color-fonthead-black);
}

.section-green {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-light) 100%);
  color: #fff;
}

/* Headings */
.section-heading {
  font-family: "Georgia", serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.4rem;
  color: var(--accent-pink-dark);
  margin-bottom: 0.5rem;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn-primary,
.btn-cta {
  background: var(--accent-pink-dark);
  color: #fff;
  border: none;
  padding: .6rem 1.1rem;
  border-radius: .35rem;
}

.btn-outline-success {
  color: var(--green);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-dark {
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--text);
}

/* Service cards */
.service-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
  margin-top: 0;
  color: var(--accent-pink-dark);
}

.service-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  color: var(--muted);
}

.price {
  color: var(--green);
  font-weight: 700;
}

/* info box */
.info-box {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* Basis-Liste */
.info-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.info-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

/* Label-Stil mit Farbe */
.label {
  font-weight: 600;
  display: inline-block;
  min-width: 140px;
  /* Gleiche Breite für alle Labels */
}

.label-red {
  color: var(--color-fonthead-red);
}

.label-black {
  color: var(--color-fonthead-black);
}

.label-green {
  color: var(--color-fonthead-green);
}

/* Optional: Mit Icon vor jedem Punkt */
.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-fonthead-green);
  font-weight: bold;
}

/* contact */
.contact-list {
  list-style: none;
  padding-left: 0;
  color: var(--muted);
}

.contact-list li {
  margin-bottom: .4rem;
}

.contact-link {
  color: #fff;
  text-decoration: underline;
}

/* footer */
.footer {
  background: transparent;
  color: var(--muted);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .logo-hero {
    max-width: 200px;
  }
}