/* 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;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333;
  background: #FCF8F3;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #1B262C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #FFD700;
}
ul, ol {
  padding-left: 24px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #1B262C;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
}
.subheadline {
  font-size: 1.20rem;
  margin-bottom: 20px;
  color: #856404;
  font-family: 'Open Sans', Arial, sans-serif;
}
p {
  font-size: 1rem;
  margin-bottom: 13px;
  color: #3d3d3b;
}
strong {
  color: #1B262C;
}

/* Sections General */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(210,168,95,0.06), 0 1.5px 4px rgba(210,168,95,0.07);
  display: flex;
  flex-direction: column;
}

/* HERO Section */
.hero {
  background: #FFF6DE;
  padding: 60px 20px 60px 20px;
  border-radius: 0 0 32px 32px;
  margin-bottom: 54px;
  box-shadow: 0 4px 16px rgba(255, 220, 88, 0.06);
}
.hero .content-wrapper {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* Main Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(44,36,13,0.06);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 85px;
}
.logo img {
  height: 52px;
  border-radius: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1B262C;
  padding: 8px 13px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: #FFD700;
  color: #574d12;
}

.cta-btn {
  font-family: 'Roboto Slab', serif;
  background: #FFD700;
  color: #1B262C;
  border: none;
  border-radius: 18px;
  padding: 12px 28px;
  font-size: 1.12rem;
  font-weight: 700;
  margin-left: 24px;
  box-shadow: 0 2px 16px rgba(210,168,95,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFC300;
  color: #1B262C;
  box-shadow: 0 4px 32px rgba(210,168,95,0.22);
  transform: translateY(-2px) scale(1.035);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #FFD700;
  color: #1B262C;
  border: none;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 2rem;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 1px 8px rgba(210,170,88,0.06);
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFC300;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.40s cubic-bezier(.52,.12,.26,1.12);
  box-shadow: 4px 0 20px rgba(27,30,44,0.12);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFD700;
  color: #1B262C;
  border: none;
  font-size: 2.2rem;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.12s;
  z-index: 10001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFC300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #1B262C;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: #FFE598;
  color: #B79725;
}

/* Main Content Wrapper */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Feature grid (index predsnosti) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 12px 0;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #FFF6DE;
  border-radius: 18px;
  flex: 1 1 220px;
  min-width: 210px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(255,215,0,0.06);
  transition: box-shadow 0.20s, transform 0.16s;
}
.feature-grid > div:hover {
  box-shadow: 0 12px 36px rgba(255,215,0,0.13);
  transform: translateY(-3px) scale(1.025);
}

.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 10px 10px 20px 20px;
  background: #ffe48b;
  padding: 5px;
}

/* Cards, Card Containers, FAQ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: 0 1.5px 12px rgba(168,144,95,0.07);
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 42px rgba(210,168,95,0.12);
  transform: scale(1.025);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** FAQ List *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.faq-list > div {
  background: #FFF6DE;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 1px 8px rgba(255,215,0,0.08);
}
.faq-list h3 {
  font-size: 1.15rem;
  margin-bottom: 7px;
}

/***** Testimonial Cards *****/
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px;
  background: #FFFDF8;
  border-radius: 18px;
  box-shadow: 0 2.5px 11px rgba(210,168,95,0.08);
  min-width: 260px;
  max-width: 385px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px rgba(210,168,95,0.14);
  transform: translateY(-2px) scale(1.017);
}
.testimonial-card p {
  color: #1B262C;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  font-size: 1rem;
  color: #B79725;
}
.testimonial-meta strong {
  color: #333;
}
.testimonial-card span {
  color: #B79725;
  font-weight: 600;
}

/***** Contact Quick/Details (index + kontakt) *****/
.contact-quick, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}
.contact-quick > div, .contact-details > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #fffbe9;
  border-radius: 18px;
  padding: 14px 22px;
  min-width: 190px;
  box-shadow: 0 1.5px 8px rgba(255,215,0,0.07);
}
.contact-quick img, .contact-details img {
  width: 32px;
  height: 32px;
  margin-right: 9px;
  background: #ffe48b;
  border-radius: 10px;
  padding: 5px;
}

.contact-quick .cta-btn {
  margin-left: 0;
}

/* Tables (for cenovnik) */
table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFDF8;
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1.5px 8px rgba(210,168,95,0.07);
}
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #ffe48b;
  color: #1B262C;
}
td {
  color: #403d12;
}
tbody tr:nth-child(odd) td {
  background: #FFF6DE;
}

/* Text-sections (privacy and text) */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
  background: transparent;
}
.text-section ul, .text-section ol {
  margin-bottom: 12px;
}

/***** FOOTER *****/
footer {
  background: #F7F5ED;
  border-radius: 30px 30px 0 0;
  margin-top: 60px;
  font-family: 'Open Sans', Arial, sans-serif;
  padding-top: 42px;
  box-shadow: 0 -2px 16px rgba(210,168,95,0.08);
}
.footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid #efeddb;
  padding-bottom: 30px;
}
.footer-top img {
  width: 92px;
  margin-bottom: 10px;
  border-radius: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  font-weight: bold;
  font-size: 1rem;
  color: #1B262C;
  padding: 5px 0;
  transition: color 0.12s;
}
.footer-nav a:hover {
  color: #FFD700;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  color: #706f4f;
  font-size: 1rem;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #ffe48b;
  padding: 2px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 11px;
}
.footer-social a {
  background: #FFD700;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  box-shadow: 0 2px 6px rgba(210,168,95,0.09);
  transition: background 0.18s;
}
.footer-social a:hover {
  background: #FFC300;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 10px 0;
}
.footer-policy {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-policy a {
  color: #716520;
  font-size: 0.97rem;
  font-weight: 400;
  transition: color 0.15s;
}
.footer-policy a:hover {
  color: #FFD700;
}
.footer-copy {
  color: #AAA073;
  font-size: 0.96rem;
}

/******** COOKIE CONSENT BANNER AND MODAL ********/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF8DD;
  color: #443d14;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 30px rgba(210,168,95,0.08);
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  z-index: 10005;
  font-size: 1rem;
  animation: slideInUp 0.5s ease;
}
@keyframes slideInUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .ban-text {
  flex: 1 1 260px;
  min-width: 0;
}
.cookie-consent-banner .ban-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 20px;
  margin: 0;
  transition: background 0.18s, color 0.12s, box-shadow 0.12s;
}

.cookie-btn.accept {
  background: #FFD700;
  color: #1B262C;
  box-shadow: 0 2px 10px rgba(210,168,95,0.14);
}
.cookie-btn.accept:hover { background: #FFC300; }
.cookie-btn.reject {
  background: #FFE598;
  color: #B79725;
}
.cookie-btn.reject:hover { background: #FFD700; color: #1B262C; }
.cookie-btn.settings {
  background: #fff;
  border: 1.5px solid #FFD700;
  color: #B79725;
}
.cookie-btn.settings:hover { background: #FFF6DE; }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,38,44,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #FFFDF8;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(210,168,95,0.17);
  padding: 36px 30px 30px 30px;
  min-width: 330px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 23px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 11px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  font-size: 1.08rem;
}
.cookie-category-toggle {
  accent-color: #FFD700;
  width: 22px; height: 22px;
}
.cookie-category-disabled {
  opacity: 0.46;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal-close {
  background: #FFD700;
  border: none;
  border-radius: 12px;
  color: #1B262C;
  font-size: 1.85rem;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal-close:hover {
  background: #FFC300;
}

/
/* UTILITY CLASSES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }
.gap-sm { gap: 8px; }
.gap-lg { gap: 32px; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1100px) {
  .container {
    max-width: 1000px;
  }
  .footer-top,
  header .container {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
  }
  table th, table td {
    font-size: 0.97rem;
    padding: 8px 8px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-copy {
    margin-top: 6px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    height: 65px;
    gap: 7px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .feature-grid,
  .testimonials-wrapper,
  .contact-quick,
  .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .footer-policy {
    gap: 8px;
    flex-wrap: wrap;
  }
  .footer-contact {
    gap: 4px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 14px;
    font-size: 0.97rem;
  }
  .cookie-consent-banner .ban-actions {
    flex-direction: column;
    gap: 9px;
    width: 100%;
    align-items: stretch;
  }
  .cookie-modal-content {
    padding: 21px 7vw 18px 7vw;
    min-width: unset;
    max-width: 100vw;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14.7px;
  }
  .hero { padding: 28px 8px 38px 8px; }
  .section, section { padding: 22px 7px; }
  .content-wrapper {
    gap: 15px;
  }
}

/****** Micro-interactions ******/
.cta-btn, .card, .feature-grid > div, .testimonial-card, .footer-social a {
  transition: box-shadow 0.18s, background 0.17s, border-color 0.17s, color 0.12s, transform 0.15s;
}

/******** END ********/
