/* RESET & BASE STYLES */
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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1A3855;
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #1A3855;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px dashed #F3B13B;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1A3855;
  margin-bottom: 18px;
  margin-top: 0;
  letter-spacing: 0.01em;
  font-weight: 900;
  line-height: 1.1;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
p {
  margin-bottom: 14px;
  margin-top: 0;
}
strong {
  color: #F3B13B;
  font-weight: 700;
}

/* CREATIVE ARTISTIC TOUCHES */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 45px;
  height: 4px;
  background: #F3B13B;
  border-radius: 2px;
  margin-top: 6px;
  margin-left: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER NAVIGATION */
header {
  background: #fff;
  border-bottom: 4px solid #F3B13B;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(26,56,85,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 16px;
}
.logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.15s;
}
.logo-link:hover {
  transform: scale(1.04) rotate(-2deg);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1A3855;
  padding: 7px 10px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.main-nav a:hover {
  background: #F3B13B;
  color: #fff;
}
.cta.primary {
  background: #1A3855;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 40px;
  box-shadow: 0 2px 12px rgba(26,56,85,0.08);
  margin-left: 10px;
  transition: background 0.2s, transform 0.18s;
  border: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #F3B13B;
  color: #1A3855;
  transform: translateY(-2px) scale(1.05);
}
.mobile-menu-toggle {
  display: none;
  background: #F3B13B;
  color: #1A3855;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  margin-left: 8px;
  z-index: 1011;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1A3855;
  color: #F3B13B;
}

/* MOBILE BURGER NAV */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(26, 56, 85, 0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 18px 22px 22px;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #F3B13B;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 16px;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 16px 0 10px 0;
  border-bottom: 1px solid rgba(243,177,59,0.14);
  transition: color 0.16s, background 0.1s;
  text-align: left;
}
.mobile-nav a:hover {
  color: #F3B13B;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
  }
  .cta.primary {
    padding: 10px 18px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 870px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(104deg, #F3B13B 0%, #FFE6C1 80.1%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 4px 36px rgba(26,56,85,0.04), 0 2px 0 #F3B13B inset;
  padding: 48px 0 56px 0;
  margin-bottom: 38px;
}
.hero h1 {
  color: #1A3855;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2.35rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.14rem;
  color: #333;
  margin-bottom: 22px;
  max-width: 600px;
}
.hero .cta.primary {
  margin-top: 12px;
}

/* SECTION LAYOUTS & FLEX CONTAINERS */
.features {
  background: #fff8ee;
  border-radius: 36px;
}
.features .content-wrapper {
  margin-top: 10px;
  gap: 0px;
}

.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
  margin-top: 24px;
  padding-left: 0;
}
.feature-grid li, .service-list li {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 14px rgba(26,56,85,0.06);
  padding: 28px 28px 20px 28px;
  min-width: 255px;
  max-width: 340px;
  flex: 1 1 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.16s, border 0.16s;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid transparent;
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 8px 28px rgba(243,177,59,0.12), 0 2px 0 #F3B13B inset;
  transform: translateY(-3px) scale(1.016) rotate(-1deg);
  border: 2px solid #F3B13B;
}
.feature-grid img, .team-member img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 18px;
  background: #FFE6C1;
  padding: 6px;
}

/* Team Section */
.features-team .team-introductions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  background: #fff8ee;
  border-radius: 22px;
  padding: 28px 18px;
  box-shadow: 0 2px 12px rgba(26,56,85,0.04);
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
}
.team-member h3 {
  color: #1A3855;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* About, Philosophy, Features */
.about, .about-philosophy, .features-team, .courses-features, .coaching-offers, .coaching-testimonials, .online-details, .online-benefits, .courses-overview, .contact-form-block, .features, .testimonials, .before-after-summaries, .thank-you, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
}

.testimonials .content-wrapper, .courses-overview .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.course-price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F3B13B;
  font-size: 1.15rem;
  font-weight: 700;
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #1A3855;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(26,56,85,0.07);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid #F3B13B;
  min-width: 240px;
  max-width: 540px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(26,56,85,0.12);
  transform: translateY(-2px) scale(1.01);
  border-color: #1A3855;
}
.testimonial-card .stars {
  font-size: 1.2rem;
  color: #FFD060;
  letter-spacing: 0.12em;
}
.testimonial-card .client {
  font-size: 1rem;
  color: #1A3855;
  font-weight: 600;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* CTA Section */
.cta {
  background: #F3B13B;
  color: #1A3855;
  border-radius: 42px;
  box-shadow: 0 2px 26px rgba(243,177,59,0.06);
  padding: 38px 22px 46px 22px;
}
.cta h2, .cta p {
  color: #1A3855;
}
.cta .cta.primary {
  background: #1A3855;
  color: #FFF;
  margin-top: 14px;
}
.cta .cta.primary:hover {
  background: #fff;
  color: #1A3855;
  border: 2px solid #1A3855;
}

/* Features/Benefits Lists */
.features ul, .about ul, .about-philosophy ul, .courses-features ul, .coaching-benefits ul, .online-benefits ul {
  list-style: none;
  margin: 18px 0 0 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.features ul li:before, .about ul li:before, .about-philosophy ul li:before, .courses-features ul li:before, .coaching-benefits ul li:before, .online-benefits ul li:before {
  content: '✓';
  color: #F3B13B;
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
  font-size: 1.1em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(26,56,85,0.06);
  background: #fff;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

/**** Contact Form Styling (if form is added later) ****/
.contact-form-block {
  background: #fff8ee;
  border-radius: 28px;
}
.direct-contact-info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #1A3855;
  gap: 11px;
  display: flex;
  flex-direction: column;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-top: 16px;
  color: #1A3855;
}

@media (max-width: 768px) {
  .section, .about, .about-philosophy, .features-team, .courses-features, .coaching-offers, .coaching-testimonials, .online-details, .online-benefits, .courses-overview, .contact-form-block, .features, .testimonials, .thank-you, .legal, .cta {
    padding: 26px 6px;
    margin-bottom: 42px;
    border-radius: 16px;
  }
  .container {
    padding: 0 5px;
  }
  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
    border-radius: 0 0 25px 25px;
  }
  .feature-grid, .service-list, .team-introductions {
    flex-direction: column;
    gap: 16px;
  }
  .features ul, .about ul, .about-philosophy ul, .courses-features ul, .coaching-benefits ul, .online-benefits ul {
    gap: 7px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .hero h1 {
    font-size: 1.28rem;
  }
  .features .feature-grid li, .service-list li, .team-member {
    min-width: 0;
    max-width: 100%;
    padding: 18px 8px 10px 12px;
  }
  .testimonial-card, .feature-grid li, .service-list li {
    min-width: 0;
    max-width: 100%;
    padding: 14px 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* BEFORE-AFTER SUMMARIES IN REFERENZEN */
.before-after-summaries {
  background: #fff8ee;
  border-radius: 18px;
  padding: 20px 18px;
  margin-top: 28px;
}
.before-after-summaries h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F3B13B;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.before-after-summaries ul {
  list-style: none;
  padding-left: 0;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.before-after-summaries ul li {
  font-size: 1rem;
  color: #1A3855;
}

/* LEGAL SECTION */
.legal {
  background: #f7fafd;
  border-radius: 26px;
}
.legal a {
  color: #F3B13B;
  text-decoration: underline;
}
.legal a:hover {
  color: #1A3855;
}

/* FOOTER */
footer {
  background: #1A3855;
  color: #fff;
  padding: 40px 0 28px 0;
  border-radius: 40px 40px 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px rgba(26,56,85,0.07);
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 800px;
}
.footer-nav a {
  color: #F3B13B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255,255,255,0.01);
  padding: 7px 10px;
  border-radius: 18px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover {
  background: #F3B13B;
  color: #1A3855;
}
.footer-contact {
  max-width: 250px;
  font-size: 0.98rem;
  line-height: 1.45;
  margin-top: 6px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-contact a:hover {
  color: #F3B13B;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: brightness(1) invert(0.12) sepia(0.7) saturate(8) hue-rotate(-25deg);
  transition: filter 0.16s, transform 0.13s;
}
.footer-social a:hover img {
  filter: brightness(1) invert(0.5) sepia(0.9) saturate(8) hue-rotate(22deg);
  transform: scale(1.11) rotate(-7deg);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 7px;
    margin-bottom: 12px;
  }
}

/**************** Cookie Consent Banner & Modal ****************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8ee;
  box-shadow: 0 -4px 18px rgba(26,56,85,0.14);
  z-index: 4000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 12px;
  gap: 20px;
  animation: cookieBannerIn 0.7s ease;
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(48px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  flex: 1 1 auto;
  color: #1A3855;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 8px 16px;
  border: none;
  border-radius: 40px;
  background: #F3B13B;
  color: #1A3855;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
  margin-right: 2px;
  margin-bottom: 2px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1A3855;
  color: #fff;
  box-shadow: 0 3px 14px #F3B13B22;
}
.cookie-btn.settings {
  background: #fff;
  color: #F3B13B;
  border: 2px solid #F3B13B;
}
.cookie-btn.settings:hover {
  background: #F3B13B;
  color: #fff;
}

/******** Cookie Modal ******/
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,56,85,0.45);
  z-index: 4400;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.6s ease;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff8ee;
  color: #1A3855;
  border-radius: 26px;
  box-shadow: 0 8px 54px rgba(26,56,85,0.16);
  max-width: 410px;
  width: 94vw;
  padding: 34px 24px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn 0.5s cubic-bezier(.7,0,.3,1);
}
@keyframes modalPopIn {
  0% { transform: scale(0.84) translateY(40px); opacity: 0; }
  80% { transform: scale(1.03) translateY(-6px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  color: #1A3855;
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-modal-category label {
  font-weight: 600;
  color: #1A3855;
  cursor: pointer;
}
.cookie-modal-category input[type=checkbox] {
  accent-color: #F3B13B;
  width: 1.2em;
  height: 1.2em;
}
.cookie-modal-category .essential {
  font-style: italic;
  color: #7c7c7c;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  color: #F3B13B;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 1;
}
.cookie-modal-close:hover {
  color: #1A3855;
}

/******** TRANSITIONS & HOVER EFFECTS FOR INTERACTIONS ********/
button,
.cta.primary,
.cookie-btn {
  transition: all 0.14s cubic-bezier(.41,.8,.49,1);
}

/* Special artistic elements */
.features .feature-grid li:after, .about .team-member:after {
  content: '';
  display: block;
  width: 32px;
  height: 4px;
  background: #F3B13B;
  border-radius: 2px;
  margin-top: 14px;
  opacity: 0.2;
}
.features .feature-grid li:hover:after, .about .team-member:hover:after {
  opacity: 0.5;
}

/**************** MISC. FORMS, OL, etc. ****************/
ol {
  padding-left: 18px;
  margin-bottom: 14px;
}

/***************** Thank You Section *****************/
.thank-you {
  margin: 60px 0;
  background: #F3B13B11;
  border-radius: 22px;
  text-align: center;
}
.thank-you h1 {
  color: #F3B13B;
  font-size: 2rem;
  margin-bottom: 12px;
}
.thank-you p {
  color: #1A3855;
}
.thank-you .cta.primary {
  margin-top: 20px;
  font-size: 1.1rem;
}

/***************** Responsive Hamburger Menu Fix ****************/
@media (max-width: 1050px) {
  .footer-social {
    margin-top: 12px;
  }
}

/**** Extra Accessibility, Spacing Adjustments ****/
*:focus-visible {
  outline: 2px solid #F3B13B;
  outline-offset: 2px;
}

/* Z-INDEX HIERARCHY */
header,
footer,
.hero,
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 1000;
}

/**** Hide Default Inputs on Cookie Modal if wanted ****/
.cookie-modal-category input[disabled] {
  opacity: 0.6;
}

/**** Hide cookies banner if accepted (to be handled by js) ****/
.cookie-banner.hidden {
  display: none !important;
}

/**** Hide modal for cookie (to be handled by js) ****/
.cookie-modal-overlay.hidden {
  display: none !important;
}
