/* ===========================================================
   CSS RESET (Normalize + Minimalist improvements)
   =========================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  background: #FFFFFF;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
}

/* ========== BRAND TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #476D5B;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 18px;
  color: #223027;
}

.section > .container > .content-wrapper > h2,
.section > .container > h2 {
  margin-bottom: 28px;
}

/* ========== LAYOUT & SPACING RULES ========== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(71,109,91,0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(103,72,132,0.16), 0 1.5px 6px 0 rgba(71,109,91,0.11);
}
.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 {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(103,72,132,0.09);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #223027;
  max-width: 520px;
  min-width: 0;
}
.testimonial-card p {
  margin-bottom: 6px;
  color: #223027;
  font-size: 1.07em;
}
.testimonial-card span {
  color: #676768;
  font-size: 0.98em;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05em;
  margin-bottom: 12px;
  color: #476D5B;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #FFFFFF;
  border-bottom: 1.5px solid #E7E4D5;
  box-shadow: 0 1.5px 6px 0 rgba(71,109,91,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #476D5B;
  opacity: 0.74;
  padding: 5px 2px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s, opacity 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #E7E4D5;
  color: #674884;
  opacity: 1;
  outline: none;
}
header img[alt="GlanzBlüte Yoga"] {
  height: 44px;
  min-width: 44px;
}

.cta-btn {
  display: inline-block;
  background: #476D5B;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 13px 36px;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(71,109,91,0.085);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  margin-left: 12px;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #674884;
  color: #fff;
  box-shadow: 0 5px 20px 0 rgba(103,72,132,0.14);
}

/* Mobile menu hamburger button */
.mobile-menu-toggle {
  font-size: 2.1rem;
  background: none;
  color: #476D5B;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  line-height: 1;
  display: none;
  border-radius: 8px;
  transition: background 0.18s;
  position: relative;
  z-index: 151;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E7E4D5;
}

/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 150;
  transform: translateX(-110%);
  transition: transform 0.37s cubic-bezier(.89,-0.05,.58,1.08);
  box-shadow: 0 8px 18px rgba(71,109,91,0.08), 0 2px 10px rgba(103,72,132,0.08);
  padding: 28px 0 24px 0;
  opacity: 1;
  min-width: 210px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.25rem;
  color: #476D5B;
  align-self: flex-end;
  margin: 0 24px 14px 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px 12px;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E7E4D5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
  align-items: flex-start;
  padding: 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  padding: 10px 4px;
  color: #476D5B;
  opacity: 0.93;
  border-radius: 7px;
  width: 100%;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7E4D5;
  color: #674884;
}

/* Hide main navigation + show burger on mobile */
@media (max-width: 1024px) {
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========== MAIN CONTENT & PAGE SECTIONS ========== */
main {
  margin-top: 0;
  margin-bottom: 50px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper > ul,
.content-wrapper > .text-section,
.content-wrapper > table {
  margin-bottom: 16px;
}

/* Minimalist, generous spacing between content elements */
.content-wrapper > *:not(:last-child) {
  margin-bottom: 22px;
}
.card-container .card, .content-grid > *, .feature-item {
  margin-bottom: 20px;
}
.content-grid > * {
  flex: 1 1 320px;
}

.text-section img {
  margin-right: 8px;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  display: inline-block;
}

/* ========== TABLES ========== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(71,109,91,0.06);
  margin-bottom: 20px;
}
thead {
  background: #E7E4D5;
}
th, td {
  text-align: left;
  padding: 14px 12px;
  font-size: 1.02em;
  border-bottom: 1px solid #F4F4F4;
}
th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #476D5B;
}
tr:last-child td {
  border-bottom: none;
}

/* ========== FOOTER ========== */
footer {
  background: #FAFAF8;
  border-top: 1.5px solid #E7E4D5;
  color: #6E726F;
  padding: 32px 0 12px 0;
  font-size: 0.99em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  gap: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
}
footer nav a {
  color: #476D5B;
  opacity: 0.8;
  transition: color 0.16s, opacity 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #674884;
  opacity: 1;
}
footer p {
  color: #A8A89C;
  font-size: 0.97em;
  letter-spacing: 0.015em;
  margin-bottom: 0;
}

/* ========== BUTTONS ========== */
button,
input[type="submit"],
input[type="button"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background: #476D5B;
  color: #fff;
  padding: 11px 32px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  outline: none;
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #674884;
  color: #fff;
  box-shadow: 0 3px 15px 0 rgba(103,72,132,0.13);
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1.5px solid #E7E4D5;
  box-shadow: 0 -2px 20px 0 rgba(71,109,91,0.10);
  padding: 18px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 4000;
  animation: fadeIn-cookie 0.8s cubic-bezier(.79,0,.24,1);
}
@keyframes fadeIn-cookie {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  color: #223027;
  font-size: 1.02em;
  margin-bottom: 6px;
  text-align: center;
}
.cookie-banner-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.cookie-banner-btn, .cookie-settings-btn {
  background: #476D5B;
  color: #fff;
  border-radius: 24px;
  padding: 9px 25px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.14s;
}
.cookie-settings-btn {
  background: #E7E4D5;
  color: #476D5B;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: #674884;
}
.cookie-settings-btn:focus, .cookie-settings-btn:hover {
  background: #b8a2c83b;
  color: #674884;
}

.cookie-consent-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 32, 39, 0.44);
  z-index: 4200;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn-cookie .3s cubic-bezier(.78,0,.14,1);
  padding: 20px;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 430px;
  width: 100%;
  box-shadow: 0 16px 54px 0 rgba(103,72,132,0.17);
  padding: 38px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeIn-modal .17s cubic-bezier(.78,0,.14,1);
}
@keyframes fadeIn-modal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1);
  }
}

.cookie-modal-content h3 {
  margin-bottom: 16px;
  color: #476D5B;
  font-size: 1.18rem;
}
.cookie-modal-content label {
  font-size: 1.02em;
  color: #223027;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-modal-category {
  padding: 12px 0;
  border-bottom: 1px solid #E7E4D5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #674884;
  width: 20px;
  height: 20px;
}
.cookie-modal-btn-group {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}

/* Essential cookies - appear disabled */
.cookie-modal-category input[disabled] + label,
.cookie-modal-category input[disabled] {
  opacity: 0.55;
  pointer-events: none;
}

/* Hide the modal overlay by default (add 'open' for visible) */
.cookie-consent-modal {
  display: none;
}
.cookie-consent-modal.open {
  display: flex;
}

/* ========== MICRO-INTERACTIONS/ TRANSITIONS ========== */
.card, .testimonial-card, .cta-btn, .cookie-banner-btn, .cookie-settings-btn, .card-container .card {
  transition: box-shadow 0.22s, background 0.15s, color 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 38px 0 rgba(71,109,91,0.11);
}
.content-wrapper .cta-btn {
  margin-top: 14px;
}
.text-section img {
  filter: grayscale(44%) opacity(0.75);
  transition: filter 0.2s;
}
.text-section img:hover {
  filter: grayscale(4%) opacity(1);
}

/* Misc small elements for minimalist tag/label design */
.text-section span, .blog .text-section span, .faqs .text-section span {
  background: #E7E4D5;
  color: #476D5B;
  border-radius: 7px;
  font-size: 0.97em;
  padding: 2.5px 9px;
  margin-right: 7px;
  margin-bottom: 4px;
  display: inline-block;
}

/* ========== RESPONSIVE DESIGN: MOBILE-FIRST ADJUSTMENTS ========== */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  h1 {
    font-size: 1.68rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .section, section {
    padding: 32px 0 32px 0;
    margin-bottom: 40px;
  }
  .card {
    padding: 20px 12px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 5vw;
  }
  .content-wrapper,
  .card-container, .content-grid, .feature-item {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .testimonial-card {
    max-width: 98vw;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
  }
  header .container {
    min-height: 58px;
    padding: 0 8px;
    gap: 16px;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .section, section {
    padding: 26px 0 26px 0;
    margin-bottom: 22px;
  }
  .card, .testimonial-card {
    padding: 14px 9px;
  }
  footer .container {
    gap: 9px;
    padding: 0 5vw;
  }
  .cookie-consent-banner {
    padding: 14px 12px 16px 12px;
    font-size: 0.97em;
  }
  .cookie-modal-content {
    padding: 18px 6vw 18px 6vw;
    max-width: 94vw;
  }
}

@media (max-width: 460px) {
  .container {
    padding: 0 2vw;
  }
  .cta-btn {
    padding: 10px 16px;
    font-size: 0.97rem;
  }
  .cookie-consent-banner {
    padding: 10px 2vw;
  }
}

/* ========== SCROLLBAR MINIMALIST STYLING ========== */
body {
  scrollbar-color: #E7E4D5 #f5f5f5;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  background: #fafaf8;
}
::-webkit-scrollbar-thumb {
  background: #E7E4D5;
  border-radius: 14px;
}

/* ========== UTILITIES ========== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========== END OF CSS ========== */
