/* ============================================
   BarMUN 2026 – Gemeinsames Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --navy:       #0D1B2A;
  --blue:       #0052CC;
  --sky:        #0A84FF;
  --cyan:       #00C8E8;
  --white:      #FFFFFF;
  --offwhite:   #F4F8FF;
  --gray:       #374151;
  --light-gray: #E5E7EB;
  --silver:     #9CA3AF;
  --red-dark:   #991B1B;
  --green-dark: #065F46;
  --font:       'Inter', Arial, sans-serif;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
  --section-pad: 80px 0;
  --container:  1100px;
}

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

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

body {
  font-family: var(--font);
  color: var(--gray);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--navy); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; color: var(--blue); }
h4 { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
p  { font-size: 1rem; line-height: 1.7; color: var(--gray); }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section --- */
.section { padding: var(--section-pad); }
.section--navy  { background: var(--navy); }
.section--blue  { background: var(--blue); }
.section--offwhite { background: var(--offwhite); }
.section--white { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 600px; margin: 0 auto; }
.section-header.white h2,
.section-header.white p { color: var(--white); }
.section-header.white .section-label { color: var(--cyan); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--sky); border-color: var(--sky); color: var(--white); }

.btn-secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue); color: var(--white); }

.btn-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--navy); }

.btn-sm { padding: 8px 18px; font-size: 0.9rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* --- Grid Helpers --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Tags --- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--offwhite);
  color: var(--blue);
  border: 1px solid var(--light-gray);
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar__logo span { font-size: 1.4rem; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.navbar__links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar__links a.active { border-bottom: 2px solid var(--sky); }

.navbar__cta { margin-left: 0.5rem; flex-shrink: 0; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 999;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a.active { color: var(--cyan); }
.navbar__mobile .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0A2040 100%);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(0,82,204,0.18) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(0,200,232,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 50% 100%, rgba(10,132,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
/* Animated particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,200,232,0.15);
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; width: 100%; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hero__pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0A2040 100%);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(0,82,204,0.2) 0%, transparent 60%),
                    radial-gradient(circle at 70% 50%, rgba(0,200,232,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.82); font-size: 1.1rem; }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip { background: var(--blue); padding: 48px 24px; }
.stats-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: var(--container); margin: 0 auto; text-align: center; }
.stat-item__number { font-size: 3rem; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.stat-item__label  { color: var(--white); font-size: 0.95rem; font-weight: 500; }

/* ============================================
   TEASER CARDS
   ============================================ */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.teaser-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.teaser-card h3 { margin-bottom: 0.5rem; }

/* ============================================
   COMMITTEE PREVIEW (navy bg)
   ============================================ */
.committee-preview { text-align: center; }
.committee-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.committee-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.committee-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.committee-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.committee-card h3 { color: var(--cyan); margin-bottom: 0.5rem; }
.committee-card .topic { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 0.75rem; }
.committee-card .count { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 1.25rem; }

/* ============================================
   TIMELINE (horizontal)
   ============================================ */
.timeline-h { display: flex; align-items: flex-start; gap: 0; margin-top: 2.5rem; }
.timeline-step {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.timeline-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--blue);
  z-index: 1;
}
.timeline-step__num {
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.timeline-step h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.timeline-step p  { font-size: 0.88rem; color: var(--silver); }

/* ============================================
   PARTNERS
   ============================================ */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.partner-card {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.partner-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.partner-logo {
  height: 64px;
  background: var(--offwhite);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.partner-card p { font-size: 0.85rem; color: var(--silver); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-section .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   COMMITTEE DETAIL (komitees.html)
   ============================================ */
.committee-section { padding: 60px 0; border-bottom: 1px solid var(--light-gray); }
.committee-section:last-of-type { border-bottom: none; }
.committee-accent-bar { width: 48px; height: 4px; border-radius: 2px; margin-bottom: 1.25rem; }
.committee-emoji { font-size: 3rem; margin-bottom: 1rem; }
.committee-header { display: flex; align-items: flex-start; gap: 2rem; margin-bottom: 1.5rem; }
.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.5rem; margin-top: 1rem; }
.country-chip {
  background: var(--offwhite);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.country-chip.p5 { border-color: var(--red-dark); color: var(--red-dark); background: #FEF2F2; }
.p5-badge { font-size: 0.7rem; font-weight: 700; color: var(--white); background: var(--red-dark); padding: 2px 6px; border-radius: 4px; }
.warning-box {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: #92400E;
  margin: 1rem 0;
  display: flex; gap: 8px; align-items: flex-start;
}

/* Comparison table */
.compare-table { overflow-x: auto; margin-top: 2rem; }
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--light-gray); font-size: 0.95rem; }
.compare-table th { background: var(--navy); color: var(--white); font-weight: 700; }
.compare-table tr:hover td { background: var(--offwhite); }

/* ============================================
   ACCORDION
   ============================================ */
.accordion { border: 1px solid var(--light-gray); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--light-gray); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--offwhite); }
.accordion-trigger.active { background: var(--offwhite); color: var(--blue); }
.accordion-icon { font-size: 1.25rem; color: var(--blue); transition: transform 0.3s; flex-shrink: 0; }
.accordion-trigger.active .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-content.open { max-height: 400px; }
.accordion-content-inner { padding: 0 1.5rem 1.25rem; color: var(--gray); font-size: 0.97rem; line-height: 1.7; }

/* ============================================
   TABS (anmeldung.html)
   ============================================ */
.tabs { display: flex; gap: 0; border: 2px solid var(--blue); border-radius: var(--radius); overflow: hidden; max-width: 400px; }
.tab-btn {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: var(--white);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.tab-btn.active { background: var(--blue); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Steps */
.steps { display: flex; gap: 1.5rem; margin: 2rem 0; }
.step { text-align: center; flex: 1; }
.step__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--blue); color: var(--white);
  border-radius: 50%; font-weight: 800; font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.step h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.step p  { font-size: 0.85rem; color: var(--silver); }

/* Info chips (3er) */
.info-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.info-chip { background: var(--offwhite); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.info-chip__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--silver); margin-bottom: 6px; }
.info-chip__value { font-size: 1.05rem; font-weight: 700; color: var(--navy); }

/* ============================================
   TEAM PAGE
   ============================================ */
.team-card { text-align: center; }
.team-card__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--light-gray);
}
.team-card__avatar.large { width: 160px; height: 160px; font-size: 3.5rem; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--silver); font-size: 0.9rem; }
.team-card .committee { color: var(--blue); font-size: 0.88rem; font-weight: 600; }

.orga-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.orga-card { background: var(--offwhite); border-radius: var(--radius-lg); padding: 1.5rem; }
.orga-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.orga-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.orga-card p  { font-size: 0.9rem; color: var(--silver); }

/* ============================================
   PRESS PAGE
   ============================================ */
.press-info { background: var(--offwhite); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.5rem 2rem; margin: 2rem 0; }
.accred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.accred-box { border-radius: var(--radius-lg); padding: 1.5rem; }
.accred-box.allowed { background: #D1FAE5; border: 1px solid #6EE7B7; }
.accred-box.forbidden { background: #FEE2E2; border: 1px solid #FCA5A5; }
.accred-box h4 { margin-bottom: 0.75rem; font-size: 1rem; }
.accred-box.allowed h4 { color: #065F46; }
.accred-box.forbidden h4 { color: #991B1B; }
.accred-box li { font-size: 0.9rem; padding: 4px 0; color: var(--gray); }
.accred-box li::before { margin-right: 6px; }
.accred-box.allowed li::before { content: '✓'; color: #10B981; }
.accred-box.forbidden li::before { content: '✗'; color: #EF4444; }

.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 1.5rem 0; }
.download-card {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.download-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.download-icon { font-size: 2rem; flex-shrink: 0; }
.download-card h4 { font-size: 0.95rem; margin-bottom: 2px; }
.download-card p  { font-size: 0.82rem; color: var(--silver); }

/* ============================================
   IMPRINT
   ============================================ */
.legal-section { max-width: 780px; }
.legal-section h2 { margin-bottom: 1.25rem; }
.legal-section h3 { color: var(--gray); font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
.legal-section p, .legal-section li { font-size: 0.95rem; line-height: 1.8; }
.legal-section ul { padding-left: 1.25rem; list-style: disc; }
.legal-divider { height: 2px; background: var(--light-gray); margin: 3rem 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); padding: 64px 24px 0; }
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.footer__logo span { font-size: 1.3rem; }
.footer__desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--cyan); }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a, .footer__contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer__contact a:hover { color: var(--cyan); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer__bottom-links { display: flex; gap: 1.25rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer__bottom-links a:hover { color: var(--white); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid var(--blue);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-banner p { color: rgba(255,255,255,0.85); font-size: 0.9rem; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--cyan); text-decoration: underline; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,82,204,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 998;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--sky); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.fact-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 84px;
}
.fact-box h4 { color: var(--cyan); margin-bottom: 1.25rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.fact-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.fact-row:last-child { border-bottom: none; }
.fact-row__label { color: rgba(255,255,255,0.55); }
.fact-row__value { color: var(--white); font-weight: 600; text-align: right; }
.venue-placeholder {
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, #0A2040 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mission-card { text-align: center; }
.mission-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ============================================
   LÄNDERINFOS SECTION (anmeldung.html)
   ============================================ */
.laender-section {
  background: var(--offwhite);
  padding: var(--section-pad);
}

.laender-download-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0A2040 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.laender-download-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(0,200,232,0.12) 0%, transparent 60%),
                    radial-gradient(circle at 10% 80%, rgba(0,82,204,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.laender-download-hero__icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  position: relative;
}
.laender-download-hero__text { flex: 1; position: relative; }
.laender-download-hero__text h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.laender-download-hero__text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.laender-download-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,200,232,0.15);
  border: 1px solid rgba(0,200,232,0.3);
  color: var(--cyan);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.btn-download {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--sky) 100%);
  color: var(--navy) !important;
  border-color: transparent;
  font-weight: 800;
  position: relative;
}
.btn-download:hover {
  background: linear-gradient(135deg, #00e8ff 0%, var(--cyan) 100%);
  color: var(--navy) !important;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Country search */
.laender-search-wrap {
  position: relative;
  max-width: 420px;
  margin-bottom: 1.75rem;
}
.laender-search-wrap input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.laender-search-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,82,204,0.12);
}
.laender-search-wrap input::placeholder { color: var(--silver); }
.laender-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--silver);
  pointer-events: none;
}

/* Country grid */
.laender-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.laender-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
  cursor: pointer;
}
.laender-item:hover {
  border-color: var(--blue);
  background: var(--offwhite);
  box-shadow: 0 4px 16px rgba(0,82,204,0.1);
  transform: translateY(-2px);
  color: var(--blue);
}
.laender-item__flag {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.laender-item__name { flex: 1; }
.laender-item__dl {
  font-size: 0.8rem;
  color: var(--silver);
  flex-shrink: 0;
  transition: color var(--transition);
}
.laender-item:hover .laender-item__dl { color: var(--blue); }
.laender-item.hidden { display: none; }

.laender-count {
  font-size: 0.85rem;
  color: var(--silver);
  margin-bottom: 1rem;
}
.laender-count span { font-weight: 700; color: var(--navy); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4, .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .timeline-h { flex-wrap: wrap; }
  .timeline-step { min-width: 45%; }
  .timeline-step::after { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { min-height: auto; padding: 72px 20px 60px; }
  .hero__btns { flex-direction: column; align-items: center; }

  .grid-2, .grid-3, .grid-4,
  .teaser-grid, .committee-cards,
  .steps, .info-chips,
  .mission-grid, .orga-grid { grid-template-columns: 1fr; }

  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .accred-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .fact-box { position: static; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .committee-header { flex-direction: column; gap: 1rem; }
  .compare-table table { min-width: 480px; }

  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }

  .timeline-h { flex-direction: column; gap: 1rem; }
  .timeline-step { min-width: 100%; }
}

@media (max-width: 480px) {
  .hero__pills { gap: 0.5rem; }
  .hero__pill { font-size: 0.82rem; padding: 6px 12px; }
  .partner-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
}
