/* CSS RESET & 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FBFBFA;
  color: #225D38;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
*, *:before, *:after { box-sizing: border-box; }


/* VARIABLES (FALLBACKS) */
:root {
  --color-primary: #225D38;
  --color-secondary: #F7FAF6;
  --color-accent: #C27C2A;
  --color-bg-main: #FBFBFA;
  --color-pastel-green: #E8F6EA;
  --color-pastel-yellow: #FFFBEA;
  --color-pastel-pink: #FFE3EC;
  --color-pastel-blue: #E6F2FF;
  --color-pastel-mint: #D5F9F2;
  --color-pastel-lilac: #F2ECFA;
  --color-shadow: rgba(34,93,56,0.07);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-lg: 0 6px 32px var(--color-shadow);
  --shadow-md: 0 2px 12px var(--color-shadow);
  --shadow-sm: 0 1px 4px var(--color-shadow);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}


/* 1. GENERAL TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  color: #225D38;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
}
p, ul, ol, li {
  font-size: 1rem;
  font-family: var(--font-body);
  color: #225D38;
}
strong {
  font-weight: 600;
  color: #144127;
}
ul, ol {
  padding-left: 18px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 2. LAYOUTS & SPACING (MANDATORY PATTERNS)*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--color-pastel-blue);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.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;
  background: var(--color-pastel-green);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card p {
  color: #1A1918;
  font-size: 1.125rem;
  font-style: italic;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #225D38;
  margin-left: auto;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-pastel-mint);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

/* HERO SECTION */
.hero {
  padding: 64px 0 48px;
  background: linear-gradient(100deg, #E8F6EA 75%, #F2ECFA 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 24px var(--color-shadow);
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.75rem;
  color: #225D38;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.hero h2 {
  font-size: 1.5rem;
  color: #C27C2A;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 10px;
}
.hero p {
  color: #225D38;
  font-size: 1.125rem;
  margin-bottom: 26px;
}


/* MAIN NAVIGATION */
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
  box-shadow: 0 2px 16px var(--color-shadow);
  z-index: 50;
}
header > a img {
  height: 48px;
  width: auto;
  margin-right: 18px;
  border-radius: var(--radius-sm);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  color: #225D38;
  font-size: 1.06rem;
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 4px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: var(--color-accent);
}

.cta-button {
  font-family: var(--font-display);
  color: #fff;
  background: linear-gradient(100deg,#C9EBC9 0%, #C27C2A 100%);
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  font-size: 1.11rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 18px var(--color-shadow);
  transition: background 0.18s, box-shadow 0.2s, transform 0.16s;
  margin-left: 30px;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.4px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background: var(--color-secondary);
  border-top: 4px solid #C27C2A;
  margin-top: 60px;
  padding: 40px 0 30px;
}
footer .content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #225D38;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color 0.18s;
  opacity: .95;
}
.footer-nav a:hover {
  color: var(--color-accent);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.99rem;
  margin-bottom: 4px;
  color: #225D38;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  transition: box-shadow 0.18s;
}
.footer-social a img:hover {
  box-shadow: 0 2px 8px var(--color-shadow);
}


/* FEATURES SECTION */
.features {
  background: var(--color-pastel-mint);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow-sm);
}
.features h2 {
  color: #225D38;
}
.features ul {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  list-style-type: none;
}
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  background: #fff;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px var(--color-shadow);
  margin-bottom: 12px;
  min-width: 200px;
  font-family: var(--font-body);
}
.features li img {
  width: 28px;
  height: 28px;
}

/* SERVICES SECTION */
.services {
  background: var(--color-pastel-blue);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}
.services h2 {
  color: #225D38;
}
.services ul, .services .service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.services ul li, .services .service-list .service-card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  color: #225D38;
}
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services .service-card {
  flex: 1 1 240px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.14s;
}
.services .service-card:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.services .price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  position: absolute;
  right: 18px;
  bottom: 18px;
}
.pricing-summary {
  margin-top: 32px;
  background: var(--color-pastel-yellow);
  padding: 22px 18px;
  border-radius: var(--radius-md);
  font-size: 1.06rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* TESTIMONIALS (REFERENCE) */
.testimonials {
  background: var(--color-pastel-yellow);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}
.testimonials h2 {
  color: #225D38;
}
.star-rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 1.08rem;
  font-family: var(--font-display);
  color: #1A1918;
  background: var(--color-pastel-mint);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.star-rating-summary img {
  width: 24px;
  height: 24px;
}

/* CONTACT SECTION */
.contact {
  background: var(--color-pastel-green);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}
.contact h2, .contact h3 {
  color: #225D38;
}
.contact ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 24px 0;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1.09rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 1px 4px var(--color-shadow);
}
.contact ul li img {
  width: 26px;
  height: 26px;
}
.address-map, .operating_hours {
  background: var(--color-pastel-lilac);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 1.01rem;
  box-shadow: var(--shadow-sm);
}

/* ABOUT SECTION & CASE STUDIES */
.about {
  background: var(--color-pastel-lilac);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}
.about h2, .about h3 {
  color: var(--color-accent);
}
.case-study-overview h3 {
  margin-top: 16px;
}
.success-stories-list {
  margin-top: 12px;
}

/* CONTENT CARD ALIGNMENT */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* HOW-TO GUIDES and SEASONAL-TIPS (inspiration) */
.how-to-guides, .seasonal-tips {
  background: var(--color-pastel-green);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.how-to-guides h3, .seasonal-tips h3 {
  color: #225D38;
  margin-bottom: 8px;
}

/* ACTION SECTION (Děkujeme) */
.action .content-wrapper {
  align-items: center;
  justify-content: center;
}
.action .cta-button {
  margin: 0 auto;
  margin-top: 14px;
}

/**************************************
        MOBILE NAVIGATION
**************************************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 102;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #225D38;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  box-shadow: -6px 0 24px var(--color-shadow);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #225D38;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 30px;
  cursor: pointer;
  z-index: 10;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 90px;
  width: 100%;
  gap: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #225D38;
  background: var(--color-pastel-mint);
  padding: 15px 0;
  width: 82vw;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4px;
  transition: color 0.14s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/**************************************
        COOKIE CONSENT BANNER
**************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -4px 16px var(--color-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 18px;
  z-index: 9000;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: cookieBannerSlideUp 0.55s cubic-bezier(.57,.01,.39,.99) 1;
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  flex: 1 1 auto;
  color: #225D38;
  margin-right: 18px;
}
.cookie-banner .cookie-btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 9px 22px;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.14s, color 0.15s, box-shadow 0.13s;
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #225D38;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #C9EBC9;
  color: #225D38;
  font-weight: 600;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #225D38;
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 9200;
  background: rgba(34, 93, 56, 0.20);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 0 32px var(--color-shadow);
  padding: 36px 25px 26px 25px;
  min-width: 340px;
  max-width: 94vw;
  width: 378px;
  margin-bottom: 0;
  animation: cookieModalSlideUp 0.47s cubic-bezier(.54,.08,.29,1.1) 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieModalSlideUp {
  from { transform: translateY(60%); }
  to { transform: translateY(0); }
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #225D38;
  font-size: 2rem;
  position: absolute;
  right: 28px;
  top: 17px;
  cursor: pointer;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-modal .category-toggle {
  width: 34px;
  height: 18px;
  position: relative;
  background: var(--color-pastel-green);
  border-radius: 12px;
  border: none;
  transition: background 0.14s;
  cursor: pointer;
}
.cookie-modal .category-toggle[data-checked='true'] {
  background: var(--color-accent);
}
.cookie-modal .category-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.13s, background 0.14s;
}
.cookie-modal .category-toggle[data-checked='true']:before {
  left: 18px;
  background: #fff8da;
}
.cookie-modal .cookie-category-label {
  flex: 1 1 auto;
  color: #225D38;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-family: var(--font-display);
  border-radius: var(--radius-md);
  padding: 9px 18px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.cookie-modal .cookie-modal-actions button.secondary {
  background: #C9EBC9;
  color: #225D38;
}
.cookie-modal .cookie-modal-actions button.secondary:hover {
  background: #225D38;
  color: #fff;
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  background: #225D38;
  color: #fff;
}

/**************************************
      TRANSITIONS, EFFECTS, UI
**************************************/
input, button, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
button {
  cursor: pointer;
  transition: background 0.16s;
}
section, .section, .about, .features, .services, .testimonials, .contact {
  margin-bottom: 60px;
}

/* SUBTLE SHADOWS + SOFT FORMS */
.card, .testimonial-card, .contact ul li, .features li, .feature-item, .services .service-card, .pricing-summary, .about, .how-to-guides, .seasonal-tips, .address-map, .operating_hours {
  box-shadow: var(--shadow-sm);
}

/* VISUAL HIERARCHY */
h1, h2, h3 {
  margin-top: 12px;
}
p + h2, ul + h2, .feature-item + h2 { margin-top: 35px; }

/* WHITESPACE (PASTEL ATMOSPHERE) */
.section, .about, .features, .services, .testimonials, .contact {
  margin-top: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
}

/* ANIMATIONS */
.card, .testimonial-card, .service-card, .feature-item {
  transition: box-shadow 0.12s, transform 0.16s;
}
.card:hover, .service-card:hover, .feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px) scale(1.025);
}

/** API FOR STAR RATING ICONS */
.star-rating-summary img {
  filter: drop-shadow(0 1px 4px #ffe8b6);
}

/**************************************
         RESPONSIVE DESIGN
**************************************/
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 992px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header {
    flex-direction: row;
    align-items: center;
    padding: 8px 0 8px 0;
  }
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 40px 0 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .section, .about, .features, .services, .testimonials, .contact {
    padding: 25px 6px;
    border-radius: var(--radius-md);
    margin-bottom: 35px;
  }
  .features ul {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-social {
    justify-content: flex-start;
    gap: 14px;
    margin-top: 8px;
  }
  .card-container, .services .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .hero { padding: 20px 0 8px; }
  .container { padding-left: 6px; padding-right: 6px; }
  .cookie-modal .cookie-modal-content { width: 97vw; min-width: unset; padding: 19px 5px 17px 10px; }
  .cookie-banner { padding: 12px 5px; gap: 7px; }
  .mobile-nav a { font-size: 1rem; padding: 11px 0; }
}


/* NO GRID USAGE: Flex only for layouts. All content containers use display: flex, NO grid/columns used anywhere. */
