/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  color: #263142;
  background: #f7f9fa;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #274070;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #945B38;
}
ul, ol {
  padding-left: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', "Times New Roman", serif;
  color: #263142;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
}

/* HEADER + NAVIGATION */
header {
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(36, 49, 66, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header {
  padding: 0;
}
header .logo-link {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 20px;
  float: left;
}
header .logo-link img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 40px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #29415B;
  font-weight: 500;
  padding: 16px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #945B38;
}
.cta-btn.primary {
  margin-left: auto;
  margin-right: 24px;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

/* MOBILE MENU  */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #29415B;
  margin-left: 16px;
  cursor: pointer;
  z-index: 40;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #945B38;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: rgba(249, 250, 251, 0.98);
  width: 100vw;
  max-width: 100vw;
  z-index: 90;
  transition: transform 0.35s cubic-bezier(0.68,.18,0.265,1.53);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: -6px 0 16px rgba(36,49,66,0.08);
  pointer-events: none;
  opacity: 0;
  transform: translateX(0);
}
.mobile-menu.open {
  left: 0;
  opacity: 1;
  transform: translateX(-100vw);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #29415B;
  background: none;
  border: none;
  padding: 24px 24px 8px 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #945B38;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 16px 36px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #263142;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #e0e6ed;
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #945B38;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 24px;
    margin-left: 16px;
  }
  .cta-btn.primary {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 900px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 0 0 0 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  header {
    min-height: 56px;
  }
  .logo-link img {
    height: 40px;
  }
}

/* BUTTONS */
.cta-btn,
button,
input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #945B38;
  color: #fff;
  box-shadow: 0 1px 3px rgba(36,49,66,0.05);
  transition: background 0.18s, box-shadow 0.18s, color 0.15s, transform 0.17s;
  text-align: center;
  min-width: 120px;
  line-height: 1.3;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #7A4A2F;
  color: #fff;
  box-shadow: 0 3px 14px 0 rgba(123,74,47,0.18);
  transform: translateY(-1px) scale(1.03);
}
.cta-btn.secondary {
  background: #29415B;
  color: #fff;
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: #945B38;
  color: #fff;
}

/* SECTIONS & FLEX LAYOUTS */
.section,
.hero-section,
.features-section,
.services-section,
.cta-section,
.thank-you-section,
.testimonials-section,
.blog-section,
.about-section,
.workshops-section,
.cookies-section,
.policy-section,
.terms-section,
.rodo-section,
.contact-section,
.opening-hours-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(43,64,104,0.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* CARD CONTAINER & CARDS */
.card-container,
.feature-grid,
.blog-post-list,
.values-list,
.service-list,
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.card,
.feature-item,
.values-list li,
.service-list li,
.workshop-list li,
.blog-post-list li {
  margin-bottom: 20px;
  background: #f7f9fa;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px 0 rgba(43,64,104,0.061);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px 20px 22px;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover,
.feature-item:hover,
.service-list li:hover,
.blog-post-list li:hover {
  box-shadow: 0 4px 32px 0 rgba(123,74,47,0.17);
  transform: translateY(-2px) scale(1.01);
}

.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #f3e2cc;
  border-radius: 11px;
  padding: 24px 20px 16px 20px;
  min-width: 210px;
  flex: 1 1 250px;
  box-shadow: none;
}
.feature-grid li img {
  height: 45px;
  width: 45px;
  margin-bottom: 6px;
}
.feature-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #29415B;
}
.feature-grid p {
  font-size: 1rem;
}
.values-list {
  gap: 12px;
}
.values-list li {
  padding: 14px 14px;
  background: #eeece8;
  border-left: 5px solid #945B38;
  font-size: 1rem;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: none;
}

.service-list li,
.workshop-list li {
  background: #F3E2CC;
  border-left: 5px solid #945B38;
  /* Price highlight */
}
.service-list li .price,
.workshop-list li .price {
  font-size: 1.12rem;
  color: #50592B;
  font-weight: 700;
  background: #fff;
  border-radius: 5px;
  padding: 4px 10px;
  margin-top: 10px;
  box-shadow: 0 1px 4px rgba(36,49,66,0.05);
  display: inline-block;
}

/* BLOG TAG */
.tag {
  display: inline-block;
  background: #945B38;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.9rem;
  border-radius: 5px;
  padding: 2px 12px;
  margin-bottom: 8px;
}

/* TESTIMONIALS */
.testimonials-section h2 {
  margin-bottom: 36px;
}
.testimonials-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 18px 26px;
  background: #f7f9fa;
  border-radius: 18px;
  min-width: 270px;
  flex: 1 1 320px;
  box-shadow: 0 1.5px 12px 0 rgba(36,49,66,0.07);
  margin-bottom: 20px;
  border-left: 6px solid #945B38;
}
.testimonial-card blockquote {
  color: #263142;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  quotes: "\201E" "\201D"
          "\2018" "\2019";
  padding-left: 4px;
  margin-bottom: 4px;
}
.testimonial-card .customer {
  font-size: 1rem;
  color: #6c737c;
  letter-spacing: 0.04em;
  font-family: 'Lato', Arial, sans-serif;
}
.testimonial-card .stars {
  color: #F1B20C;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

/* CTA SECTION */
.cta-section {
  background: #f3e2cc;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(43,64,104,0.05);
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
  padding: 40px 16px;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 12px;
}
.cta-section h2 {
  text-align: center;
  color: #29415B;
}
.cta-section p {
  text-align: center;
}
.cta-section.newsletter .newsletter-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .cta-section.newsletter .newsletter-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FLEX-PATTERN-BASED CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item,
.values-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 992px) {
  .feature-grid,
  .service-list,
  .blog-post-list,
  .workshop-list,
  .testimonials-section .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .card, .feature-grid li,
  .values-list li, .service-list li, .workshop-list li, .blog-post-list li {
    min-width: 88vw;
    flex: 1 1 90vw;
    padding: 15px 10px 12px 10px;
  }
  .section, .hero-section, .features-section, .services-section, .cta-section, .thank-you-section, .testimonials-section, .blog-section, .about-section, .workshops-section, .cookies-section, .policy-section, .terms-section, .rodo-section, .contact-section, .opening-hours-section {
    padding: 23px 2vw;
    margin-bottom: 32px;
    border-radius: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card-container, .feature-grid, .values-list, .service-list, .workshop-list, .blog-post-list {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials-section .content-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}

/* FOOTER */
footer {
  background: #29415B;
  color: #fff;
  padding: 36px 0;
  border-top: 1px solid #C8CFDB;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 26px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.94;
  transition: color 0.19s, opacity 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #F1B20C;
  opacity: 1;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 0.97rem;
  opacity: 0.85;
  color: #e6eaf1;
  text-align: center;
}
@media (max-width: 700px){
  .footer-info,
  .footer-nav{
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* MISC FORMS, INFO, MAPS (kontakt.html) */
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-details ul {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.contact-details li a {
  color: #945B38;
}
.map-info {
  background: #f3e2cc;
  border-radius: 10px;
  padding: 14px 18px;
  color: #50592B;
}
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .map-info {
    padding: 10px 8px;
    font-size: 0.97rem;
  }
}
.location-info {
  background: #e5ebf1;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 1rem;
  margin-top: 14px;
  color: #263142;
}

.opening-hours-section .content-wrapper {
  gap: 4px;
}

.thank-you-message {
  font-size: 1.13rem;
  margin-bottom: 20px;
  color: #50592B;
  text-align: center;
}

/* TEXT/CONTENT STYLES */
.text-section {
  margin-bottom: 20px;
}
.mission-statement {
  padding: 18px 16px;
  background: #f3e2cc;
  border-radius: 9px;
  color: #50592B;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

/*************************
  COOKIE CONSENT BANNER
**************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #29415B;
  color: #fff;
  z-index: 200;
  padding: 18px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 16px rgba(36,49,66,0.12);
  font-size: 1rem;
  transition: transform 0.28s cubic-bezier(0.9,0.03,0.13,0.91), opacity 0.24s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner__msg {
  flex: 2 1 280px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 5px;
  border: none;
  padding: 10px 23px;
  cursor: pointer;
  font-weight: 600;
  margin: 0;
  min-width: 110px;
  box-shadow: 0 1px 2px rgba(43,64,104,0.10);
  transition: background 0.18s, color 0.18s, transform 0.17s;
}
.cookie-btn.accept {
  background: #50592B;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #945B38;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #29415B;
  border: 1px solid #29415B;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #945B38;
  color: #fff;
  border: 1px solid #945B38;
}
.cookie-btn.settings {
  background: #f3e2cc;
  color: #945B38;
  border: none;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #fff2e6;
  color: #50592B;
}
@media (max-width: 768px){
  .cookie-banner{
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.97rem;
    padding: 13px 3vw 12px 4vw;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom:0;
  background: rgba(36,49,66,0.30);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-modal.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 15px;
  max-width: 440px;
  width: 96vw;
  box-shadow: 0 8px 32px 0 rgba(36,49,66,0.17);
  padding: 34px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal__header {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #29415B;
  margin-bottom: 3px;
  font-weight: bold;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-category label {
  font-size: 1rem;
  color: #29415B;
  cursor: pointer;
}
.cookie-category input[type=checkbox] {
  accent-color: #945B38;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  vertical-align: middle;
}
.cookie-modal__footer {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-modal .close {
  position: absolute;
  top: 13px;
  right: 17px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #945B38;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  color: #29415B;
}
@media (max-width: 600px){
  .cookie-modal__content {
    padding: 18px 7vw 14px 7vw;
    font-size: 0.98rem;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.card,
.feature-grid li,
.service-list li,
.blog-post-list li,
.cta-btn,
button,
input[type=submit],
footer .footer-nav a,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-btn {
  transition: box-shadow 0.18s, background 0.18s, color 0.15s, transform 0.16s;
}

/* SCROLLBAR for webkit */
body {
  scrollbar-color: #945B38 #f7f9fa;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #f7f9fa;
}
body::-webkit-scrollbar-thumb {
  background: #b88058;
  border-radius: 10px;
}

/* FOCUS VISIBLE - accessibility */
a:focus,
button:focus,
.cta-btn:focus,
input:focus,
.cookie-btn:focus {
  outline: 2px solid #F1B20C;
  outline-offset: 2px;
}

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0; white-space: nowrap;
}
