/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F8F9FB;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1c1c25;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  display: block;
}
a { color: #204685; text-decoration: none; transition: color 0.2s; word-break: break-word; }
a:hover, a:focus { color: #37A86F; }
ul, ol { padding-left: 24px; }
strong { font-weight: 700; }

/* FONT FACE */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204685;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-wrap: balance;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.25rem; margin-bottom: 12px; }
p, li { font-size: 1rem; margin-bottom: 12px; }

/* CONTAINER & FLEX LAYOUTS */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(32, 72, 133, 0.11);
  transition: transform 0.2s cubic-bezier(.5,.15,.25,1), box-shadow 0.2s;
  position: relative;
  min-width: 240px;
  padding: 24px 20px;
  flex: 1 1 280px;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(55,168,111,.18);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(55,168,111,0.13);
  margin-bottom: 20px;
  max-width: 720px;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #1c1c25;
  margin-bottom: 0;
}
.testimonial-details {
  color: #204685;
  font-size: 0.97rem;
  font-style: italic;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER AND NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 12px rgba(32,72,133,0.06);
}
header .container {
  min-height: 70px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
header a img { height: 40px; }
.main-nav {
  display: flex;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #204685;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 10px 0 6px;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #37A86F;
  border-color: #37A86F;
}
.cta-btn {
  background: #37A86F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  border: none;
  outline: none;
  border-radius: 28px;
  padding: 11px 32px;
  margin-left: 8px;
  box-shadow: 0 3px 14px rgba(55, 168, 111, 0.13);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.18s, transform 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #204685;
  color: #fff;
  transform: scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 2px solid #204685;
  border-radius: 8px;
  color: #204685;
  font-size: 2rem;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 120;
  transition: background 0.18s, border-color 0.18s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #37A86F;
  color: #fff;
  border-color: #37A86F;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #204685;
  transition: transform 0.35s cubic-bezier(.85,0,.09,1);
  transform: translateX(-105%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: #fff;
  padding: 23px 28px 15px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  margin: 0;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #37A86F;
  border-color: #37A86F;
}

/* HERO & SECTION STYLES */
.hero, .cta-hero {
  background: linear-gradient(87deg, #204685 90%, #37A86F 115%);
  color: #fff;
  padding: 64px 0 56px 0;
  text-align: left;
}
.hero .container, .cta-hero .container {
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.hero h1, .cta-hero h1 { color: #fff; }
.hero p, .cta-hero p { font-size: 1.18rem; color: #fafdff; margin-bottom: 22px; }
.hero .cta-btn, .cta-hero .cta-btn {
  margin-top: 12px;
  background: #fff;
  color: #204685;
}
.hero .cta-btn:hover, .cta-hero .cta-btn:hover {
  background: #37A86F;
  color: #fff;
}
.features ul, .about-features ul, .sports-grid ul, .special-features ul, .location-features ul, .updates ul, .how-it-works ul, .how-it-works ol, .service-promise ul, .privacy-policy ul, .gdpr-section ul, .cookie-policy ul, .terms-of-use ul {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.features ul li, .about-features ul li, .sports-grid ul li, .special-features ul li, .location-features ul li, .updates ul li, .how-it-works ul li, .how-it-works ol li, .service-promise ul li, .privacy-policy ul li, .gdpr-section ul li, .cookie-policy ul li, .terms-of-use ul li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(32,72,133,0.07);
  padding: 16px 18px;
  font-size: 1.06rem;
}
.features h2, .sports-grid h2, .about-features h2, .location-features h2, .updates h2 { color: #204685; }
.about-intro, .about, .about-features, .sports-grid, .special-features, .locations, .location-features, .timetable, .updates, .contact-info, .service-promise, .cookie-policy, .privacy-policy, .gdpr-section, .terms-of-use, .thank-you {
  margin-bottom: 60px; padding: 40px 20px;
}
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #204685;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 22px 0 0 0;
}
.text-section {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.privacy-note {
  background: #e9f7f1;
  color: #204685;
  border-radius: 8px;
  padding: 10px 16px;
  margin: 14px 0 0 0;
  font-size: 0.98rem;
}

/* THANK-YOU SECTION */
.thank-you {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  background: #fffbe7;
  border-radius: 24px;
  box-shadow: 0 3px 16px rgba(32, 72, 133, 0.06);
  margin: 36px 0 64px 0;
}

/* FOOTER */
footer {
  background: #204685;
  color: #fff;
  padding: 0;
  letter-spacing: 0.01rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0 16px 0;
}
footer a {
  color: #fff;
  transition: color 0.18s;
}
footer a:hover, footer a:focus {
  color: #37A86F;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a img {
  width: 32px; height: 32px;
  filter: drop-shadow(0 2px 6px #12212522);
  transition: filter 0.18s, transform 0.17s;
}
.footer-social a:hover img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(54%) saturate(1335%) hue-rotate(91deg) brightness(96%) contrast(88%);
  transform: scale(1.09);
}
.footer-info {
  margin-top: 11px;
  font-size: 0.92rem;
  color: #f8f9fbcc;
  width: 100%;
}

/* FORMATTING ICONS IN LISTS (Kontakt) */
.contact-info ul li img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -4px;
}

/* GENERAL EFFECTS */
section, main section, .section {
  transition: background 0.18s, box-shadow 0.2s;
}
.card, .testimonial-card {
  transition: box-shadow 0.2s, transform 0.18s;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
  }
  .footer-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header .container {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
  .footer-content {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-right: 8px;
    padding: 11px 22px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, .about-intro, .about, .about-features, .sports-grid, .special-features, .locations, .location-features, .timetable, .updates, .contact-info, .service-promise, .cookie-policy, .privacy-policy, .gdpr-section, .terms-of-use, .thank-you {
    margin-bottom: 36px;
    padding: 30px 4px;
  }
  .hero, .cta-hero { padding: 44px 0 38px 0; }
  .features ul, .about-features ul, .sports-grid ul, .special-features ul, .location-features ul, .updates ul, .how-it-works ul, .how-it-works ol, .service-promise ul, .privacy-policy ul, .gdpr-section ul, .cookie-policy ul, .terms-of-use ul {
    gap: 8px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 14px 10px;
  }
  .content-grid {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  .footer-social a img {
    width: 24px; height: 24px;
  }
}
@media (max-width: 520px) {
  .mobile-nav {
    padding: 0 11px;
  }
}
@media (max-width: 420px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
}

/* -- FLEX DIRECTION ADAPTATION -- */
@media (max-width: 900px) {
  .text-image-section, .content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    gap: 12px;
    flex-direction: column;
  }
}

/* --- HOVER/FOCUS MICROINTERACTIONS -- */
button, .cta-btn {
  transition: background 0.16s, color 0.16s, transform 0.13s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}
li {
  transition: box-shadow 0.14s, background 0.13s;
}
li:hover, li:focus-visible {
  background: #f3fcf7;
  box-shadow: 0 2px 10px #37A86F22;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff3bd;
  border-top: 3px solid #204685;
  color: #204685;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 9999;
  padding: 18px 14px 18px 10px;
  box-shadow: 0 -2px 16px #3332;
  animation: cookieFadeIn 0.48s cubic-bezier(.29,.78,.6,1.05);
}
@keyframes cookieFadeIn {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  font-size: 1rem;
  margin: 0 16px 0 0;
  max-width: 430px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  border: none;
  background: #204685;
  color: #fff;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
  margin: 0;
  box-shadow: 0 1px 3px #b3b3b338;
}
.cookie-btn.accept {
  background: #37A86F;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #204685;
  border: 2px solid #204685;
}
.cookie-btn.settings {
  background: #204685;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #204685;
  color: #fff;
  box-shadow: 0 2px 13px #20468516;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #195b48;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffe574;
  color: #204685;
}

@media (max-width: 660px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 6px 13px 6px;
  }
  .cookie-consent-banner p {
    max-width: none;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 72, 133, 0.32);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 48px #20468533;
  padding: 34px 24px 26px 24px;
  min-width: 320px;
  max-width: 99vw;
  max-width: 380px;
  color: #204685;
  font-family: 'Roboto', Arial, sans-serif;
  animation: modalZoomIn 0.46s cubic-bezier(.24,.63,.54,1.22);
  position: relative;
}
@keyframes modalZoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #204685;
  font-size: 1.34rem;
  margin-bottom: 18px;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 20px;
  background: #e9e9ef;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.13s;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-modal .cookie-switch span {
  display: block;
  width: 17px;
  height: 17px;
  background: #37A86F;
  border-radius: 50%;
  position: absolute;
  top: 1.5px; left: 2px;
  transition: left 0.13s, background 0.13s;
}
.cookie-modal .cookie-switch input:checked + span {
  left: 19px; background: #204685;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #204685;
}
.cookie-modal .cookie-category.essential label {
  color: #aaa;
  font-style: italic;
}
.cookie-modal .cookie-category.essential .cookie-switch {
  background: #e9e9ef;
}
.cookie-modal .cookie-category.essential {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #204685;
  cursor: pointer;
  padding: 3px 7px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #37A86F;
}
@media (max-width:400px) {
  .cookie-modal {
    padding: 14px 4px 16px 5px;
    min-width: 0;
    max-width: 100vw;
  }
}

/* ---- SCROLLBAR (for design) ---- */
body {
  scrollbar-color: #37A86F #e9e9ef;
  scrollbar-width: thin;
}
::-webkit-scrollbar     { width: 9px; background: #e9e9ef; }
::-webkit-scrollbar-thumb { background: #37A86F; border-radius: 5px; }

/* ---- ACCESSIBILITY FOCUS VISIBILITY ---- */
:focus {
  outline: 2px solid #37A86F;
  outline-offset: 2px;
}

/* ---- ADDITIONAL ENERGETIC VISUALS ---- */
section h2::after, .content-wrapper > h2::after {
  content: '';
  display: block;
  width: 58px;
  height: 5px;
  margin-top: 5px;
  background: #37A86F;
  border-radius: 4px;
}

.cta-btn, .cookie-btn, button {
  box-shadow: 0 3px 16px #37A86F22;
}

/* --- Z-INDEX LAYERING FOR MENU AND MODALS --- */
.mobile-menu { z-index: 150; }
.cookie-consent-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10001; }
header { z-index: 21; position: relative; }

/* --- Print safeguard (avoid accidental print background) --- */
@media print {
  header, nav, .mobile-menu, .cookie-consent-banner, footer {
    display: none !important;
  }
  body {
    color: #222;
    background: #fff;
  }
}
