/* ===== WinterFlamme Coaching – Minimalist Brand 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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #254163;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #254163;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D96941;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  border: none;
}
ul, ol {
  margin-left: 2em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #254163;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.1rem;
  color: #254163;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
blockquote {
  font-style: italic;
  border-left: 3px solid #254163;
  margin: 24px 0 20px 0;
  padding-left: 18px;
  color: #254163;
  background: #f6f8fa;
  border-radius: 8px;
}

/* Layout Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(37, 65, 99, 0.06);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
}

/* Cards and Grids */
.card-container, .card-grid, .feature_grid, .detailed_service_grid, .post_list_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .feature, .service-card, .post {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37, 65, 99, 0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 0;
  transition: box-shadow 0.2s;
  position: relative;
}
.card:hover, .feature:hover, .service-card:hover, .post:hover {
  box-shadow: 0 6px 24px rgba(217, 105, 65, 0.09);
  z-index: 1;
}

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

.detailed_service_grid, .feature_grid, .post_list_grid {
  gap: 24px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  max-width: 350px;
}
.badge {
  background: #254163;
  color: #fff;
  font-size: 0.92rem;
  border-radius: 16px;
  padding: 4px 16px;
  align-self: flex-start;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
  .card-container, .card-grid, .feature_grid, .detailed_service_grid, .post_list_grid {
    flex-direction: column;
    gap: 16px;
  }
  .card, .feature, .service-card, .post {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/****** Buttons *******/
.cta, .cta.primary, button, input[type="submit"] {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid #254163;
  color: #254163;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(37, 65, 99, 0.06);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  margin-bottom: 6px;
}
.cta.primary, .cta.primary:visited, input[type="submit"].primary {
  background: #254163;
  color: #fff;
  border-color: #254163;
}
.cta:hover, .cta.primary:hover, button:hover, input[type="submit"]:hover {
  background: #D96941;
  color: #fff;
  border-color: #D96941;
  box-shadow: 0 4px 18px rgba(217,105,65,0.09);
  text-decoration: none;
}
.cta:focus, button:focus, input[type="submit"]:focus {
  outline: 2px solid #254163;
  outline-offset: 2px;
}

/****** Header & Navigation ******/
header {
  position: relative;
  padding-top: 16px;
  background: #fff;
  z-index: 30;
  box-shadow: 0 1px 8px rgba(37, 65, 99, 0.05);
  margin-bottom: 18px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #254163;
  padding: 7px 8px;
  border-radius: 0px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #D96941;
}

header .cta.primary {
  margin-left: 20px;
}

@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .main-nav, header .cta.primary {
    display: none !important;
  }
}

/****** Mobile Navigation ******/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #254163;
  cursor: pointer;
  z-index: 41;
  margin-left: auto;
  transition: color 0.2s;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 28px;
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: rgba(37, 65, 99, 0.95);
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  position: absolute;
  top: 32px;
  right: 32px;
  cursor: pointer;
  z-index: 101;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 90px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  padding: 8px 7px;
  border-radius: 2px;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D96941;
}
@media (max-width: 480px) {
  .mobile-nav {
    margin: 70px 0 0 14px;
  }
  .mobile-menu-close {
    top: 16px;
    right: 16px;
  }
}

/****** Footer ******/
footer {
  background: #f8fafb;
  color: #254163;
  padding: 28px 0 10px 0;
  border-top: 1px solid #eaeef0;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #254163;
  opacity: 0.8;
  font-weight: 500;
  transition: color 0.18s, opacity 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D96941;
  opacity: 1;
}
footer p {
  line-height: 1.3;
  opacity: 0.88;
  margin: 4px 0 0 0;
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}

/****** Testimonials ******/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #f8fafb;
  color: #254163;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37, 65, 99, 0.05);
  margin-bottom: 20px;
  padding: 20px;
  min-width: 0;
  max-width: 700px;
  font-size: 1.07rem;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(217, 105, 65, 0.08);
}
.testimonial-author {
  font-weight: 600;
  color: #D96941;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.star-rating {
  color: #D96941;
  font-size: 1.2rem;
  margin-left: -1px;
}

/****** Feature/Benefit/FAQ lists ******/
.feature-item, .benefit-list li, .values_list li, .value_proposition_list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.benefit-list, .values_list, .value_proposition_list, .service_comparison ul, .what_is_included ul, .investment_retour ul, .next_steps ul {
  list-style-type: disc;
  padding-left: 1.4em;
}

/****** Accordions/FAQ ******/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(37, 65, 99, 0.06);
  padding: 16px 20px;
}
.faq-item h3 {
  font-size: 1.07rem;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 0.99rem;
  color: #254163;
}

/****** Pricing Table *******/
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(37, 65, 99, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 16px 14px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.pricing-table th {
  background: #f6f8fa;
  color: #254163;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
}
.pricing-table tr:nth-child(even) {
  background: #fafbfc;
}
.pricing-table tr:nth-child(odd) {
  background: #fff;
}
@media (max-width: 720px) {
  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table th,
  .pricing-table td,
  .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table td {
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid #eef1f3;
  }
}

/****** Utility Styles ******/
.personal_statement {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: #254163;
  background: #f8fafb;
  border-radius: 10px;
  padding: 10px 16px;
  font-style: italic;
  margin-bottom: 18px;
}
.contact-snippet {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 1rem;
}
.contact-snippet img {
  width: 22px;
  margin-right: 5px;
  vertical-align: middle;
}
.contact-snippet a {
  font-weight: 500;
}
.next_steps ul {
  font-size: 1rem;
  margin-top: 8px;
}
.map_location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #254163;
}
.map_location img {
  width: 30px;
  height: auto;
}

/****** Post/Blog ******/
.featured-post {
  background: #f6f8fa;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.categories_filter {
  display: flex;
  gap: 6px;
  font-size: 0.99rem;
  margin: 14px 0 0 0;
  align-items: center;
  color: #254163;
  opacity: 0.89;
  flex-wrap: wrap;
}
.categories_filter a {
  color: #D96941;
  font-weight: 500;
  opacity: 0.95;
  text-decoration: underline;
}
.newsletter_cta {
  font-size: 1rem;
  color: #254163;
  margin-bottom: 12px;
}
.signup_form {
  background: #f8fafb;
  border-radius: 9px;
  padding: 12px 15px;
}

/****** Coach Profile ******/
.coach-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f6f8fa;
  border-radius: 14px;
  padding: 18px 18px 10px 12px;
  margin-top: 12px;
  margin-bottom: 18px;
  box-shadow: 0 1px 9px rgba(37,65,99,0.042);
}
.coach-profile img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 50%;
}
.coach-profile h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.values_list {
  margin-top: 6px;
  padding-left: 18px;
  font-size: 0.99rem;
}

/****** Cookie Banner & Modal ******/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(37, 65, 99, 0.12);
  border-top: 1px solid #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 8vw 18px 8vw;
  z-index: 2000;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.22s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  min-width: 100px;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  border: 2px solid #254163;
  color: #254163;
}
.cookie-banner .cookie-accept-btn {
  background: #254163;
  color: #fff;
  border: 2px solid #254163;
}
.cookie-banner .cookie-reject-btn {
  background: #D96941;
  color: #fff;
  border: 2px solid #D96941;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  opacity: 0.89;
  background: #f8fafb;
  color: #254163;
  border-color: #254163;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 18px;
  }
  .cookie-banner .cookie-buttons {
    gap: 7px;
  }
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(37, 65, 99, 0.72);
  z-index: 2100;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 410px;
  width: 94vw;
  padding: 30px 26px 22px 26px;
  box-shadow: 0 8px 48px rgba(37,65,99,0.18);
  animation: fadeInScale 0.32s cubic-bezier(.77,0,.18,1) 1;
  position: relative;
}
@keyframes fadeInScale {
  from {
    opacity:0; transform: scale(0.97);
  }
  to {
    opacity: 1; transform: scale(1);
  }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #254163;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #254163;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  min-width: 96px;
  font-size: 0.98rem;
}

/****** Misc micro-interactions & transitions ******/
button, .cta, .cta.primary, input[type="submit"] {
  transition: background 0.14s, color 0.18s, box-shadow 0.15s, border-color 0.18s;
}
section, .card, .feature, .service-card, .post, .faq-item, .testimonial-card {
  transition: box-shadow 0.18s, background 0.19s;
}

/****** Responsive Typography ******/
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
  .subheadline,
  .testimonial-card,
  .cookie-banner { font-size: 0.97rem; }
}

/****** Contact details special for Kontaktseite ******/
.contact-details {
  font-size: 1rem;
  line-height: 1.8;
  background: #f8fafb;
  border-radius: 10px;
  padding: 18px 18px 10px 18px;
  color: #254163;
  margin-bottom: 8px;
}
@media (min-width: 601px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: flex-start;
  }
  .content-wrapper > * {
    flex: 1;
  }
}
/******************* End *******************/
