/* =======================================================
   Elegant Classic Theme for Zenith Arena Dortmund
   Responsive, Flexbox-Only, Serif/Muted Modern Classic
   ======================================================= */

/* ------------- CSS RESET & NORMALIZATION -------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #2C2C2C;
  background: #F5F7FA;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1B396A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E67E22;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* ------------- TYPOGRAPHY SCALE & HIERARCHY ------------ */
h1, .h1 {
  font-family: 'Oswald', 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1B396A;
  letter-spacing: .02em;
  margin-bottom: 24px;
  line-height: 1.14;
}
h2, .h2 {
  font-family: 'Oswald', 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1B396A;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Oswald', 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1B396A;
  margin-bottom: 12px;
  line-height: 1.24;
}
h4, .h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1B396A;
  margin-bottom: 10px;
  line-height: 1.2;
}
.subheadline {
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #6E7D8A;
  margin-bottom: 30px;
}
p, li, td, th {
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1.0625rem;
  color: #393939;
}
blockquote {
  font-family: 'Georgia', Times, serif;
  font-style: italic;
  color: #1B396A;
  font-size: 1.18rem;
  border-left: 4px solid #E67E22;
  padding-left: 18px;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: #1B396A;
}

/* ------------- LAYOUT CONTAINERS & SECTIONS ------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ------------- HEADER & NAVIGATION --------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(27,57,106,0.08);
  border-bottom: 1px solid #E2E6EC;
}
header .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Oswald', 'Georgia', serif;
  font-size: 1.06rem;
  font-weight: 500;
  color: #1B396A;
  letter-spacing: .01em;
  padding: 8px 6px 7px 6px;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F5F7FA;
  color: #E67E22;
}
.cta-button {
  display: inline-block;
  font-family: 'Oswald', 'Georgia', serif;
  font-size: 1.125rem;
  font-weight: 600;
  background: #E67E22;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(230,126,34,0.12);
  border: none;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background 0.18s, box-shadow 0.22s, color 0.15s;
  margin-left: 18px;
}
.cta-button:hover, .cta-button:focus {
  background: #cf6a06;
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,126,34,0.2);
  outline: none;
}

/* Burger menu toggle */
.mobile-menu-toggle {
  display: none;
  background: #E67E22;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-left: 18px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #cf6a06;
  outline: none;
}

/* --------------- MOBILE NAVIGATION OVERLAY ----------------- */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1003;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 48px rgba(27,57,106,0.12);
  transition: transform 0.32s cubic-bezier(.4,.2,.2,1);
  transform: translateX(100%);
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 64px;
  padding-left: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  color: #1B396A;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: 'Oswald', 'Georgia', serif;
  font-size: 1.25rem;
  color: #1B396A;
  padding: 8px 0;
  border-bottom: 1px solid #E2E6EC;
  width: 94vw;
  max-width: 340px;
  transition: color .18s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E67E22;
  background: #F5F7FA;
  outline: none;
}

/* ------------- HERO SECTION --------------- */
.hero-section {
  background: #F5F7FA;
  border-bottom: 1px solid #e2e6ec;
  padding-top: 68px;
  padding-bottom: 56px;
  margin-bottom: 0;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 650px;
  gap: 24px;
}

/* ------------- FEATURE SECTION / CARDS --------------- */
.features-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(27,57,106,0.03);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 22px;
}
.feature-card {
  background: #F5F7FA;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(60,59,102,0.08);
  padding: 28px 22px 24px 22px;
  flex: 1 1 235px;
  min-width: 220px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow .23s;
}
.feature-card img {
  width: 38px;
  margin-bottom: 12px;
}
.feature-card:hover,
.feature-card:focus-within {
  box-shadow: 0 4px 32px rgba(27,57,106,0.14);
}
.feature-card h3 {
  margin-bottom: 7px;
}

/* ---------- SPORT CATEGORY & BENEFITS GRIDS ----------- */
.sport-category-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.sport-category, .benefit-item {
  background: #fff;
  border: 1px solid #e2e6ec;
  border-radius: 12px;
  min-width: 215px;
  max-width: 320px;
  flex: 1 1 215px;
  padding: 20px 16px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(27,57,106,0.08);
}
.benefit-item img {
  width: 36px;
  margin-bottom: 8px;
}

/* ---------- CTA SECTION ------------- */
.cta-section {
  background: #1B396A;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(27,57,106,0.09);
  margin-bottom: 60px;
  padding: 44px 20px;
}
.cta-section h2,
.cta-section p {
  color: #fff;
}
.cta-section .cta-button {
  background: #E67E22;
  color: #fff !important;
  margin-top: 16px;
  box-shadow: 0 2px 16px rgba(230,126,34,0.15);
}
.cta-section .cta-button:hover,
.cta-section .cta-button:focus {
  background: #cf6a06;
}

/* ---------- UPDATES SECTION ----------- */
.updates-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(27,57,106,0.06);
  margin-bottom: 60px;
}
.update-list {
  color: #2c2c2c;
  margin-bottom: 14px;
  padding-left: 26px;
  list-style: disc;
}
.date-stamp {
  color: #6E7D8A;
  font-size: .95rem;
  margin-top: 8px;
  font-style: italic;
}

/* ----------- TESTIMONIAL SECTION ------------ */
.testimonial-section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.testimonial-section .content-wrapper {
  gap: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px 18px 22px;
  background: #FAFAFA;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(27,57,106,0.07);
  margin-bottom: 20px;
  border-left: 4px solid #1B396A;
  color: #2C2C2C;
}
.testimonial-card blockquote {
  border: none;
  color: #1B396A;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 1.075rem;
}
.testimonial-author {
  color: #6E7D8A;
  font-style: normal;
  font-size: 1rem;
  padding-left: 12px;
  border-left: 2px solid #E67E22;
}

/* ----------- CARDS AND FLEX CONTAINERS ------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(27,57,106,0.08);
  margin-bottom: 20px;
  padding: 20px 18px 18px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------- LISTS, STEPS, FAQ -------------- */
ul.value-list, ul.benefits-list, ul.timeline-events, ul.cookie-details, ul.terms-details, ol.step-list, ul.update-list {
  margin-left: 24px;
  margin-bottom: 14px;
  list-style-position: outside;
}
ul.value-list li, ul.benefits-list li, ul.timeline-events li, ul.cookie-details li, ul.terms-details li, ol.step-list li, ul.update-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}
.privacy-notice {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F5F7FA;
  color: #1B396A;
  border-radius: 10px;
  padding: 12px 17px 14px 17px;
  font-size: 0.98em;
}
.privacy-notice img {
  width: 22px;
  height: auto;
}

/* ----------- TABLES (SCHEDULE) ------------------- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  margin-bottom: 14px;
  font-size: 1.07rem;
}
.schedule-table th,
.schedule-table td {
  padding: 10px 12px;
  border: 1px solid #e2e6ec;
  text-align: left;
}
.schedule-table th {
  background: #F5F7FA;
  color: #1B396A;
  font-size: 1.1rem;
}
.callout-changed-classes {
  margin-top: 20px;
  padding: 10px 18px;
  background: #E67E22;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Oswald', 'Georgia', serif;
}

/* ----------- ACCORDION FAQ ------------------------ */
.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(27,57,106,0.06);
  padding: 18px 18px 15px 18px;
  transition: box-shadow 0.16s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 3px 20px rgba(27,57,106,0.13);
}
.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* --------- ADDRESS/BLOCKS/CONTACT ----------- */
.address-block {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-details img {
  width: 18px;
  vertical-align: middle;
  margin-right: 4px;
}
.map-embed {
  margin-top: 10px;
  margin-bottom: 8px;
}
.directions-text {
  margin-top: 4px;
}

/* ------------- FOOTER ------------------- */
footer {
  background: #fff;
  border-top: 1px solid #E2E6EC;
  padding: 46px 0 0 0;
  margin-top: 70px;
}
footer .container {
  padding-bottom: 30px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Oswald', 'Georgia', serif;
  color: #1B396A;
  font-weight: 500;
  font-size: 1.07rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E67E22;
}
.footer-contact {
  font-size: 0.99rem;
  color: #6E7D8A;
  line-height: 1.5;
}
.footer-contact a { color:#1B396A; }
.footer-newsletter {
  color: #393939;
  font-size: 1.03rem;
  font-style: italic;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a,
.footer-social img {
  width: 28px;
  height: 28px;
}

/* ------- THANK-YOU/CONFIRMATION -------- */
.confirmation-message {
  padding: 18px 20px 16px 16px;
  background: #F5F7FA;
  border-radius: 12px;
  font-size: 1.09rem;
  color: #1B396A;
  margin-bottom: 16px;
  box-shadow: 0 1px 6px rgba(27,57,106,0.08);
}
.next-steps {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(27,57,106,0.06);
  padding: 16px 20px;
  margin-bottom: 18px;
}

/* --------- COOKIE CONSENT BANNER -------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1200;
  background: #1B396A;
  color: #fff;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  box-shadow: 0 -2px 22px rgba(27,57,106,0.14);
  font-size: 1rem;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(.4,.2,.2,1), opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 auto;
  line-height: 1.5;
  color: #fff;
  font-size: 0.98em;
  max-width: 580px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Oswald', 'Georgia', serif;
  font-size: 1.06rem;
  font-weight: 500;
  border-radius: 24px;
  border: none;
  padding: 10px 22px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(230,126,34,0.09);
  transition: background 0.18s, color 0.14s;
}
.cookie-btn.accept {
  background: #E67E22;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #cf6a06;
}
.cookie-btn.reject {
  background: #fff;
  color: #1B396A;
  border: 1.3px solid #E67E22;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #1B396A;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.1px solid #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #fff;
  color: #1B396A;
}

/* ---- COOKIE PREFERENCES MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1201;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(27,57,106,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 6px 42px rgba(27,57,106,0.20);
  max-width: 420px;
  min-width: 310px;
  width: 96vw;
  padding: 36px 26px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.08rem;
  animation: fadeInModal 0.38s cubic-bezier(.4,.2,.2,1);
}
@keyframes fadeInModal {
  from { opacity:0; transform: scale(.96); }
  to { opacity:1; transform: scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 8px;
  font-size: 1.19rem;
  color: #1B396A;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-family: 'Open Sans', 'Georgia', serif;
  color: #1B396A;
}
.cookie-category input[type='checkbox'] {
  accent-color: #E67E22;
  width: 19px;
  height: 19px;
  border-radius: 5px;
}
.cookie-category input[disabled] {
  accent-color: #1B396A;
  opacity: 0.67;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  color: #1B396A;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}

/* ---- GENERAL UI/UX ENHANCEMENTS ---- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(27,57,106,0.05);
  padding: 32px 26px 28px 26px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Micro-interactions */
button, .cta-button, .cookie-btn, .mobile-menu-toggle {
  transition: background 0.2s, color 0.2s, box-shadow 0.22s, transform 0.13s;
}
button:active, .cta-button:active, .cookie-btn:active, .mobile-menu-toggle:active {
  transform: scale(.98);
}

/* ------------ RESPONSIVE DESIGN - MOBILE FIRST ------------ */
@media (max-width: 1270px) {
  .container { max-width: 98vw; }
}
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .footer-social a, .footer-social img { width: 24px;height:24px; }
  .main-nav { gap: 18px; }
}
@media (max-width: 900px) {
  .footer-contact, .footer-newsletter { max-width: 230px; }
  .sport-category-grid, .benefits-grid, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 820px) {
  .container { padding: 0 10px; }
  .header .container { gap: 0; }
  .footer-nav { gap: 12px; }
  .footer-social {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-button {
    margin-left: 8px;
    font-size: 1rem;
    padding: 10px 18px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .hero-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .text-section {
    padding: 20px 10px 18px 10px;
  }
  .card, .feature-card, .sport-category, .benefit-item {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .footer-contact, .footer-newsletter, .footer-nav, .footer-social, .footer-contact p {
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
  }
  .footer-social { gap: 10px; }
  .section {
    margin-bottom: 38px;
    padding: 24px 6px 24px 6px;
  }
  .card-container, .feature-grid, .sport-category-grid, .benefits-grid, .content-grid, .footer-content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-section .content-wrapper {
    gap: 22px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 15px 11px 16px 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .update-list, .timeline-events, .benefits-list, .terms-details, .value-list { margin-left: 16px; }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    font-size: 0.97rem;
    padding: 18px 9px 18px 9px;
  }
  .cookie-banner .cookie-banner-text { max-width: 100%; }
  .cookie-modal {
    padding: 18px 9px 18px 13px;
    min-width: 0; max-width: 98vw;
  }
  .mobile-nav a {
    font-size: 1.125rem;
    width: 96vw;
    min-width: 0;
  }
}
@media (max-width: 460px) {
  header .container { gap: 0; }
  .logo, .footer-logo {
    max-width: 80px;
  }
  h1, .h1 {
    font-size: 1.68rem;
    margin-bottom: 14px;
  }
  h2, .h2 {
    font-size: 1.28rem;
    margin-bottom: 11px;
  }
  .testimonial-card {
    box-shadow: 0 1px 6px rgba(27,57,106,0.06);
    border-radius: 8px;
    padding: 9px 6px 10px 8px;
  }
  .footer-contact p, .footer-newsletter, .footer-social { font-size: .97rem; }
}

/* ------ PRINT STYLE BASIC SUPPORT ------ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
