/* ═══════════════════════════════════════════════════════════
   campus-der-loewen.css – WerkUp Bericht: Campus der Löwen 2026
   Gleiche Design-Sprache wie index.css / ueber-uns.css
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --bg:         #f4f6f7;
  --bg-2:       #eaedf0;
  --bg-card:    #ffffff;
  --bg-dark:    #0d1b24;
  --bg-dark-2:  #0a1520;
  --blue:       #13232a;
  --accent:     #ca0013;
  --accent-h:   #e8001a;
  --accent-dim: rgba(202,0,19,0.08);
  --text:       #13232a;
  --text-2:     #2c4050;
  --text-light: #ffffff;
  --muted:      #5a6e78;
  --border:     rgba(19,35,42,0.09);
  --border-dark: rgba(255,255,255,0.08);
  --radius:     1.25rem;
  --radius-sm:  0.75rem;
  --font:       'Inter', sans-serif;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.09), 0 16px 40px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12), 0 32px 64px rgba(0,0,0,0.14);
  --t:          0.26s cubic-bezier(0.4,0,0.2,1);
  --t-slow:     0.48s cubic-bezier(0.16,1,0.3,1);
}

/* ── RESET ── */
html { overflow-y: scroll; scroll-behavior: smooth; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 700; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── SCROLL ANIMATIONS ── */
[data-scroll] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
[data-scroll].in-view { opacity: 1; transform: none; }

/* ── SECTION LABEL ── */
.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ── BUTTONS ── */
.btn-primary-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary-red:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(202,0,19,0.35);
}

.cdl-btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--t);
}
.cdl-btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}


/* ══════════════════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════════════════ */
.cdl-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #161a22 0%, #1f242f 55%, var(--accent-dim) 140%);
}

.cdl-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cdl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.62) 100%);
  z-index: 1;
}

.cdl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 9rem 2rem 4.5rem;
}

.cdl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(202,0,19,0.35);
  margin-bottom: 1.5rem;
}

.cdl-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.cdl-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════
   2. QUICK FACTS
══════════════════════════════════════════════════════════ */
.cdl-facts {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 1.5rem;
}

.cdl-facts-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cdl-fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1rem 3rem;
  text-align: center;
}

.cdl-fact-item strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cdl-fact-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cdl-fact-sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════
   3. DER BERICHT
══════════════════════════════════════════════════════════ */
.cdl-report {
  padding: 7rem 0;
  background: var(--bg);
}

.cdl-report-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.cdl-report-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cdl-report-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.cdl-report-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 4rem;
}

.cdl-report-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.cdl-report-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.cdl-report-text p:last-child { margin-bottom: 0; }

.cdl-report-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #c8cdd0 0%, #e2e6e8 100%);
  box-shadow: var(--shadow-md);
}

.cdl-report-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cdl-report-img-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.18);
  font-size: 2.4rem;
}
.cdl-report-img--empty .cdl-report-img-placeholder { display: flex; }


.cdl-quote {
  max-width: 760px;
  margin: 0 auto 4rem;
  padding: 1.75rem 2rem;
  background: var(--bg-dark);
  border-radius: 16px;
  position: relative;
}

.cdl-report-closing {
  max-width: 700px;
  margin: 0 auto;
}

.cdl-report-closing p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}

.cdl-quote .fa-quote-left {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  display: block;
}

.cdl-quote p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.cdl-quote cite {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
}


/* ══════════════════════════════════════════════════════════
   4. GALERIE
══════════════════════════════════════════════════════════ */
.cdl-gallery {
  padding: 7rem 0;
  background: var(--bg-2);
}

.cdl-gallery-head {
  text-align: center;
  margin-bottom: 3rem;
}

.cdl-gallery-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cdl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cdl-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, #c8cdd0 0%, #e2e6e8 100%);
  box-shadow: var(--shadow-sm);
}

.cdl-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cdl-gallery-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.18);
  font-size: 2rem;
}
.cdl-gallery-item--empty .cdl-gallery-placeholder { display: flex; }


/* ══════════════════════════════════════════════════════════
   6. CTA
══════════════════════════════════════════════════════════ */
.cdl-cta {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.cdl-cta-inner {
  text-align: center;
  max-width: 600px;
}

.cdl-cta-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cdl-cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cdl-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cdl-cta .cdl-btn-ghost {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}
.cdl-cta .cdl-btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .cdl-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cdl-hero-content { padding: 7.5rem 1.5rem 3.5rem; }
  .cdl-fact-item { padding: 1rem 1.5rem; }
  .cdl-gallery-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .cdl-report-row,
  .cdl-report-row--reverse { grid-template-columns: 1fr; gap: 2rem; max-width: 480px; }
}

@media (max-width: 480px) {
  .cdl-facts-inner { gap: 0.5rem; }
  .cdl-fact-item { padding: 0.75rem 1rem; }
  .cdl-fact-sep { display: none; }
}
