:root {

  /* ===== FARBEN ===== */
  --color-primary: #960082;
  --color-accent: #C066B4;
  
  --color-white: #FFFFFF;
  --color-light: #F0F0F0;      /* hellgrau */
  --color-gray: #8F8F8F;       /* grau (mittel) */
  --color-dark: #444444;       /* dunkelgrau */
  --color-black: #000000;
  
  --color-text: var(--color-dark);
  --color-secondary: var(--color-dark);
  --color-bg: #F9F9F9;
  
    /* Alert-Farben */
  --color-alert-success-bg: #E8F5E9;
  --color-alert-success-text: #1B5E20;
  --color-alert-success-border: #A5D6A7;
  
  --color-alert-error-bg: #FFEBEE;
  --color-alert-error-text: #B71C1C;
  --color-alert-error-border: #EF9A9A;
  
  /* ===== BORDER RADIUS ===== */
  --border-radius-sm: 16px;
  --border-radius-md: 20px;
  --border-radius-lg: 40px;
  
  /* ===== CONTAINER ===== */
  --container-max: 1200px;
  --container-padding: var(--spacing-md);
  
  /* ===== GRID ===== */
  --grid-column-width: 100px;
  --grid-gap-width: 25px;
  
  /* ===== TYPOGRAPHIE ===== */
  --typography-primary-font-family: var(--font-michroma);
  --typography-primary-font-size: 45px;
  --typography-primary-font-weight: 700;
  --typography-primary-line-height: 67.5px;
  --typography-primary-letter-spacing: 5.4px;
  --typography-primary-word-spacing: 7.2px;
  
  --typography-secondary-font-family: var(--font-michroma);
  --typography-secondary-font-size: 60px;
  --typography-secondary-font-weight: 600;
  --typography-secondary-line-height: 90px;
  --typography-secondary-letter-spacing: 7.2px;
  --typography-secondary-word-spacing: 9.6px;
  
  --typography-text-font-family: var(--font-noto);
  --typography-text-font-size: 20px;
  --typography-text-font-weight: 400;
  --typography-text-line-height: 30px;
  --typography-text-letter-spacing: 2px;
  --typography-text-word-spacing: 3px;
  
  --typography-accent-font-family: var(--font-noto);
  --typography-accent-font-size: 24px;
  --typography-accent-font-weight: 500;
  --typography-accent-line-height: 36px;
  --typography-accent-letter-spacing: 2.88px;
  --typography-accent-word-spacing: 3.84px;
  
  --typography-f3836f7-font-family: var(--font-noto);
  --typography-f3836f7-font-size: 32px;
  --typography-f3836f7-font-weight: 400;
  --typography-f3836f7-line-height: 48px;
  --typography-f3836f7-letter-spacing: 3.84px;
  --typography-f3836f7-word-spacing: 5.12px;
  
  --typography-9e7beb6-font-family: var(--font-noto);
  --typography-9e7beb6-font-size: 32px;
  --typography-9e7beb6-font-weight: 400;
  --typography-9e7beb6-text-transform: uppercase;
  --typography-9e7beb6-line-height: 48px;
  --typography-9e7beb6-letter-spacing: 3.84px;
  --typography-9e7beb6-word-spacing: 5.12px;
  
  --typography-e49b5fc-font-family: var(--font-noto);
  --typography-e49b5fc-font-size: 18px;
  --typography-e49b5fc-font-weight: 400;
  --typography-e49b5fc-line-height: 27px;
  --typography-e49b5fc-letter-spacing: 1.4px;
  --typography-e49b5fc-word-spacing: 2.2px;
  
  --typography-eb74b8f-font-family: var(--font-noto);
  --typography-eb74b8f-font-size: 18px;
  --typography-eb74b8f-font-weight: 700;
  --typography-eb74b8f-line-height: 27px;
  --typography-eb74b8f-letter-spacing: 2.16px;
  --typography-eb74b8f-word-spacing: 2.88px;
  
  --typography-325bb28-font-family: var(--font-noto);
  --typography-325bb28-font-size: 18px;
  --typography-325bb28-font-weight: 400;
  --typography-325bb28-text-decoration: underline;
  --typography-325bb28-line-height: 27px;
  --typography-325bb28-letter-spacing: 2.16px;
  --typography-325bb28-word-spacing: 2.8px;

  /* ===== SPACING ===== */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* ===== BREAKPOINTS ===== */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
}

/* ============================================
   GLOBALE ÜBERSCHRIFTEN H1 - H6
   ============================================ */

h1 {
  font-family: var(--font-michroma);
  font-size: var(--typography-primary-font-size);
  font-weight: 400;
  line-height: var(--typography-primary-line-height);
  letter-spacing: var(--typography-primary-letter-spacing);
  word-spacing: var(--typography-primary-word-spacing);
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

h2 {
  font-family: var(--font-michroma);
  font-size: var(--typography-secondary-font-size);
  font-weight: 400;
  line-height: var(--typography-secondary-line-height);
  letter-spacing: var(--typography-secondary-letter-spacing);
  word-spacing: var(--typography-secondary-word-spacing);
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-family: var(--font-michroma);
  font-size: var(--typography-f3836f7-font-size);
  font-weight: 400;
  line-height: var(--typography-f3836f7-line-height);
  letter-spacing: var(--typography-f3836f7-letter-spacing);
  word-spacing: var(--typography-f3836f7-word-spacing);
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-family: var(--font-noto);
  font-size: var(--typography-eb74b8f-font-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--typography-eb74b8f-line-height);
  letter-spacing: var(--typography-eb74b8f-letter-spacing);
  word-spacing: var(--typography-eb74b8f-word-spacing);
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

h5 {
  font-family: var(--font-noto);
  font-size: var(--typography-e49b5fc-font-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--typography-e49b5fc-line-height);
  letter-spacing: var(--typography-e49b5fc-letter-spacing);
  word-spacing: var(--typography-e49b5fc-word-spacing);
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

h6 {
  font-family: var(--font-noto);
  font-size: var(--typography-e49b5fc-font-size);
  font-weight: var(--font-weight-regular);
  line-height: var(--typography-e49b5fc-line-height);
  letter-spacing: var(--typography-e49b5fc-letter-spacing);
  word-spacing: var(--typography-e49b5fc-word-spacing);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
}

/* ===== SPEZIALFALL: H3 in der Text-Section (CASE STUDIES) ===== */
.text-section-content h3 {
  font-family: var(--font-noto);
  font-size: var(--typography-eb74b8f-font-size);
  font-weight: var(--font-weight-bold);
  line-height: var(--typography-eb74b8f-line-height);
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

/* ===== SPEZIALFALL: Weiße Überschriften auf dunklem Grund ===== */
.text-section-dark h1,
.text-section-dark h2,
.text-section-dark h3,
.text-section-dark h4,
.text-section-dark h5,
.text-section-dark h6 {
  color: var(--color-white);
}

.text-section-primary h1,
.text-section-primary h2,
.text-section-primary h3,
.text-section-primary h4,
.text-section-primary h5,
.text-section-primary h6 {
  color: var(--color-white);
}

p {
  font-family: var(--typography-text-font-family);
  font-size: var(--typography-text-font-size);
  font-weight: var(--typography-text-font-weight);
  line-height: var(--typography-text-line-height);
  letter-spacing: var(--typography-text-letter-spacing);
  word-spacing: var(--typography-text-word-spacing);
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

footer a {
  color: var(--color-white);
}
footer a:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}


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

ul {
  list-style: none;
}

/* ============================================
   UTILITY - No Scroll
   ============================================ */
.no-scroll {
  overflow: hidden;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

