/* ============================================================
   IhrEventbetreuer — style.css
   Design: Modern & Clean | Farbe: Burgunderrot #8B2635
   Dreamweaver-kompatibel | Responsive (Mobile-First)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variablen --- */
:root {
  --primary:       #8B2635;
  --primary-dark:  #6B1A25;
  --primary-light: #b8404f;
  --dark:          #1A1A1A;
  --text:          #333333;
  --text-light:    #666666;
  --bg:            #FFFFFF;
  --bg-light:      #F8F7F5;
  --bg-dark:       #1A1A1A;
  --border:        #E5E0DC;
  --shadow:        rgba(0, 0, 0, 0.08);
  --shadow-md:     rgba(0, 0, 0, 0.15);
  --radius:        4px;
  --radius-lg:     8px;
  --transition:    0.3s ease;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', Arial, sans-serif;
  --max-width:     1140px;
  --nav-height:    70px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--light {
  background: var(--bg-light);
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

/* Eyebrow auf dunklem Hintergrund: helle Farbe für Kontrast */
.section--dark .section__eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 15px;
}

.section--dark .section__title {
  color: #fff;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section--dark .section__subtitle {
  color: #ccc;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 38, 53, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn--white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px var(--shadow-md);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo img {
  height: 42px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.2;
}

.nav__logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 10px;
  font-size: 0.8rem;
  padding: 9px 22px;
}

/* Kontakt-Button in Nav: weiße Schrift sicherstellen */
.nav__link.btn--primary,
.nav__link.btn--primary:hover,
.nav__link.btn--primary:visited {
  color: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- HERO --- */
.hero {
  min-height: 72vh;
  background: linear-gradient(150deg, #2e2d35 0%, #3a2030 55%, #4a2535 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../bilder/galerie/collage_jobs_01.jpg') center/cover no-repeat;
  opacity: 0.08;
}

/* Helles Akzentlicht rechts oben */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,64,79,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--primary-light);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

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

/* --- LEISTUNGEN CARDS --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

/* 3 Spalten erzwingen (für Leistungen-Seite und andere) */
.cards--three {
  grid-template-columns: repeat(3, 1fr);
}

/* 4 Spalten für 4er-Karten-Reihen */
.cards--four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px var(--shadow-md);
  transform: translateY(-4px);
}

.card:hover::before {
  transform: scaleY(1);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(139, 38, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- ABOUT / PROFIL --- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px var(--shadow-md);
}

.about__image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__content .section__title {
  text-align: left;
}

.about__content .divider {
  margin: 16px 0;
}

.about__text {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about__list {
  margin: 20px 0 30px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.about__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- GALERIE --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ccc;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
  display: block;
}

.gallery__item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.gallery__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 38, 53, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__item:hover .gallery__item__overlay {
  background: rgba(139, 38, 53, 0.1);
}

.gallery__item__overlay svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  opacity: 0;
  transition: opacity var(--transition);
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery__item:hover .gallery__item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: var(--primary-dark);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 20px;
}

.lightbox__prev { left: -60px; }
.lightbox__next { right: -60px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--primary);
}

/* --- KONTAKTFORMULAR --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  /* Wrapper für Kontaktdaten-Spalte */
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 38, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--text);
}

/* Form */
.form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-label .req {
  color: var(--primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

/* Honeypot - versteckt */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* --- PAGE HEADER (Unterseiten) --- */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #2d0a10 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(139,38,53,0.3) 0%, transparent 60%);
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: 12px;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1.2;
}

/* --- IMPRESSUM / DATENSCHUTZ --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0 8px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--primary);
}

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 50px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo img {
  height: 38px;
  margin-bottom: 14px;
  opacity: 0.8;
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--primary-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

.footer__kleingewerbe {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 9998;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.6;
}

.cookie-banner__text strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.cookie-banner__text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.cookie-btn--accept {
  background: var(--primary);
  color: #fff;
}

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

.cookie-btn--necessary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--necessary:hover {
  background: rgba(255,255,255,0.2);
}

.cookie-btn--settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn--settings:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* --- SCROLL TOP --- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
  box-shadow: 0 4px 15px rgba(139,38,53,0.4);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image {
    max-width: 350px;
    margin: 0 auto;
  }
  .about__content .section__title,
  .about__content .divider {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .lightbox__prev { left: -48px; }
  .lightbox__next { right: -48px; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }
  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px var(--shadow-md);
    gap: 4px;
  }
  .nav__menu.open {
    display: flex;
  }
  .nav__link {
    padding: 12px 16px;
    width: 100%;
    text-align: left;
  }
  .nav__link::after {
    display: none;
  }
  .nav__cta {
    margin: 10px 16px 0;
    text-align: center;
    display: block;
  }
  .nav__toggle {
    display: flex;
  }
  .section {
    padding: 60px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form {
    padding: 24px 20px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .lightbox__prev,
  .lightbox__next {
    display: none;
  }
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .cards--three {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* --- SOCIAL ICONS --- */
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- FOOTER LOGO --- */
.footer__logo-img {
  height: 44px;
  width: auto;
  opacity: 0.55;
  margin-bottom: 14px;
  filter: brightness(2);
}

/* Nav Logo (schwarz auf weißem Hintergrund) */
.nav__logo-img {
  height: 44px;
  width: auto;
}

/* --- RESPONSIVE: Cards 3-Spalten --- */
@media (max-width: 1024px) {
  .cards--three {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cards--three {
    grid-template-columns: 1fr;
  }
  .cards--four {
    grid-template-columns: 1fr;
  }
}
