
/* CSS Document */

/* ============================================
   BASE & RESET (aus base.css)
   ============================================ */
:root {
  --color-primary: #960082;
  --color-accent: #C066B4;
  --color-white: #FFFFFF;
  --color-light: #F0F0F0;
  --color-gray: #8F8F8F;
  --color-dark: #444444;
  --color-black: #000000;
  --color-border-gray: #d0d0d0;
  --color-text: var(--color-dark);
  --color-secondary: var(--color-dark);
  --color-bg: #F9F9F9;
  --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-sm: 16px;
  --border-radius-md: 20px;
  --border-radius-lg: 40px;

  --container-max: 1200px;
  --container-padding: var(--spacing-md);

  --grid-column-width: 100px;
  --grid-gap-width: 25px;

  --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-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  --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;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

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);
}
.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);
}
.text-section-dark h1,
.text-section-dark h2,
.text-section-dark h3,
.text-section-dark h4,
.text-section-dark h5,
.text-section-dark h6,
.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;
}
.no-scroll {
  overflow: hidden;
}
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 4px;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   UTILITIES (aus utilities.css)
   ============================================ */
.hidden { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
.text-center { text-align: center !important; }
.text-start { text-align: start !important; }
.text-end { text-align: end !important; }
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-white { color: var(--color-white) !important; }
.text-black { color: var(--color-black) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-light { color: var(--color-light) !important; }
.text-default { color: var(--color-text) !important; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-xxl); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-xxl); }
.mx-auto { margin-left: auto; margin-right: auto; }
.spacer { height: var(--spacing-xxl); }
.spacer-sm { height: var(--spacing-lg); }
.spacer-md { height: var(--spacing-xl); }
.spacer-lg { height: var(--spacing-xxl); }
.text-xs { font-size: 0.75rem !important; }

/* ============================================
   BUTTONS (aus buttons.css)
   ============================================ */
.btn, button, input[type="button"], input[type="submit"], a[class*="btn"] {
  display: inline-block;
  font-family: var(--typography-eb74b8f-font-family);
  font-size: var(--typography-eb74b8f-font-size);
  font-weight: var(--typography-eb74b8f-font-weight);
  line-height: var(--typography-eb74b8f-line-height);
  letter-spacing: var(--typography-eb74b8f-letter-spacing);
  word-spacing: var(--typography-eb74b8f-word-spacing);
  border-radius: var(--border-radius-lg);
  padding: 16px 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  border: none;
}
.btn, button, input[type="button"], input[type="submit"] {
  color: var(--color-white);
  background-color: var(--color-primary);
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.3);
}
.btn:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  color: var(--color-light);
  background-color: var(--color-accent);
  box-shadow: none;
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white) !important;
  padding: 14px 50px;
  box-shadow: none;
}
.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}
.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
}
.btn-white:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-sm { padding: 10px 30px; font-size: 14px; }
.btn-lg { padding: 20px 60px; font-size: 22px; }
.btn-block { display: block; width: 100%; }
.btn:disabled, button:disabled, input[type="button"]:disabled, input[type="submit"]:disabled, .form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--color-gray);
  box-shadow: none;
  pointer-events: none;
}

/* ============================================
   STYLES (aus styles.css) – Container, Section
   ============================================ */
.container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.section {
  padding: var(--spacing-xxl) 0;
}
.section-title {
  font-family: var(--typography-9e7beb6-font-family);
  font-size: var(--typography-9e7beb6-font-size);
  font-weight: var(--typography-9e7beb6-font-weight);
  text-transform: var(--typography-9e7beb6-text-transform);
  line-height: var(--typography-9e7beb6-line-height);
  letter-spacing: var(--typography-9e7beb6-letter-spacing);
  word-spacing: var(--typography-9e7beb6-word-spacing);
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}
.section-sub {
  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-secondary);
  max-width: 700px;
  margin-bottom: var(--spacing-xl);
}

/* ============================================
   BUTTON - Deaktiviert
   ============================================ */
.btn:disabled,
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--color-gray);
    box-shadow: none;
    pointer-events: none;
}

/* ============================================
   TEXT SECTION - Max-Breite
   ============================================ */
.text-section-max-width .text-section-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Dezenter Cookie-Hinweis unten links */
.cookie-overlay {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99999;
  background: transparent;
  padding: 0;
  animation: fadeIn 0.35s ease-out;
}

/* Box – breiter & flacher */
.cookie-box {
  background: rgba(255, 255, 255, 0.8);
  color: #1a1a1a;
  max-width: 800px;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

/* Text */
.cookie-text {
  margin:0.9rem;
}

/* Button – jetzt mit var(--color-primary) */
.cookie-btn {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
  margin-top: 0.4rem;
}

.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--color-primary-hover, #5438d8);
  outline: none;
}

/* Fade-In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   Honeypot-Feld ist nur im Kontaktformular
   ============================================ */
   

/* --- Honeypot (Spamschutz) --- */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* --- Submit-Button Zustände --- */
.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-enabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}