/* --- CSS RESET & BASE TYPOGRAPHY --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222E50;
  background: #F8F8F7;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #222E50;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E49733;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.6em;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #222E50;
  margin-bottom: 18px;
  line-height: 1.2;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: linear-gradient(90deg, #F8F8F7 0%, #f3eedc 100%);
  box-shadow: 0 2px 10px 0 rgba(34,46,80,0.09);
  position: sticky;
  top: 0;
  z-index: 800;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
.logo img {
  height: 44px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222E50;
  position: relative;
  padding: 6px 4px;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E49733;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  cursor: pointer;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 3px 14px 0 rgba(34,46,80,0.08);
  transition: background 0.22s, color 0.18s, box-shadow 0.22s, border 0.15s;
}
.cta-btn.primary {
  background: linear-gradient(90deg, #222E50 60%, #E49733 160%);
  color: #fff;
  border: none;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: linear-gradient(90deg, #E49733 0%, #222E50 100%);
  color: #fff;
  box-shadow: 0 5px 22px 0 rgba(34,46,80,0.17);
}
.cta-btn.secondary {
  background: #fff;
  color: #E49733;
  border: 2px solid #E49733;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #E49733;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(228,151,51,0.11);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #222E50;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s;
  z-index: 1202;
  line-height: 1;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E49733;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 10px 60px 0 rgba(34,46,80,0.18);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  color: #222E50;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1201;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E49733;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222E50;
  padding: 12px 2px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f3eedc;
  color: #E49733;
}

@media (max-width: 990px) {
  .main-nav, .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- FLEX CONTAINERS, CARDS, AND SECTIONS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 11px 0 rgba(34,46,80,0.06);
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 32px 0 rgba(34,46,80,0.13);
}
.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;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(34,46,80,0.06);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 22px 0 rgba(34,46,80,0.12);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #222E50;
}
.testimonial-meta {
  font-size: 1rem;
  color: #E49733;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-left: auto;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 11px 0 rgba(34,46,80,0.06);
  padding: 26px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 290px;
  transition: box-shadow 0.18s, transform 0.22s;
}
.feature-item img {
  width: 38px;
  height: 38px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 9px 32px 0 rgba(228,151,51,0.12);
  transform: translateY(-6px) scale(1.03);
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(100deg, #E49733 0%, #222E50 120%);
  color: #fff;
  padding: 68px 0 56px 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 8px 32px 0 rgba(34,46,80,0.10);
}
.hero h1, .hero p, .hero .cta-btn {
  color: #fff;
}
.hero .cta-btn.primary {
  margin-top: 12px;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.hero-about, .hero-courses, .hero-coaching, .hero-dates, .hero-pricing, .hero-contact {
  background: linear-gradient(95deg, #222E50 44%, #E49733 155%);
  color: #fff;
  padding: 54px 0 28px 0;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0 7px 28px 0 rgba(34,46,80,0.08);
}
.hero-about h1, .hero-courses h1, .hero-coaching h1, .hero-dates h1, .hero-pricing h1, .hero-contact h1,
.hero-about p, .hero-courses p, .hero-coaching p, .hero-dates p, .hero-pricing p, .hero-contact p {
  color: #fff;
}
.thank-you {
  background: linear-gradient(110deg, #E49733 30%, #222E50 130%);
  color: #fff;
  padding: 72px 0 56px 0;
  border-radius: 40px;
  box-shadow: 0 10px 36px 0 rgba(34,46,80,0.09);
}
.thank-you h1, .thank-you .confirmation-message, .thank-you .cta-btn {
  color: #fff;
}
.next-steps-info ul {
  list-style: disc inside;
  margin-left: 16px;
}

/* --- CARDS AND GRIDS --- */
.feature-grid, .team-section, .course-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid {
  justify-content: flex-start;
}
.team-section .team-member {
  flex: 1 1 260px;
  min-width: 200px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 11px 0 rgba(34,46,80,0.06);
  padding: 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.22s;
}
.team-section .team-member:hover {
  box-shadow: 0 7px 22px 0 rgba(228,151,51,0.12);
  transform: translateY(-4px) scale(1.02);
}
.course-list-grid {
  gap: 24px;
  margin-bottom: 24px;
}
.course-item {
  background: #fff;
  border-radius: 18px;
  padding: 23px 22px;
  box-shadow: 0 1px 11px 0 rgba(34,46,80,0.06);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 280px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.course-item:hover, .course-item:focus-within {
  box-shadow: 0 7px 24px 0 rgba(34,46,80,0.11);
  transform: scale(1.03);
}
.course-price {
  color: #E49733;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.course-level {
  margin-top: 6px;
  color: #222E50;
  font-size: 0.98em;
  opacity: .77;
}

/* --- TABLES --- */
.pricing-table, .calendar-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 7px 0 rgba(34,46,80,0.05);
}
.pricing-table th, .pricing-table td, .calendar-table th, .calendar-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #E4973322;
}
.pricing-table th, .calendar-table th {
  background: #f3eedc;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.pricing-table tr:last-child td, .calendar-table tr:last-child td {
  border-bottom: none;
}
.discount-info {
  background: #f3eedc;
  border-radius: 12px;
  padding: 16px 18px;
  color: #222E50;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(34,46,80,0.07);
}

/* --- FORMS --- */
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #E4973366;
  border-radius: 8px;
  margin-bottom: 18px;
  transition: border 0.16s;
  background: #fff;
  color: #222E50;
}
input:focus, textarea:focus, select:focus {
  border-color: #E49733;
  outline: none;
}

/* --- ACCENT ELEMENTS --- */
.service-list li span,
.coaching-services li span {
  color: #E49733;
  font-weight: 700;
  margin-left: 4px;
}
.calendar-table td:last-child {
  font-weight: 600;
  color: #E49733;
}

/* --- FOOTER --- */
footer {
  background: #222E50;
  color: #fff;
  font-size: 1rem;
  padding: 0 0 22px 0;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  padding: 44px 0 18px 0;
  align-items: flex-start;
  border-bottom: 1px solid #E4973380;
}
.logo-footer img {
  height: 38px;
}
.footer-nav, .footer-contact, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 140px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.88;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
  margin-bottom: 0px;
}
.footer-nav a:hover {
  color: #E49733;
  opacity: 1;
}
.footer-contact p {
  color: #F8F8F7;
  opacity: 0.72;
  font-size: 0.98rem;
}
.footer-legal {
  margin-top: 24px;
}
.footer-legal a {
  color: #E49733;
  font-size: 0.98rem;
  text-decoration: underline;
  margin-bottom: 5px;
  opacity: .8;
  transition: opacity 0.2s;
}
.footer-legal a:hover, .footer-legal a:focus {
  opacity: 1;
}

/* --- MAP EMBED --- */
.map-embed {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

/* --- ADDITIONAL SECTIONS --- */
.contact-short, .cta, .cta-contact {
  background: linear-gradient(90deg, #222E50 0%, #E49733 100%);
  color: #fff;
  border-radius: 24px;
  margin: 38px 0 0 0;
  padding: 34px 0;
  box-shadow: 0 8px 34px 0 rgba(228,151,51,0.07);
  text-align: center;
}
.contact-short h2, .cta h2, .cta-contact h2 {
  color: #fff;
}

/* --- COOKIE BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222E50;
  color: #fff;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -2px 20px rgba(34,46,80,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2001;
  animation: fadeInUp 0.7s;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(48px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  font-size: 15px;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 4px;
}
.cookie-btn, .cookie-btn-secondary {
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 24px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background .22s, color .18s, box-shadow .14s;
}
.cookie-btn {
  background: #E49733;
  color: #222E50;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #E49733;
}
.cookie-btn-secondary {
  background: #fff;
  color: #222E50;
  border: 1.5px solid #E49733;
}
.cookie-btn-secondary:hover {
  background: #E49733;
  color: #fff;
  border: 1.5px solid #fff;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.98);
  background: #fff;
  color: #222E50;
  max-width: 420px;
  width: 90vw;
  margin: 0 auto;
  box-shadow: 0px 14px 70px 0 rgba(34,46,80,0.29);
  border-radius: 16px;
  z-index: 2100;
  padding: 32px 24px 20px 24px;
  animation: fadeInModal 0.33s;
  display: none;
}
.cookie-modal.open {
  display: block;
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: translateY(44px) scale(0.90); }
  100% { opacity: 1; transform: translateY(-50%) scale(0.98); }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-weight: 500;
  cursor: pointer;
}
.cookie-switch {
  width: 40px;
  height: 20px;
  background: #E49733;
  border-radius: 10px;
  position: relative;
  transition: background 0.17s;
}
.cookie-switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-indicator {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-switch input[type=checkbox]:checked + .cookie-switch-indicator {
  left: 22px;
}
.cookie-category.essential .cookie-switch {
  background: #ddd;
}
.cookie-category.essential label {
  opacity: .7;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal .close-cookie-modal {
  background: none;
  color: #222E50;
  border: none;
  font-size: 1.4rem;
  position: absolute;
  top: 14px;
  right: 18px;
  cursor: pointer;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1100px) {
  .container {
    padding: 0 10px;
  }
  .footer-main {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-grid, .team-section, .course-list-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 6vw;
  }
  .card-container, .content-grid, .feature-grid, .team-section, .course-list-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .contact-short, .cta, .cta-contact {
    padding: 22px 3vw;
    border-radius: 14px;
  }
  .hero, .thank-you {
    padding: 44px 0 32px 0;
    border-radius: 18px;
  }
  .hero-about, .hero-courses, .hero-coaching, .hero-dates, .hero-pricing, .hero-contact {
    padding: 36px 0 18px 0;
    border-radius: 12px;
  }
  footer {
    padding-top: 22px;
  }
}
@media (max-width: 576px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.09rem; }
  .cta-btn {
    font-size: 0.97rem;
    min-width: 90px;
    padding: 9px 17px;
  }
  .pricing-table th, .pricing-table td, .calendar-table th, .calendar-table td {
    padding: 8px 5px;
    font-size: 0.98em;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-btn, .card, .feature-item, .course-item, .testimonial-card {
  transition: box-shadow 0.18s, background 0.22s, color 0.22s, transform 0.17s;
}
.cta-btn:active {
  transform: scale(0.98);
}

/* --- UTILS --- */
.hide {
  display: none !important;
}

/* Required spacing for list items in service-list and team-section */
.service-list li, .about-team ul li, .coaching-services ul li, .benefits-short ul li, .kontakt-advice ul li {
  margin-bottom: 13px;
  line-height: 1.55;
}
.participation-info ol {
  margin-bottom: 16px;
}

/* Cookie banner on mobile: stack buttons vertically */
@media (max-width: 480px) {
  .cookie-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: stretch;
  }
}

/* --- END OF STYLE.CSS --- */