/* ValuteSora Sportclubs Frankfurt – Warm Friendly Responsive CSS */

/****** RESET & BASE STYLES ******/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FFF;
  color: #222;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #183059;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #26A65B;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}


/****** BRAND COLORS as CSS vars for fallback ******/
:root {
  --primary: #183059;
  --secondary: #26A65B;
  --accent: #F6F6F6;
  --warm1: #FFE7C1; /* Soft Peachy bg */
  --warm2: #FFD2A9; /* Accent Peach */
  --warm3: #FFF8F3; /* Light Cream */
  --danger: #D66B3E;
  --border: #E9E9E9;
}

/****** FONT FACES (assume included via HTML for Montserrat and Open Sans) ******/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
}

p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #3C3C3C;
}


/****** CONTAINER & COMMON LAYOUTS ******/
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--warm3);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(249, 180, 100,0.06);
}

/****** HEADER & NAVIGATION ******/
header {
  background: #FFF;
  box-shadow: 0 2px 16px 0 rgba(24,48,89,0.07);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo-link img {
  height: 48px;
  width: auto;
  border-radius: 0;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--warm2);
  color: var(--secondary);
}

.cta-button {
  appearance: none;
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 1.1rem;
  border-radius: 26px;
  background: var(--secondary);
  color: #FFF;
  border: none;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px 0 rgba(38,166,91,0.18);
  cursor: pointer;
  margin-left: 16px;
  text-align: center;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
}
.cta-button:hover, .cta-button:focus {
  background: #4AC187;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(38,166,91,0.30);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #FFF;
  border: none;
  font-size: 2.1rem;
  border-radius: 10px;
  padding: 6px 18px 8px 18px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px 0 rgba(38,166,91,0.10);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #4AC187;
}

/****** MOBILE NAVIGATION OVERLAY *******/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 48, 89, 0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 22px 24px 22px;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #FFF;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2030;
  padding: 0 8px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.4rem;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 16px 0 4px 0;
  text-align: left;
  border-radius: 12px;
  transition: background 0.18s, color 0.17s;
  margin: 0 0 0 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #FFF;
}

/****** HERO & CTA-BLOCKS ******/
.hero {
  background: var(--warm1);
  padding: 60px 0 50px 0;
  border-radius: 20px;
  box-shadow: 0 5px 32px 0 rgba(247, 168, 74, 0.07);
  margin-bottom: 48px;
}
.hero .container,
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero .content-wrapper,
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section {
  background: var(--secondary);
  color: #FFF;
  border-radius: 26px;
  margin-top: 32px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 3px 20px 0 rgba(38,166,91,0.12);
}
.cta-section h2, .cta-section p {
  color: #FFF;
}

/****** FLEXBOX SPACING & GRID PATTERNS ******/
.feature-grid, .service-list, .card-container,
.content-grid, .features, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.feature-grid {
  gap: 24px;
  justify-content: flex-start;
}
.service-list{
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  gap: 24px;
  justify-content: flex-start;
}
.content-grid {
  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: 18px;
  box-shadow: 0 3px 13px 0 rgba(24,48,89,0.10);
  margin-bottom: 20px;
  margin-top: 15px;
  font-size: 1.05rem;
  color: #1C1C1C;
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****** CARD & BLOCK STYLING ******/
.feature-block, .service-block {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(247, 168, 74, 0.07);
  padding: 28px 22px 24px 22px;
  text-align: left;
  min-width: 220px;
  flex: 1 1 250px;
  max-width: 325px;
  transition: box-shadow 0.18s, transform 0.15s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-block img, .service-block img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
}
.feature-block:hover, .service-block:hover {
  box-shadow: 0 8px 32px 0 rgba(38,166,91,0.16);
  transform: translateY(-6px) scale(1.025);
}

/****** MAIN CONTENT & SECTIONS ******/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section, .about-section, .team-section, .why-us-section, .news-section,
.legal-section, .privacy-section, .cookie-policy-section, .terms-section, .thank-you-section, .contact-section {
  background: var(--warm3);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(249, 180, 100,0.05);
}

/****** TABLES (Kursplan) ******/
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  font-size: 1rem;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(24,48,89,0.05);
  overflow-x: auto;
}
.schedule-table th, .schedule-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.schedule-table th {
  background: var(--warm1);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
}
.schedule-table tr:last-child td {
  border-bottom: none;
}

.filter-options {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.filter-options label {
  font-weight: bold;
}
.filter-options select {
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #FFF;
  outline: none;
  transition: border 0.18s;
}
.filter-options select:focus {
  border: 1.5px solid var(--secondary);
}

/****** LISTS & TIMELINES ******/
.history-timeline, .team-list, .team-values,
.updates-list, .news-list, .member-updates,
.data-collection-info, .user-rights, .user-obligations,
.club-rules, .cookie-types {
  list-style: disc inside;
  margin-top: 10px;
  margin-bottom: 18px;
  padding-left: 14px;
}
.updates-list li, .news-list li, .member-updates li {
  background: var(--warm2);
  color: var(--primary);
  border-radius: 10px;
  padding: 9px 14px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
}

/****** HOWTO STEPS ******/
.howto-steps {
  padding-left: 24px;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.howto-steps li {
  margin-bottom: 9px;
}

/****** CONTACT DETAILS & MAP ******/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 24px 0;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-details img {
  height: 22px;
  width: 22px;
  border-radius: 0;
}
.address-section {
  margin-top: 15px;
  padding: 18px;
  background: var(--warm2);
  border-radius: 12px;
  color: var(--primary);
  font-weight: 500;
}
.map-section .map-embed {
  background: var(--accent);
  border-radius: 12px;
  color: #7d6d4a;
  font-weight: 600;
  margin-bottom: 18px;
}

/****** FOOTER ******/
footer {
  background: var(--primary);
  color: #FFF;
  padding: 38px 0 0 0;
  width: 100%;
}
.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-logo img {
  height: 54px;
  width: auto;
  margin: 0 auto 14px auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #FFF;
  font-size: 1em;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: #FFF;
}
.footer-legal {
  text-align: center;
  color: #e9eef7;
  font-size: 0.96em;
  margin-top: 8px;
  margin-bottom: 22px;
}

/****** TESTIMONIAL CARDS ******/
.testimonial-card blockquote {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.4;
  quotes: "\201E" "\201C";
}
.testimonial-card p {
  font-size: 0.99em;
  color: #222;
  opacity: 0.75;
  margin-bottom: 0;
}

/****** EVENT CALENDAR & NEWS ******/
.event-calendar {
  background: var(--accent);
  border-radius: 14px;
  padding: 18px 16px 13px 16px;
  box-shadow: 0 2px 14px 0 rgba(24,48,89,0.08);
  margin-top: 20px;
  margin-bottom: 18px;
}
.event-calendar h3 {
  font-size: 1.12em;
  color: var(--secondary);
  margin-bottom: 8px;
}

/****** COOKIE BANNER ******/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF9F3;
  box-shadow: 0 -2px 22px 0 rgba(38,166,91,0.12);
  border-top: 2.5px solid var(--secondary);
  padding: 0;
  z-index: 3000;
  width: 100%;
  display: flex;
  align-items: center;
  animation: cookieSlideIn 0.66s 0.2s cubic-bezier(.62,0,.23,1) both;
}
.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 14px;
}
.cookie-banner span {
  color: var(--primary);
  font-size: 1rem;
}
.cookie-banner a {
  color: var(--secondary);
  text-decoration: underline;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 20px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  margin-right: 6px;
  margin-left: 2px;
  background: var(--secondary);
  color: #FFF;
  transition: background 0.16s, box-shadow 0.14s, color 0.15s;
  box-shadow: 0 1px 7px 0 rgba(38,166,91,0.12);
}
.cookie-banner .cookie-settings {
  background: #FFE7C1;
  color: var(--primary);
  border: 1.5px solid var(--secondary);
  margin-left: 0;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #FFD2A9;
  color: var(--primary);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #4AC187;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 4010;
  background: rgba(24,48,89,0.83);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 8px 44px 0 rgba(24,48,89,0.18);
  padding: 38px 28px;
  width: 96%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  position: relative;
  animation: cookieModalShow .45s cubic-bezier(.62,0,.23,1) both;
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.22rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal-category label {
  flex: 1 1 auto;
  font-weight: 500;
  font-size: 1.08em;
}
.cookie-modal-category input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  border-radius: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .essential {
  font-weight: 600; color: var(--primary);
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: var(--danger);
}

@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes cookieModalShow {
  from { transform: translateY(55px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}

/****** MODALS & OVERLAYS (Cookie Modal Demo Markup) ******/
/* If you add the modal, use .cookie-modal-overlay + .cookie-modal */

/****** ANIMATIONS & MICRO-INTERACTIONS ******/
.card, .feature-block, .service-block, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .feature-block:hover, .service-block:hover {
  box-shadow: 0 8px 32px 0 rgba(38,166,91,0.12);
  transform: translateY(-6px) scale(1.025);
}

/****** UTILITY CLASSES ******/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-section {
  margin-bottom: 22px;
}
.directions-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #3C3C3C;
  background: var(--warm1);
  padding: 13px 18px;
  border-radius: 10px;
}

/****** RESPONSIVE & MOBILE FIRST MEDIA QUERIES ******/
@media (max-width: 1080px) {
  .container {
    max-width: 980px;
    padding: 0 10px;
  }
  .footer-container {
    max-width: 980px;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-block, .service-block {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .header-flex {
    gap: 8px;
    flex-direction: row;
  }
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 10px;
    padding: 11px 16px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }

  .hero, .section, .about-section, .team-section, .why-us-section,
  .news-section, .legal-section, .privacy-section, .cookie-policy-section, .terms-section, .thank-you-section, .contact-section {
    border-radius: 12px;
    padding: 36px 6px;
    margin-bottom: 30px;
  }
  .container {
    padding: 0 4px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
  .footer-main {
    gap: 10px;
  }
  .footer-logo img {
    height: 40px;
  }
  .footer-nav {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .footer-legal {
    font-size: 0.93em;
    margin-bottom: 16px;
  }
  .content-grid, .card-container {
    gap: 12px;
  }
  .feature-block, .service-block {
    padding: 18px 11px 14px 11px;
  }
  .testimonial-card {
    padding: 16px 8px 14px 8px;
    font-size: 0.99rem;
  }
  .hero {
    padding: 36px 0 34px 0;
    border-radius: 10px;
    margin-bottom: 18px;
  }
  .cta-section {
    padding: 25px 6px;
    border-radius: 14px;
  }
  .address-section, .directions-text {
    padding: 10px 8px;
    font-size: 0.98em;
  }
  .cookie-banner .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 7px 11px 8px;
  }
}

@media (max-width: 510px) {
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 0.99rem; }
  .feature-block, .service-block {
    padding: 11px 5px 9px 5px;
  }
  .contact-details {
    gap: 3px;
  }
  .map-section .map-embed span {
    font-size: 0.93rem;
  }
  .footer-logo img {
    height: 28px;
  }
}

/* Hide Cookie Modal on Mobile for responsive (example) */
@media (max-width: 430px) {
  .cookie-modal {
    padding: 16px 5px;
  }
}

/****** FOCUS STATES & ACCESSIBILITY ******/
a:focus, button:focus, select:focus, input:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/****** HIDE ON MOBILE/SHOW ON DESKTOP ******/
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/****** END ******/
