:root {
  --navy: #1B2A4A;
  --navy-light: #2A3D66;
  --cream: #F5E6C8;
  --cream-light: #FAF3E8;
  --terracotta: #C85A3A;
  --terracotta-dark: #A84828;
  --gold: #C8982E;
  --gold-light: #DAB44E;
  --text-dark: #1B2A4A;
  --text-light: #F5E6C8;
  --shadow: rgba(27, 42, 74, 0.15);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────── */

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Navigation ─────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px var(--shadow);
  padding: 0.6rem 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

.nav-brand img {
  height: 36px;
  width: auto;
}

.nav-brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 152, 46, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 90, 58, 0.06) 0%, transparent 50%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  padding: 6rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-poster {
  flex: 0 0 auto;
  max-width: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(-1.5deg);
  transition: transform 0.5s;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-text {
  color: var(--cream);
}

.hero-subtitle {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 152, 46, 0.3);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.hero-date-icon {
  font-size: 1.5rem;
}

.hero-date-text {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-date-text strong {
  display: block;
  font-size: 1.3rem;
  color: var(--gold);
}

.hero-cta {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(200, 90, 58, 0.3);
}

.hero-cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* ── Countdown ───────────────────────────── */

.countdown-section {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.countdown-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 90px;
}

.countdown-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.countdown-unit {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}

/* ── Registration Banner ─────────────────── */

.registration-banner {
  background: var(--cream);
  padding: 3rem 2rem;
}

.registration-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border-left: 4px solid var(--terracotta);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.registration-icon {
  flex: 0 0 auto;
  font-size: 2.5rem;
}

.registration-content h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.registration-content p {
  font-size: 1rem;
  color: #5a6577;
  line-height: 1.6;
}

.registration-content p strong {
  color: var(--terracotta);
}

@media (max-width: 600px) {
  .registration-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ── Section base ────────────────────────── */

.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-overline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

/* ── About / Was ist das MFM ─────────────── */

.about {
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.about-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.2);
}

.about-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.about-card p {
  font-size: 0.95rem;
  color: #5a6577;
  line-height: 1.6;
}

.about-text {
  text-align: center;
  font-size: 1.15rem;
  color: #3a4a62;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* ── Event Details ───────────────────────── */

.event {
  background: white;
}

.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.event-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.event-detail-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.event-detail h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.event-detail p {
  font-size: 0.95rem;
  color: #5a6577;
}

/* ── Lions Club ──────────────────────────── */

.lions {
  background: var(--navy);
  color: var(--cream);
}

.lions .section-overline {
  color: var(--gold);
}

.lions .section-title {
  color: var(--cream);
}

.lions-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.lions-logo {
  flex: 0 0 auto;
  width: 120px;
  height: auto;
}

.lions-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 230, 200, 0.85);
}

.lions-text strong {
  color: var(--gold);
}

/* ── Footer ──────────────────────────────── */

.footer {
  background: #111b2e;
  color: rgba(245, 230, 200, 0.6);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
}

.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-club {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: rgba(245, 230, 200, 0.5);
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 230, 200, 0.1);
}

.footer-links a {
  color: rgba(245, 230, 200, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding-top: 5rem;
  }

  .hero-poster {
    max-width: 320px;
    transform: rotate(0);
  }

  .hero-date {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .lions-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 1rem 2rem 2rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-poster {
    max-width: 260px;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-number {
    font-size: 2.2rem;
  }

  .countdown-item {
    min-width: 70px;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ── Legal pages ─────────────────────────── */

.legal-page {
  padding-top: 7rem;
  background: var(--cream-light);
}

.legal-page h1 {
  text-align: center;
}

.legal-page h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(27, 42, 74, 0.1);
}

.legal-page h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  margin-bottom: 0.75rem;
  color: #3a4a62;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: #3a4a62;
}

.legal-page ul li {
  margin-bottom: 0.4rem;
}

.legal-page a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-page a:hover {
  color: var(--terracotta-dark);
}

.legal-table {
  margin: 0.75rem 0;
  border-collapse: collapse;
}

.legal-table td {
  padding: 0.25rem 1rem 0.25rem 0;
  color: #3a4a62;
}

.legal-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

/* ── Animations ──────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
