/* === CSS RESET & BASE 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;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F8F5F0;
  color: #252525;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

a {
  color: #456327;
  text-decoration: none;
  transition: color 0.25s;
  outline: none;
  cursor: pointer;
}
a:focus, a:hover {
  color: #A1C3A0;
  text-decoration: underline;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #456327;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }

.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #7D6841;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 500;
}
.strong, strong {
  font-weight: 600;
  color: #456327;
}

/* === BRAND CONTAINERS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

/* === SECTION SPACING & CARDS === */
section {
  background: #FFF;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 6px 28px -8px rgba(160, 140, 80, 0.10);
  transition: box-shadow 0.3s;
}
@media (max-width: 600px) {
  section { padding: 24px 7px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 250px;
  min-width: 250px;
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 6px 24px -10px rgba(137,104,44,0.13);
  position: relative;
  padding: 26px 20px 18px 20px;
  transition: box-shadow 0.24s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 10px 32px -6px rgba(69,99,39,0.18);
  transform: translateY(-4px) scale(1.02);
}

.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF8F1;
  border-radius: 16px;
  box-shadow: 0 2px 14px -8px rgba(180,150,80,0.09);
  border: 1px solid #F2E3C7;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #452c10;
  line-height: 1.55;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #7D6841;
  font-style: italic;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  padding: 14px 0;
}

.features-list, .service-list, .workshop-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-bottom: 18px;
}
.features-list li, .service-list li, .workshop-benefits li {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
  background: #FAF8F5;
  border-radius: 15px;
  padding: 12px 18px;
  min-width: 240px;
  box-shadow: 0 1px 8px -4px rgba(160,110,48,0.06);
  margin-bottom: 8px;
  color: #563e12;
  font-weight: 500;
  transition: background 0.17s;
}
.features-list li img,
.features-list li svg {
  margin-right: 12px;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.features-list li:hover,
.service-list li:hover {
  background: #FFF2E5;
}

@media (max-width: 900px) {
  .features-list, .service-list, .workshop-benefits {
    gap: 12px 0;
  }
  .features-list li, .service-list li {
    min-width: 100%;
  }
}

/* --- Pricing Grid (Ponudba) --- */
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 0 0;
  background: #FAF9F4;
  padding: 16px 18px;
  border-radius: 13px;
  box-shadow: 0 1px 10px -6px rgba(200,165,110,0.06);
}
.pricing-grid ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-grid li {
  font-size: 1rem;
  color: #475e27;
  margin-bottom: 4px;
}
.price {
  color: #7D6841;
  font-weight: 500;
}

/* --- Special blocks --- */
.style-highlight,
.seasonal-focus {
  margin: 26px 0 12px 0;
  padding: 18px 18px;
  background: #FFF9EE;
  border-radius: 15px;
  color: #553b13;
  box-shadow: 0 2px 12px -9px rgba(200,140,40,0.07);
}
.style-highlight h3,
.seasonal-focus h3 {
  color: #456327;
  margin-bottom: 10px;
  font-size: 1.17rem;
}

/* === HEADER & NAVIGATION === */
header {
  background: #FFF;
  box-shadow: 0 4px 35px -16px rgba(80,80,40,0.07);
  border-radius: 0 0 20px 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 102;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 78px;
  gap: 0;
}
.logo img {
  height: 54px;
  width: auto;
  border-radius: 12px;
  transition: box-shadow 0.2s;
}
.logo img:hover { box-shadow: 0 3px 18px -8px #a1c3a0bb; }
nav {
  display: flex;
  gap: 24px;
}
nav a {
  color: #563e12;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 8px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #FAF8D8;
  color: #456327;
}
.cta.primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #A1C3A0;
  color: #252525;
  font-weight: bold;
  border-radius: 12px;
  font-size: 1.07rem;
  padding: 12px 28px;
  margin-left: 18px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 10px -4px #b4bca5bb;
  border: 2px solid #A1C3A0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #457327;
  color: #FFF;
  border-color: #456327;
  box-shadow: 0 6px 24px -10px #A1C3A0,
              0 1px 14px -10px #45732755;
}
.cta.secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFF;
  color: #456327;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1rem;
  padding: 10px 23px;
  margin-top: 18px;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 8px -3px #e7eec5ba;
  border: 2px solid #A1C3A0;
  transition: background 0.18s, color 0.15s;
  outline: none;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #A1C3A0;
  color: #252525;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #A1C3A0;
  color: #456327;
  border-radius: 10px;
  padding: 8px 13px;
  font-size: 2rem;
  margin-left: 18px;
  box-shadow: 0 2px 8px -3px #b4bca0aa;
  z-index: 301;
  transition: background 0.2s, color 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #456327;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF8F1;
  box-shadow: 0 0 64px -6px #a1c3a047;
  z-index: 300;
  padding: 0 0 0 0;
  transition: transform 0.39s cubic-bezier(.36,1.52,.56,1), opacity 0.2s;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #456327;
  border-radius: 10px;
  padding: 10px 16px;
  margin: 18px 0 0 18px;
  background: #f1ebd7;
  align-self: flex-start;
  transition: background 0.2s, color .16s;
  box-shadow: 0 1px 8px -3px #dab86639;
  z-index: 302;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #A1C3A0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 36px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #563e12;
  background: none;
  border-radius: 10px;
  padding: 13px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A1C3A0;
  background: #4563270c;
}

@media (max-width: 1050px) {
  nav {
    gap: 10px;
  }
}
@media (max-width: 880px) {
  header .container nav, header .container .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .logo img {
    height: 45px;
  }
}
@media (max-width: 600px) {
  header .container {
    min-height: 58px;
    padding: 0 8px;
  }
  .mobile-nav {
    margin-left: 15px;
  }
}

/* === FOOTER === */
footer {
  margin-top: 60px;
  width: 100%;
  background: #F9F8F4;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 20px -8px #ece6cc44;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  font-size: 0.97rem;
}
.footer-brand img {
  height: 38px;
  border-radius: 9px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 17px;
}
footer nav a {
  color: #7D6841;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 4px;
  border-radius: 7px;
}
footer nav a:hover {
  background: #A1C3A0;
  color: #fff;
}
footer span {
  color: #917c57;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer nav {
    margin-bottom: 8px;
  }
}

/* === MAP EMBED STYLING === */
.map-embed {
  background: #F5F5F0;
  border-radius: 15px;
  margin-top: 20px;
  padding: 14px 18px;
  color: #504110;
  box-shadow: 0 1px 7px -4px #e3deb7a8;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
}

/* === FAQ === */
.faq {
  margin-top: 28px;
  background: #f9f8ee;
  border-radius: 13px;
  padding: 13px 18px;
}
.faq ul {
  gap: 8px;
}
.faq li {
  margin-bottom: 9px;
}

/* =========== BUTTONS ========== */
button, .button, .cta {
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.13s, box-shadow 0.19s, border 0.14s;
}

/* =========== COOKIES BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFF8F1;
  color: #3e330f;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 3333;
  box-shadow: 0 -3px 25px -3px #EBCB8988;
  padding: 20px 12px 16px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  border-radius: 18px 18px 0 0;
  animation: cookie-slide-in 0.71s cubic-bezier(.92,-0.06,.44,1.11);
}
@keyframes cookie-slide-in {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  border-radius: 9px;
  padding: 8px 15px;
  font-size: 1em;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #A1C3A0;
  color: #252525;
  font-weight: 600;
  box-shadow: 0 1px 7px -2px #A1C3A0CC;
  transition: background 0.12s, color 0.12s;
}
.cookie-btn:hover, .cookie-btn:focus,
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #456327;
  color: #fff;
}
.cookie-btn.reject {
  background: #faebe1;
  color: #456327;
  border: 1px solid #e0c4a3;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f7e4d6;
  color: #456327;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(80,46,11,0.22);
  z-index: 3900;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: cookiemodalfade 0.23s cubic-bezier(.38,1.12,.44,1.08);
}
@keyframes cookiemodalfade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 36px -8px #a1c3a0bb;
  max-width: 415px;
  width: 96vw;
  padding: 30px 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.08rem;
  color: #563e12;
  position: relative;
}
.cookie-modal h3 {
  color: #456327;
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #A1C3A0;
  border-radius: 4px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 6px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 13px;
  background: #f0ebd7;
  font-size: 1.8rem;
  border-radius: 9px;
  color: #456327;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #A1C3A0;
  color: #fff;
}

.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal .essential {
  font-weight: bold;
  color: #7D6841;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 6px 13px 6px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 17px 7px 14px 8px;
    max-width: 95vw;
    font-size: 0.98rem;
  }
}

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 770px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  section { margin-bottom: 40px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.08rem; }
  .footer-brand img { height: 29px; }
}
@media (max-width: 530px) {
  section { padding: 15px 4px; margin-bottom: 28px; }
  .testimonial-card, .features-list li { padding: 10px 7px; }
}

/* === UTILITY === */
.mission { margin-top: 12px; }
.text-section ul { padding-left: 18px; margin-top: 7px; margin-bottom: 7px; }
.text-section ul li:before {
  content: '•';
  color: #A1C3A0;
  margin-right: 7px;
  font-size: 1.13em;
}
.text-section a {
  color: #7D6841;
  text-decoration: underline;
  transition: color 0.2s;
}
.text-section a:hover, .text-section a:focus {
  color: #456327;
}
.brand-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
}
.brand-image img {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  box-shadow: 0 1px 14px -5px #A1C3A0;
}

/* === FORM ELEMENTS === */
input[type], textarea, select {
  border: 1px solid #dfc57a;
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  box-shadow: 0 1px 10px -6px #a1c3a055;
  transition: border 0.16s, box-shadow 0.13s;
}
input[type]:focus, textarea:focus, select:focus {
  border-color: #A1C3A0;
  outline: none;
  box-shadow: 0 3px 18px -8px #A1C3A0;
}

/* === MICRO-INTERACTIONS === */
.card, .cta, .features-list li, .service-list li, .testimonial-card, .footer-brand img, .cookie-btn, .cookie-settings-btn, .cookie-modal-close {
  transition: box-shadow 0.17s, background 0.17s, color 0.13s, transform 0.17s;
}

.card:active,
.features-list li:active,
.cta:active {
  transform: scale(0.98);
}

/* === LINKED LISTS === */
ul li a {
  color: #456327;
  text-decoration: underline;
}
ul li a:hover, ul li a:focus {
  color: #A1C3A0;
}

/* === DIALOG SUPPORT Fallbacks === */
[hidden], .hidden { display: none !important; }

/* === COLORS FOR SECTIONS FOR EXTRA WARMTH === */
section:nth-child(2n) {
  background: #FFF8F1;
}

/* === Z-INDEX LAYERS === */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 333; }

/* == Custom Scrollbars == */
::-webkit-scrollbar {
  width: 10px;
  background: #f8f5f0;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #A1C3A0;
  border-radius: 7px;
}

/* End of stylesheet */
