/* ---------- Base ---------- */
* { box-sizing: border-box; }

html{
  /* skaliert angenehm zwischen Full HD und 4K */
  font-size: clamp(16px, 0.4vw + 10px, 20px);
}

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ececec;
  color: #222;
  padding: 0;
  overflow-x: hidden; /* wichtig für 100vw-Elemente */
}

/* ---------- Page Container ---------- */
.page{
  width: min(2200px, 96vw);
  margin: clamp(12px, 1.2vw, 28px) auto;
  background: #f6f6f6;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  border-radius: 6px;
  overflow: visible;
}

@media (min-width: 2560px){
  .page{ width: min(2400px, 94vw); }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  height: clamp(220px, 14vw, 360px);
  background: #ffffff center/cover no-repeat; /* ggf. url(...) ergänzen */
  overflow: hidden;
}

.hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.65));
}

.hero__inner{
  position: relative;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px 18px;
}

.hero__title{
  margin: 0;
  color: #c32328;
  /* 50px ≈ 3.125rem bei 16px Base */
  font-size: clamp(2.2rem, 2vw + 1rem, 3.125rem);
  letter-spacing: .10em;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}

.hero__subtitle{
  margin: 8px 0 0;
  color: #ff0000;
  font-size: clamp(0.75rem, 0.7vw, 0.95rem);
  letter-spacing: .03em;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

/* ---------- Nav ---------- */
.nav{
  background: #ddd;
  border-bottom: 1px solid rgba(0,0,0,.10);
  position: relative;
  z-index: 9999;
  overflow: visible;
}

.nav__inner{
  padding: 0.7rem 1.1rem;
  overflow: visible;
}

.nav__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: clamp(0.6rem, 1vw, 1.4rem);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;
}

.nav__item{ position: relative; }

.nav__link{
  font-size: clamp(0.75rem, 0.55vw, 0.9rem);
  color: #222;
  text-decoration: none;
  padding: 6px 6px;
}

.nav__link:visited{ color:#222; }

.nav__link:hover{
  text-decoration: none;
  opacity: .85;
}

.nav__caret{ font-size: 10px; opacity: .75; margin-left: 4px; }

/* Dropdown Trigger (nicht klickbar) */
.nav__trigger{
  cursor: default;
  user-select: none;
}

/* Hover-Brücke gegen "Hover ins Leere" */
.nav__item--dropdown::after{
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
  background: transparent;
}

/* Dropdown */
.dropdown{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);

  min-width: 10.5rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;

  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,.20);
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .12s ease, visibility .12s ease, transform .12s ease;
}

.nav__item--dropdown:hover > .dropdown, 
.nav__item--dropdown:focus-within > .dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown > li{ list-style: none; }

.dropdown__link{
  display: block;
  text-align: center;
  padding: 0.4rem 0.7rem;
  font-size: 12px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown__link:visited{ color:#222; }
.dropdown__link:hover{ background: rgba(0,0,0,.06); }

/* ---------- Content ---------- */
.main{ background: #efefef; overflow: visible; }

.content{
  background: #efefef;
  min-height: 520px;
  padding: clamp(1.4rem, 2.5vw, 3.2rem) clamp(1.1rem, 2vw, 2.8rem) clamp(2rem, 2.5vw, 3.6rem);
  overflow: visible;
}

@media (min-width: 2560px){
  .content{ padding: 3.2rem 3rem 4rem; }
}

.content__center{
  max-width: 980px;
  margin: 40px auto 0;
  text-align: center;
}

.content__logo{
  width: clamp(12rem, 12vw, 18rem);
  max-width: 70vw;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

/* ---------- Components: Two Column ---------- */
.two-col{
  display: grid;
  grid-template-columns: clamp(10rem, 12vw, 14rem) 1fr;
  gap: 2rem;
  align-items: start;
}

.two-col__media{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem;
}

.two-col__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col__text{ text-align: left; }
.two-col__text h3{ margin: 0 0 0.5rem; }
.two-col__text p{ margin: 0; }

/* ---------- Components: Timeline ---------- */
.timeline{
  max-width: 80rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.timeline__list{
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline__list::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(10rem, 18vw, 14rem);
  width: 2px;
  background: rgba(0,0,0,.25);
}

.timeline__item{
  display: grid;
  grid-template-columns: clamp(8rem, 14vw, 12rem) 2.5rem 1fr;
  column-gap: 1.25rem;
  align-items: start;
  padding: 1.2rem 0;
  position: relative;
}

.timeline__year{
  text-align: right;
  font-weight: 700;
}

.timeline__dot{
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: #c00000;
  border: 3px solid #f6f6f6;
  box-shadow: 0 0 0 2px rgba(0,0,0,.15);
  justify-self: center;
  margin-top: 0.15rem;
  z-index: 2;
}

.btn-download{
  display:inline-block;
  padding:.75rem 1rem;
  border:1px solid rgba(255,0,0,.2);
  border-left:6px solid #f00;
  border-radius:.5rem;
  text-decoration:none;
  color:#333;
}