/* ============================================================
   YES! YOUR EVENT SCOUT – MESSEHOSTESSEN.COM.DE
   RESPONSIVE.CSS – Mobile-First
   Breakpoints: 576px | 768px | 992px | 1200px
   ============================================================ */

/* ============================================================
   MOBILE BASE (< 576px)
   ============================================================ */

/* Navbar */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 999;
}

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

.nav-item > a,
.nav-links > a {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
}

.nav-dropdown {
  position: static;
  box-shadow: none;
  border: none;
  background: #fafafa;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
}

.nav-item:hover .nav-dropdown,
.nav-item.active .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  padding: 10px 30px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: block;
}

/* Hero */
.hero {
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-sub,
.hero-checks {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.btn-pink,
.btn-outline-white {
  text-align: center;
  width: 100%;
}

.hero-stats {
  justify-content: center;
  gap: 1.5rem;
}

/* Profile Grid */
.profile-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

/* SEO Grid */
.seo-grid {
  grid-template-columns: 1fr;
}

.seo-divider,
.seo-divider-light {
  display: none;
}

/* Footer */
.footer-bottom {
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

.footer-bottom a {
  margin-left: 8px;
}

/* Sections spacing */
section {
  padding: 50px 0;
}

/* Story Badge */
.story-badge {
  width: 100px;
  height: 100px;
}

.story-badge .badge-num {
  font-size: 1.5rem;
}

/* Timeline */
.timeline-item {
  flex-direction: column;
  gap: 0.5rem;
}

/* ============================================================
   SMALL (≥ 576px)
   ============================================================ */
@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .btn-pink,
  .btn-outline-white {
    width: auto;
  }

  .hero {
    text-align: left;
  }

  .hero-sub,
  .hero-checks {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  }
}

/* ============================================================
   MEDIUM (≥ 768px)
   ============================================================ */
@media (min-width: 768px) {
  section {
    padding: 70px 0;
  }

  .profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 1.25rem;
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .seo-divider,
  .seo-divider-light {
    display: none;
  }

  .story-badge {
    width: 140px;
    height: 140px;
  }

  .story-badge .badge-num {
    font-size: 2.2rem;
  }

  .timeline-item {
    flex-direction: row;
    gap: 2rem;
  }
}

/* ============================================================
   LARGE (≥ 992px) – Desktop ab hier
   ============================================================ */
@media (min-width: 992px) {
  /* Navbar: Desktop-Modus */
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .nav-item > a,
  .nav-links > a {
    padding: 8px 14px;
    border-bottom: none;
    width: auto;
  }

  .nav-dropdown {
    position: absolute;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px 0 8px;
    margin-top: 0;
  }

  .nav-toggle {
    display: none;
  }

  section {
    padding: 80px 0;
  }

  .seo-grid {
    grid-template-columns: 1fr auto 1fr;
  }

  .seo-divider,
  .seo-divider-light {
    display: block;
  }
}

/* ============================================================
   EXTRA LARGE (≥ 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  section {
    padding: 90px 0;
  }

  .profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar-custom,
  .nav-toggle,
  .hero-actions,
  .cta-banner,
  .footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  section {
    padding: 20pt 0;
  }
}

/* ============================================================
   ACCESSIBILITY – REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}