/* ===================================================================
   WürzeWerkstatt Scandinavian Clean CSS – style.css
   Modern, light, inviting – focus on clarity, contrast, and brand accents
   =================================================================== */

/* ---- 1. CSS RESET & BASE ---- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F9F7F3;
  color: #203032;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #203032;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F27C36;
  text-decoration: none;
  outline: none;
}
ul, ol {
  padding-left: 1.25em;
}

/* ---- 2. TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: #203032;
  letter-spacing: -.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
@media (min-width: 700px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.38rem; }
}
p {
  margin-bottom: 16px;
  font-size: 1.06rem;
}
.tagline {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.2rem;
  color: #7B8689;
  margin-bottom: 18px;
}
.author {
  font-size: 1rem;
  font-weight: 600;
  color: #203032;
}
.mini-contact-info {
  font-size: 0.96rem;
  color: #7B8689;
  margin-top: 18px;
}

/* ---- 3. LAYOUT CONTAINER PATTERNS ---- */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(32,48,50,0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(32,48,50,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 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(32,48,50,0.045);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(32,48,50,0.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F6F2;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 1px 5px rgba(90,105,110,0.03);
  margin-bottom: 20px;
  max-width: 340px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.feature-item img {
  width: 44px;
  height: 44px;
}
.feature-item:hover {
  box-shadow: 0 4px 18px rgba(32,48,50,0.07);
  transform: translateY(-3px) scale(1.020);
}

/* Specific card/preview flex patterns */
.feature-grid, .service-cards, .recipe-preview-grid, .blog-post-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-cards, .service-list {
  width: 100%;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px rgba(32,48,50,0.05);
  padding: 24px 20px 20px;
  min-width: 230px;
  max-width: 300px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(32,48,50,0.10);
}
.recipe-preview, .blog-post-preview {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px rgba(32,48,50,0.05);
  padding: 20px 16px;
  flex: 1 1 230px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.recipe-preview:hover, .blog-post-preview:hover {
  box-shadow: 0 8px 32px rgba(32,48,50,0.20);
  transform: translateY(-2px) scale(1.012);
}

/* ---- 4. HEADER & NAVIGATION ---- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(37,50,40,0.03);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  letter-spacing: -.007em;
  color: #203032;
  background: transparent;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: #F2E9E1;
  color: #F27C36;
}
.cta.primary {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  padding: 11px 26px;
  font-size: 1.11rem;
  font-weight: 700;
  color: #fff;
  background: #F27C36;
  border-radius: 26px;
  box-shadow: 0 4px 20px rgba(242,124,54,0.07);
  border: none;
  text-align: center;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s, transform 0.11s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #203032;
  color: #fff;
  box-shadow: 0 8px 32px rgba(242,124,54,0.15);
  transform: translateY(-1px) scale(1.03);
}
.cta.secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #203032;
  color: #fff;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 28px;
  border: none;
  margin-top: 6px;
  margin-bottom: 5px;
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F27C36;
  color: #fff;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ---- 5. HERO/BANNER ---- */
.hero {
  background: #F7F6F2;
  padding: 56px 0 36px 0;
  margin-bottom: 40px;
}
.hero h1 {
  color: #203032;
}
.hero .cta.primary {
  margin-top: 15px;
}

/* ---- 6. SECTIONS ---- */
.about-intro, .services-overview, .testimonials-section, .blog-preview, .contact-cta, .newsletter-cta, .schedule, .thank-you {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,48,50,0.04);
  margin: 32px 0;
  padding: 40px 18px;
}

/* Emphasized category menus */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 16px 0;
}
.category-list li {
  list-style: none;
}
.category-list a {
  display: inline-block;
  background: #F2E9E1;
  color: #203032;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  border-radius: 22px;
  box-shadow: 0 1px 6px rgba(32,48,50,0.05);
  transition: background 0.14s, color 0.16s;
}
.category-list a:hover, .category-list a:focus {
  background: #F27C36;
  color: #fff;
}
.filters {
  margin-top: 8px;
  font-size: 0.97rem;
  color: #7B8689;
  display: flex;
  align-items: center;
  gap: 6px;
}
.filters a {
  color: #203032;
  background: none;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.2s, color 0.2s;
}
.filters a:hover, .filters a:focus {
  background: #F2E9E1;
  color: #F27C36;
}

/* Price highlight */
.price {
  display: inline-block;
  color: #F27C36;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.08rem;
}

/* ---- 7. FORMS & INPUTS ---- */
.search-bar {
  width: 100%;
  max-width: 420px;
  background: #F9F7F3;
  border: 1.5px solid #F2E9E1;
  border-radius: 22px;
  padding: 12px 24px;
  font-size: 1rem;
  color: #203032;
  margin-top: 12px;
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.search-bar:focus {
  border-color: #F27C36;
  background: #fff;
}

input, button {
  font-family: 'Raleway', Arial, sans-serif;
}
input, select {
  border: 1.5px solid #E0E0DA;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  background: #F9F7F3;
}
input:focus, select:focus {
  border-color: #F27C36;
}

/* ---- 8. FOOTER ---- */
footer {
  background: #203032;
  color: #fff;
  width: 100%;
  padding: 36px 0 20px 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 30px;
  box-shadow: 0 -4px 32px rgba(32,48,50,0.03);
}
footer .container {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
footer nav {
  gap: 21px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -.004em;
  transition: color 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: #F27C36;
}
footer p {
  margin-top: 10px;
  font-size: 0.98rem;
  color: #c9caca;
}

/* ---- 9. MOBILE MENU ---- */
.mobile-menu-toggle {
  display: block;
  font-size: 2.15rem;
  line-height: 1;
  background: #F2E9E1;
  color: #203032;
  border: none;
  border-radius: 10px;
  padding: 7px 11px;
  margin-left: 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F27C36;
  color: #fff;
  transform: scale(1.08) translateY(-2px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 44px rgba(32,48,50,0.15);
  z-index: 9998;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  transition: transform 0.33s cubic-bezier(.47,.1,.59,.97);
  overflow: auto;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: 0 0 120px rgba(32,48,50,0.13);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  color: #F27C36;
  border: none;
  padding: 11px;
  border-radius: 9px;
  align-self: flex-end;
  margin: 14px 18px 0 0;
  cursor: pointer;
  transition: background 0.20s, color 0.20s, transform 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F2E9E1;
  color: #203032;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: start;
  padding: 46px 32px 18px 32px;
  margin-top: 20px;
}
.mobile-nav a {
  color: #203032;
  font-size: 1.21rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  text-decoration: none;
  background: #F2E9E1;
  padding: 10px 27px;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s;
  min-width: 190px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F27C36;
  color: #fff;
}

/* Hide main nav and CTA on mobile when burger active */
@media (max-width: 1024px) {
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ---- 10. COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  width: 96vw;
  max-width: 520px;
  background: #fff;
  color: #203032;
  box-shadow: 0 10px 40px rgba(32,48,50,0.09);
  border-radius: 18px;
  padding: 24px 26px 20px 26px;
  z-index: 13000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.5,.14,.31,1), opacity 0.33s;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.01rem;
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 24px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  background: #F2E9E1;
  color: #203032;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
}
.cookie-banner .cookie-btn.accept {
  background: #F27C36;
  color: #fff;
  margin-right: 6px;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #203032;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #E0E0DA;
  color: #203032;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #F27C36;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #F2E9E1;
  color: #203032;
  margin-left: auto;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #F27C36;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-55%) scale(0.96);
  background: #fff;
  color: #203032;
  z-index: 14000;
  max-width: 440px;
  width: 90vw;
  padding: 40px 30px 26px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 60px rgba(32,48,50,0.17);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s, transform 0.34s cubic-bezier(.44,.11,.23,1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.cookie-modal .modal-close {
  align-self: flex-end;
  background: transparent;
  color: #F27C36;
  border: none;
  font-size: 2rem;
  padding: 5px 8px;
  margin-bottom: -12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #F2E9E1;
  color: #203032;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 1rem;
}
.cookie-modal .category label {
  font-weight: 600;
}
.cookie-modal .toggle-switch {
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #E0E0DA;
  position: relative;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.18s;
  display: inline-block;
}
.cookie-modal .toggle-switch[data-checked='true'] {
  background: #F27C36;
}
.cookie-modal .toggle-thumb {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(32,48,50,0.10);
  transition: left 0.18s;
}
.cookie-modal .toggle-switch[data-checked='true'] .toggle-thumb {
  left: 19px;
}

/* ---- 11. SPECIAL SECTIONS / UTILITIES ---- */
.legal-text {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(32,48,50,0.03);
  margin: 38px 0 48px 0;
  padding: 42px 22px;
}
@media (max-width: 600px) {
  .legal-text {
    padding: 18px 5px;
  }
}
.about-details ul, .values ul, .team-section ul, .why-choose-us ul, .faq-list, .service-list, .workshop-calendar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2px;
}
.about-details li, .values li, .team-section li, .why-choose-us li, .faq-list li, .service-list li, .workshop-calendar li {
  background: #F9F7F3;
  padding: 10px 14px 10px 0;
  border-radius: 11px;
  list-style-position: inside;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.values li img {
  width: 32px; height: 32px; margin-right: 10px;
}

/* Workshop calendar/events */
.workshop-calendar li {
  background: #fff6ef;
  color: #203032;
  border-left: 4px solid #F27C36;
  padding-left: 14px;
  font-family: 'Montserrat',Arial,sans-serif;
}

/* ---- 12. RESPONSIVE DESIGN (MOBILE-FIRST) ---- */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 11px;
  }
  .service-card,
  .recipe-preview,
  .blog-post-preview,
  .feature-item {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.08rem; }
  nav {
    gap: 12px;
  }
  .content-wrapper {
    gap: 18px;
    padding-left: 0;
    padding-right: 0;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 6px;
  }
  .feature-grid, .service-cards, .recipe-preview-grid, .blog-post-preview-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    padding: 15px;
    gap: 14px;
  }
  .about-intro, .services-overview, .testimonials-section, .blog-preview, .contact-cta, .newsletter-cta, .schedule, .thank-you {
    padding: 22px 5px;
  }
  .category-list {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  header .logo img {
    height: 30px;
  }
  header .container {
    padding: 10px 7px;
    gap: 7px;
  }
  .about-intro, .services-overview, .testimonials-section, .blog-preview, .contact-cta, .newsletter-cta, .schedule, .thank-you, .legal-text {
    padding: 10px 2px;
    border-radius: 9px;
  }
  .cookie-banner, .cookie-modal {
    padding: 13px 6px 10px 6px;
    border-radius: 15px;
  }
}

/* ---- 13. ACCENT COLORS & MICRO-INTERACTIONS ---- */
::-webkit-selection { background: #F2E9E1; color: #203032; }
::selection { background: #F2E9E1; color: #203032; }

/* Card accent shadow and micro-interaction */
.card, .service-card, .feature-item, .recipe-preview, .blog-post-preview {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .service-card:hover, .feature-item:hover, .recipe-preview:hover, .blog-post-preview:hover {
  box-shadow: 0 8px 32px rgba(242,124,54,0.12);
  transform: translateY(-2px) scale(1.02);
}

/* ---- 14. Z-INDEX LAYERING & SAFETY ---- */
header { z-index: 100; }
footer { z-index: 99; }
.mobile-menu { z-index: 9998; }
.cookie-banner { z-index: 13000; }
.cookie-modal { z-index: 14000; }

/* ---- 15. UTILITY CLASSES ---- */
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; gap: 18px; }
.flex-col { display: flex; flex-direction: column; gap: 18px; }

@media (max-width: 600px) {
  .flex-row { flex-direction: column; gap: 10px; }
}

/* ---- 16. OVERRIDES TO PREVENT OVERLAPPING ---- */
.card-container > *, .feature-grid > *, .service-cards > *, .recipe-preview-grid > *, .blog-post-preview-grid > *, .testimonial-card, .feature-item, .card {
  margin-bottom: 20px;
}

/* ---- 17. ACCESSIBLE FOCUS STATES ---- */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px solid #F27C36;
  outline-offset: 2px;
}

/* ---- 18. PRINT FRIENDLY SETTINGS ---- */
@media print {
  body { background: #fff; color: #111; }
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  .about-intro, .services-overview, .testimonials-section, .blog-preview, .contact-cta, .newsletter-cta, .schedule, .thank-you, .legal-text { box-shadow: none; background: #fff; }
}

/* ---- 19. SCANDINAVIAN NATURAL HINTS ---- */
/* Subtle "wood" like feel via background textures would be svg/asset, skip for pure CSS only - use subtle contrast and soft edges instead */

/* ---- END ---- */
