/* Helder Zicht Yoga - Scandinavian Clean CSS Style */

/************************************
* CSS RESET & NORMALIZATION         *
*************************************/
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;
}

*, *::before, *::after {
  box-sizing: inherit;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3EDDF;
  color: #205B4B;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205B4B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E9C46A;
  outline: none;
}

ul, ol {
  padding-left: 1.2em;
}
strong {
  font-weight: 700;
}

/************************************
* TYPOGRAPHY SCALE                  *
*************************************/
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #205B4B;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #205B4B;
  margin-bottom: 14px;
  letter-spacing: -0.008em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #205B4B;
  margin-bottom: 10px;
}
h4, .h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, li, address {
  font-size: 1rem;
  color: #205B4B;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #205B4B;
  border-left: 4px solid #E9C46A;
  margin: 0 0 10px 0;
  padding-left: 18px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(32,91,75,0.06);
}

/************************************
* HEADER & NAVIGATION               *
*************************************/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(32,91,75,0.06);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  gap: 0;
}
header img {
  height: 44px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3EDDF;
  color: #205B4B;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #205B4B;
  color: #fff;
  padding: 10px 28px;
  border: none;
  border-radius: 32px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(32,91,75,0.04);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.2s, color 0.17s;
  margin-left: 18px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E9C46A;
  color: #205B4B;
  box-shadow: 0 4px 16px rgba(32,91,75,0.08);
  outline: none;
}

/*****************************************
* BURGER MOBILE MENU                     *
*****************************************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #205B4B;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  z-index: 1202;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(243,237,223,0.97);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.69,.01,.47,1.13);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 2px 0 32px rgba(32,91,75,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #205B4B;
  font-size: 2.1rem;
  padding: 20px 28px 12px 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1203;
}
.mobile-menu-close:focus {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 16px 38px 38px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #205B4B;
  padding: 10px 0;
  font-weight: 500;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9C46A;
  color: #205B4B;
}

/************************************
* HERO SECTION                      *
*************************************/
.hero {
  min-height: 340px;
  background: #F3EDDF url('../assets/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 28px rgba(32,91,75,0.09);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.89);
  padding: 38px 30px 38px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(233,196,106,0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
  margin-top: 30px;
}

/************************************
* FEATURES SECTION                  *
*************************************/
.features .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 24px;
  list-style: none;
  justify-content: flex-start;
}
.features .content-wrapper > ul > li {
  background: #fff;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(32,91,75,0.07);
  padding: 30px 24px 24px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.features .content-wrapper > ul > li:hover {
  box-shadow: 0 6px 22px rgba(32,91,75,0.11);
  transform: translateY(-3px) scale(1.03);
}
.features .content-wrapper > ul img {
  height: 34px;
  width: 34px;
  margin-bottom: 6px;
}
.features .content-wrapper > ul strong {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}

/************************************
* ABOUT PREVIEW                     *
*************************************/
.about-preview .container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32,91,75,0.06);
  margin-bottom: 32px;
}
.about-preview .content-wrapper a {
  color: #205B4B;
  font-weight: 600;
  text-decoration: underline;
}
.about-preview .content-wrapper a:hover {
  color: #E9C46A;
}

/************************************
* SERVICES PREVIEW                  *
*************************************/
.services-preview .container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 20px 0;
  list-style: none;
}
.services-preview .container ul li {
  background: #f7f4ed;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205B4B;
  font-size: 1.1rem;
  box-shadow: 0 0px 7px rgba(32,91,75,0.05);
  transition: box-shadow 0.14s;
}
.services-preview .container ul li:hover {
  box-shadow: 0 4px 18px rgba(233,196,106,0.18);
}
.services-preview .container ul img {
  height: 24px;
}
.services-preview .content-wrapper > a {
  margin-top: 16px;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205B4B;
  font-weight: 600;
  transition: color 0.18s;
}
.services-preview .content-wrapper > a:hover {
  color: #E9C46A;
}

/*********************************
* TESTIMONIALS                   *
**********************************/
.testimonials {
  background: #F8F5EF;
  padding: 40px 0;
  border-radius: 20px;
  margin-bottom: 54px;
}
.testimonials .container {
  flex-direction: column;
  gap: 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 24px 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(32,91,75,0.11);
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 24px rgba(32,91,75,0.12);
}
.testimonial-card blockquote {
  margin-bottom: 8px;
  color: #205B4B;
  font-size: 1.12rem;
  line-height: 1.6;
}
.testimonial-card span {
  color: #205B4B;
  font-size: 0.96rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.77;
}

/**********************************
* CTA SECTION                     *
***********************************/
.cta {
  background: #205B4B;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
}
.cta .container {
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta h2, .cta p, .cta a {
  color: #fff;
}
.cta a.cta-btn {
  background: #E9C46A;
  color: #205B4B;
  margin: 12px 0 0 0;
}
.cta a.cta-btn:hover {
  background: #fff;
  color: #205B4B;
}

/*********************************
* INFO, CONTACT, VISIT SECTIONS  *
**********************************/
.info, .contact, .visit, .about, .services, .events, .pricing, .schedule, .success, .legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32,91,75,0.06);
  margin-bottom: 60px;
  padding: 40px 22px;
}
.info .content-wrapper > ul,
.contact .content-wrapper > ul,
.visit .content-wrapper > ul,
.legal .content-wrapper > ul {
  margin: 18px 0;
}
.info .content-wrapper > ul > li,
.contact .content-wrapper > ul > li,
.visit .content-wrapper > ul > li {
  margin-bottom: 12px;
}

/************************************
* TEAM & ABOUT PAGES                *
*************************************/
.team .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

/************************************
* SCHEDULE (TABLE)                  *
*************************************/
.schedule table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  box-shadow: 0 1px 10px rgba(32,91,75,0.06);
  margin: 18px 0 12px 0;
  font-size: 1rem;
  background: #F8F5EF;
  overflow: hidden;
}
.schedule th, .schedule td {
  padding: 14px 12px;
  border-bottom: 1px solid #E9C46A;
  color: #205B4B;
  white-space: nowrap;
}
.schedule th {
  background: #E9C46A;
  color: #205B4B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
}
.schedule tr:last-child td {
  border-bottom: none;
}

/************************************
* FOOTER STYLES                     *
*************************************/
footer {
  background: #F3EDDF;
  padding: 26px 0 15px 0;
  border-top: 1px solid #E9C46A;
}
footer .container {
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #205B4B;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E9C46A;
}
footer address {
  font-style: normal;
  color: #205B4B;
  font-size: 0.98rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
footer p {
  color: #205B4B;
  opacity: 0.58;
  font-size: 0.96rem;
}

/************************************
* CARD CONTAINERS & FLEX LAYOUTS    *
*************************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative; /* only for decorative icons */
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(32,91,75,0.07);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(32,91,75,0.15);
  transform: translateY(-2px) scale(1.01);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/************************************
* COOKIE CONSENT BANNER             *
*************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #205B4B;
  box-shadow: 0 -2px 22px rgba(32,91,75,0.13);
  padding: 22px 20px 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  z-index: 1999;
  border-radius: 16px 16px 0 0;
  transition: transform 0.34s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.45;
  color: #205B4B;
}
.cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  appearance: none;
  border-radius: 24px;
  background: #205B4B;
  color: #fff;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(32,91,75,0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E9C46A;
  color: #205B4B;
}
.cookie-btn.cookie-settings {
  background: #E9C46A;
  color: #205B4B;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #205B4B;
  color: #fff;
}

/************************************
* COOKIE MODAL (PREFERENCES)        *
*************************************/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32,91,75,0.25);
  z-index: 2002;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px 28px 28px;
  max-width: 380px;
  width: 94vw;
  box-shadow: 0 8px 36px rgba(32,91,75,0.11);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modal-appear 0.45s cubic-bezier(.70,1.34,.53,1.02) forwards;
}
@keyframes modal-appear {
  from { transform: translateY(48px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.37rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205B4B;
  font-weight: 700;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.45rem;
  background: none;
  border: none;
  color: #205B4B;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-close:focus {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 11px;
  color: #205B4B;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  border-radius: 11px;
  background: #E9C46A;
  position: relative;
  outline: none;
  transition: background 0.18s;
  margin-left: 5px;
  cursor: pointer;
  border: none;
}
.cookie-toggle:checked {
  background: #205B4B;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(14px);
}

.cookie-info {
  font-size: 0.96rem;
  color: #256b53;
  margin-top: 6px;
}

/************************************
* BUTTONS & CTAS                    *
*************************************/
button, input[type=button], input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 9px 22px;
  transition: background 0.19s, color 0.19s, box-shadow 0.24s;
  outline: none;
  background: #205B4B;
  color: #fff;
}
button:hover, input[type=button]:hover, input[type=submit]:hover {
  background: #E9C46A;
  color: #205B4B;
  box-shadow: 0 2px 14px rgba(233,196,106,0.13);
}

/************************************
* FORM ELEMENTS                     *
*************************************/
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #E9C46A;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f7f4ed;
  color: #205B4B;
  transition: box-shadow 0.17s, border 0.17s;
  margin-bottom: 12px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #205B4B;
  box-shadow: 0 0 0 2px #205B4B33;
}
label {
  font-weight: 600;
  color: #205B4B;
  margin-bottom: 5px;
  display: block;
}

/************************************
* RESPONSIVE DESIGN (MOBILE-FIRST)  *
*************************************/
/* Default: mobile (column layouts) */
.container,
.content-wrapper,
.footer-nav,
.card-container,
.content-grid,
.text-image-section,
.features .content-wrapper > ul,
.services-preview .container ul,
.testimonials .content-wrapper {
  flex-direction: column;
  gap: 20px;
}

.main-nav {
  display: none;
}

@media (max-width: 768px) {
  body, .section, .info, .contact, .visit, .about, .services, .events, .pricing, .schedule, .success, .legal {
    padding: 28px 6vw 22px 6vw;
  }
  .hero .content-wrapper {
    padding: 24px 10px;
    max-width: 98vw;
    margin-top: 12px;
  }
  .features .content-wrapper > ul > li,
  .services-preview .container ul li,
  .testimonial-card,
  .card {
    max-width: 100vw;
    min-width: 0;
    width: 100%;
    flex-basis: 100%;
  }
  .cta .content-wrapper {
    padding: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  .container {
    flex-direction: row;
    align-items: center;
  }
  .content-wrapper {
    flex-direction: column;
  }
  .footer-nav {
    flex-direction: row;
    gap: 21px;
  }
  .features .content-wrapper > ul,
  .services-preview .container ul,
  .testimonials .content-wrapper,
  .card-container,
  .content-grid,
  .text-image-section {
    flex-direction: row;
    gap: 24px;
  }
  .text-image-section {
    align-items: center;
  }
}

/* Even larger screens */
@media (min-width: 1140px) {
  .container {
    max-width: 1140px;
    padding: 0 32px;
  }
}

/************************************
* ACCESSIBILITY & UTILITIES         *
*************************************/
:focus {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
}
.hidden {
  display: none !important;
}

/* SCROLLBAR (subtle, for webkit browsers) */
::-webkit-scrollbar {
  width: 12px;
  background: #f3eddf;
}
::-webkit-scrollbar-thumb {
  background: #E9C46A;
  border-radius: 10px;
}

/************************************
* BRAND FONTS (Google Fonts Fallback)
*************************************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
