/* ====================================================================
   DOMOVSKÝ KOUTEK – STYLE.CSS (gradient_modern)
   Modern, friendly, comfortable with gradient elements.
   ==================================================================== */

/*========================
  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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F3EFE6;
  color: #2C3A24;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2C3A24;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p, ul, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong { font-weight: bold; }
em { font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
}

/*============================================
 GLOBAL LAYOUT: FLEXBOX SECTION SPACING
============================================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(70,108,87,0.10);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(44,58,36,0.15);
  transform: translateY(-4px) 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(70,108,87,0.07);
  margin-bottom: 24px;
  transition: box-shadow 0.18s, transform 0.18s;
  color: #2C3A24;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #2C3A24;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(44,58,36,0.14);
  transform: translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/*============================================
 BRAND GRADIENTS & BACKGROUNDS
============================================*/
.hero {
  padding: 70px 0 60px 0;
  background: linear-gradient(120deg, #F3EFE6 60%, #e5ebdf 100%);
}
.hero h1 {
  background: linear-gradient(90deg, #466C57 50%, #709e86 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.catalog-promo {
  background: linear-gradient(90deg, #EAF7F0 30%, #F3EFE6 100%);
  border-radius: 18px;
}
.features {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px 32px 20px;
}
.catalog-overview {
  background: linear-gradient(92deg, #ffffff 70%, #d9ede4 100%);
  border-radius: 18px;
}

/*============================================
 BUTTONS (CTAs)
============================================*/
.primary-cta, .secondary-cta, .cookie-btn, .cookie-modal-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 100px;
  padding: 12px 32px;
  min-width: 140px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.2;
  cursor: pointer;
  border: none;
  margin-top: 16px;
  margin-right: 16px;
  box-shadow: 0 2px 8px 0 rgba(70,108,87,0.10);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
}
.primary-cta {
  background: linear-gradient(90deg, #466C57 80%, #2C3A24 100%);
  color: #fff;
}
.primary-cta:hover, .primary-cta:focus {
  background: linear-gradient(90deg, #519c7b 80%, #466C57 100%);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(70,108,87,0.16);
}
.secondary-cta {
  background: #fff;
  color: #466C57;
  border: 2px solid #466C57;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #466C57;
  color: #fff;
}
button {
  background: #466C57;
  color: #fff;
  border-radius: 100px;
  padding: 10px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(70,108,87,0.09);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
button:hover, button:focus {
  background: #2C3A24;
  color: #fff;
  box-shadow: 0 6px 20px rgba(44,58,36,0.14);
  transform: translateY(-2px);
}
.cookie-btn {
  background: #466C57;
  color: #fff;
  box-shadow: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 80px;
}
.cookie-btn.reject {
  background: #fff;
  color: #466C57;
  border: 1.5px solid #466C57;
}
.cookie-btn:hover {
  background: #2C3A24;
  color: #fff;
}
.cookie-modal-btn {
  background: #466C57;
  color: #fff;
  box-shadow: none;
}
.cookie-modal-btn.reject {
  background: #fff;
  color: #466C57;
  border: 1.5px solid #466C57;
}
.cookie-modal-btn.settings {
  background: #fff7ed;
  color: #2C3A24;
  border: 1.5px solid #2C3A24;
}
.cookie-modal-btn:hover {
  background: #2C3A24;
  color: #fff;
}

/*============================================
 NAVIGATION
============================================*/
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(70, 108, 87, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
header nav a img {
  height: 38px;
  width: auto;
}
header nav ul {
  display: flex;
  gap: 24px;
}
header nav ul li {
  display: flex;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2C3A24;
  padding: 8px 14px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #EAF7F0;
  color: #466C57;
}
header .primary-cta {
  margin-top: 0;
  margin-right: 0;
}

/*===============================
 MOBILE NAV
===============================*/
.mobile-menu-toggle {
  display: none;
  background: #EAF7F0;
  color: #2C3A24;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #d9ede4;
  color: #466C57;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.77,0,.175,1), opacity 0.28s;
  box-shadow: 0 8px 40px rgba(44,58,36,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 24px;
  background: transparent;
  color: #2C3A24;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1201;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f3efe6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 90px 0 0 36px;
  width: 80%;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #2C3A24;
  margin-bottom: 8px;
  padding: 12px 12px 12px 0;
  width: 100%;
  border-radius: 12px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAF7F0;
  color: #466C57;
}

/*====================================================
  CATALOG GRID & PRODUCT CARDS (NO grid!)
====================================================*/
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.product-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(70,108,87,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(50% - 12px);
  min-width: 260px;
  padding: 20px 18px 24px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.product-item h3 {
  font-size: 1.125rem;
  margin-top: 12px;
  margin-bottom: 6px;
}
.product-item p {
  color: #386248;
  margin-bottom: 12px;
}
.product-item button {
  margin-top: auto;
  background: linear-gradient(90deg, #466C57 80%, #2C3A24 100%);
  font-size: 1rem;
  padding: 8px 30px;
}
.product-item button:hover {
  background: #2C3A24;
}
.product-item img {
  height: 56px; width: 56px;
  margin-bottom: 10px;
}
.product-item:hover, .product-item:focus-within {
  box-shadow: 0 8px 30px 0 rgba(70,108,87,0.14);
  transform: translateY(-2px);
}

/*==================================
  FAQ & SERVICE GRID (NO grid!)
====================================*/
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.services-grid > div {
  background: #fafeff;
  border-radius: 13px;
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 280px;
  box-shadow: 0 2px 12px 0 rgba(70,108,87,0.07);
}
.services-grid > div strong, .services-grid > div span {
  color: #466C57;
  font-weight: 700;
}

/*====================================================================
  TESTIMONIALS (CONSISTENT CARD STYLES & CONTRAST)
======================================================================*/
.testimonials, .stories {
  background: linear-gradient(95deg, #F3EFE6 76%, #e4ece8 100%);
  border-radius: 18px;
  padding: 40px 0 32px 0;
}
.testimonials h2, .stories h2 {
  font-size: 2rem;
  margin-bottom: 28px;
}
.testimonial-card {
  background: #fff;
  color: #2C3A24;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(70,108,87,0.12);
  margin-bottom: 20px;
  padding: 20px 26px;
  flex-direction: row;
}
.testimonial-card blockquote {
  border-left: 3px solid #466C57;
  padding-left: 16px;
  margin-right: 18px;
  color: #2C3A24;
  font-style: italic;
  margin-bottom: 0;
}
.testimonials p, .stories p {
  color: #386248;
}

/*============================
  INSPIRATION ARTICLES
============================*/
.inspiration-articles article {
  margin-bottom: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e1e9e4;
}
.inspiration-articles ul li {
  margin-left: 24px;
  list-style: disc;
  margin-bottom: 10px;
}

/*============================
  CONTACT DETAILS
============================*/
.contact-details ul li {
  margin-bottom: 12px;
}
.contact-details ul li strong {
  color: #466C57;
}
.company-map {
  margin-top: 18px;
  background: #f6faf7;
  border-radius: 10px;
  font-size: 0.98rem;
  color: #4c5949;
  padding: 12px 16px;
}

.contact-cta > a, .thank-you-cta > a {
  margin-right: 16px;
}

/*============================
  FOOTER
============================*/
footer {
  background: #fff;
  padding: 40px 0 32px 0;
  margin-top: 50px;
  box-shadow: 0 -2px 12px rgba(70,108,87,0.04);
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
footer nav a {
  color: #466C57;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.16s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: #EAF7F0;
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin: 22px 0 18px 0;
}
.footer-logo img {
  height: 38px; width: auto;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2C3A24;
  font-size: 1rem;
  opacity: .82;
}
.footer-contact a {
  color: #466C57;
  text-decoration: underline;
  transition: color 0.16s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #2C3A24;
}

/*==================
 Spacing Hierarchy
===================*/
section, .section, .features, .testimonials, .stories, .catalog-listing, .services-intro {
  margin-bottom: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

/*============================
  COOKIE CONSENT BANNER
============================*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #FFFFFF 60%, #EAF7F0 100%);
  box-shadow: 0 -2px 12px 0 rgba(44,58,36,0.08);
  z-index: 2200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 24px;
  min-height: 60px;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.28s, opacity 0.22s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-message {
  color: #2C3A24;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(70,108,87,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 410px;
  width: 90%;
  box-shadow: 0 8px 40px 0 rgba(70,108,87,0.15);
  padding: 36px 23px 24px 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalFadeIn .24s cubic-bezier(.44,0,.22,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #466C57;
}
.cookie-modal .cookie-categories {
  width: 100%;
  margin-bottom: 16px;
}
.cookie-modal .category-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  width: 100%;
}
.cookie-modal .category-item label {
  font-size: 1rem;
  flex: 1 1 auto;
  color: #2C3A24;
  font-weight: 500;
}
.cookie-modal .category-item input[type="checkbox"] {
  accent-color: #466C57;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-modal .category-item.essential label {
  font-style: italic;
  opacity: .8;
}
.cookie-modal .category-item.essential input {
  display: none;
}
.cookie-modal .modal-btn-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
  width: 100%;
  justify-content: flex-end;
}

.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 22px;
  background: none;
  font-size: 1.7rem;
  color: #466C57;
  border: none;
  padding: 6px 9px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.13s;
  z-index: 10;
}
.cookie-modal-close:hover { background: #EAF7F0; }

/*---------------------------------------------
Responsive Styles (Mobile-first)
---------------------------------------------*/
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 992px) {
  .content-wrapper, .text-section {
    max-width: 96vw;
  }
  .product-grid {
    gap: 16px;
  }
  .services-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.05rem; }
  .section, section {
    padding: 30px 10px;
    margin-bottom: 34px;
  }
  header nav {
    padding: 16px 10px 10px 10px;
  }
  header nav ul {
    display: none;
  }
  header .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 18px;
    top: 13px;
  }
  .product-grid {
    flex-direction: column;
    gap: 18px;
  }
  .product-item {
    width: 100%;
    min-width: 0;
  }
  .services-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 10px;
  }
  footer nav {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.94rem;
  }
  .inspiration-articles ul li, .features ul li {
    margin-left: 18px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 10px 16px 10px;
    gap: 18px;
    font-size: 0.97rem;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  .container {
    padding-right: 5px;
    padding-left: 5px;
  }
  .mobile-nav {
    margin: 65px 0 0 18px;
    width: 95%;
    gap: 10px;
    font-size: 1rem;
  }
  .cookie-modal {
    padding: 14px 7px 16px 7px;
    min-width: 0; max-width: 99vw;
  }
}

/*=================
 Misc. Classes
==================*/
.thank-you-cta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 24px;
}
.confirmation-message ul {
  padding-left: 18px;
  list-style: disc;
}
.confirmation-message li { margin-bottom: 10px; }

/*----------------
 Utilities
-----------------*/
.bg-accent {
  background: #F3EFE6 !important;
}
.text-accent { color: #466C57 !important; }
.text-primary { color: #2C3A24 !important; }
.text-secondary { color: #466C57 !important; }

::-webkit-scrollbar {
  width: 8px;
  background: #e6ece1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #cdd8d3;
  border-radius: 5px;
}

/* Animation for hover/focus micro-interactions */
a, button, .primary-cta, .secondary-cta, .cookie-btn, .cookie-modal-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.2s, color 0.15s, box-shadow 0.16s, transform 0.18s;
}

/* End of style.css */
