/* ====================================================
   Scandinavian Clean CSS for Czeskie Przygody
   Mobile-first, fully responsive, flexbox-only layout
   Colors, fonts, and layout per brand spec and design brief
==================================================== */

/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F7F6F2;
  color: #224C5E;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  color: #224C5E;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
p, ul, ol { font-size: 1rem; margin-bottom: 14px; }
ul, ol { margin-left: 20px; }
li { margin-bottom: 8px; }
strong { color: #224C5E; font-weight: 700; }
a {
  color: #224C5E;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #B85833;
  text-decoration: underline;
}

/* Utility classes */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

/* HEADER */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(34,76,94,0.05);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 6px;
  border-radius: 3px;
  transition: color 0.16s, background 0.16s;
}
nav a.cta-primary {
  background: #224C5E;
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  margin-left: 16px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(34,76,94,0.08);
  border: none;
  outline: none;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: #B85833;
  color: #fff;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #224C5E;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 24px;
  z-index: 1003;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #EEDFB8;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #F7F6F2;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.55,.05,.57,.95);
  box-shadow: 2px 0 32px rgba(34,76,94,0.12);
  padding: 36px 24px 24px 24px;
}
.mobile-menu.active {
  transform: translateX(0%);
  transition: transform 0.35s cubic-bezier(.43,.15,.33,1);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #224C5E;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B85833;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 44px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #224C5E;
  padding: 12px 6px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EEDFB8;
  color: #B85833;
}

/* Hide desktop menu on mobile, adjust mobile menu/display nav toggle */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
  header nav {
    display: flex;
  }
}

/* SECTIONS & FLEX LAYOUTS (MANDATORY PATTERNS) */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
}
.features-section ul,
.services-section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 0 0;
  padding-left: 0;
}
.features-section ul li, .services-section ul li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(34,76,94,0.06);
  gap: 14px;
  padding: 16px 22px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #224C5E;
  min-width: 210px;
  flex: 1 1 250px;
  margin-bottom: 12px;
  transition: box-shadow 0.21s, background 0.19s;
}
.features-section ul li:hover, .services-section ul li:hover {
  box-shadow: 0 5px 24px 0 rgba(34,76,94,0.13);
  background: #FAF8F4;
}
.features-section ul li img,
.services-section ul li img {
  width: 34px;
  height: 34px;
  margin-right: 6px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(34,76,94,0.07);
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  min-width: 200px;
  transition: box-shadow 0.18s;
}
.card:hover { box-shadow: 0 8px 28px 0 rgba(34,76,94,0.13); }

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

.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: 18px;
  box-shadow: 0 4px 28px 0 rgba(34,76,94,0.09);
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card blockquote {
  color: #224C5E;
  background: none;
  line-height: 1.5;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: #B85833;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,76,94,0.06);
  margin-bottom: 20px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(34,76,94,0.08);
  padding: 26px 22px 22px 22px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 20px;
  flex: 1 1 220px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.18s;
}
.service-card span.price {
  color: #B85833;
  font-weight: 600;
  font-size: 1.06rem;
  align-self: flex-end;
  margin-top: 10px;
}
.service-card:hover {
  box-shadow: 0 8px 28px 0 rgba(34,76,94,0.13);
  transform: translateY(-4px) scale(1.012);
}


/**** HERO SECTION ****/
.hero-section {
  background: #EEDFB8;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 26px rgba(34,76,94,0.11);
  margin-bottom: 60px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
}
.hero-section h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.6rem;
  line-height: 1.18;
  color: #224C5E;
  font-weight: 700;
}
.hero-section .subtitle, .hero-section p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.16rem;
  color: #3B5B73;
  max-width: 600px;
  margin-bottom: 24px;
}
.hero-section .cta-primary {
  background: #224C5E;
  color: #fff;
  padding: 13px 32px;
  border-radius: 32px;
  font-size: 1.15rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 16px 0 rgba(34,76,94,0.11);
  transition: background 0.22s, color 0.22s, box-shadow 0.2s;
}
.hero-section .cta-primary:hover, .hero-section .cta-primary:focus {
  background: #B85833;
  color: #fff;
  box-shadow: 0 8px 34px 0 rgba(184,88,51,0.13);
}

/**** CTA SECTION ****/
.cta-section {
  background: #F7F6F2;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(34,76,94,0.09);
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-section h2 { color: #224C5E; font-size: 2.0rem; font-weight: 600; }
.cta-section p { color: #3B5B73; }
.cta-section .cta-primary {
  margin-top: 18px;
  margin-bottom: 8px;
  background: #224C5E;
  color: #fff;
  padding: 13px 32px;
  border-radius: 32px;
  font-size: 1.11rem;
  font-family: 'Oswald', Arial, sans-serif;
  box-shadow: 0 3px 16px 0 rgba(34,76,94,0.09);
  transition: background 0.22s, color 0.22s, box-shadow 0.20s;
}
.cta-section .cta-primary:hover, .cta-section .cta-primary:focus {
  background: #B85833;
  color: #fff;
  box-shadow: 0 8px 34px 0 rgba(184,88,51,0.11);
}

/**** BUTTONS ****/
.cta-primary, button, .button {
  background: #224C5E;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 30px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.2s, transform 0.17s;
  box-shadow: 0 2px 12px 0 rgba(34,76,94,0.08);
}
.cta-primary:hover, button:hover, .button:hover,
.cta-primary:focus, button:focus, .button:focus {
  background: #B85833;
  color: #fff;
  box-shadow: 0 8px 36px 0 rgba(184,88,51,0.10);
  outline: none;
  transform: translateY(-2px) scale(1.025);
}

/**** TABLES ****/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 0 0;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(34,76,94,0.04);
  overflow: hidden;
}
thead {
  background: #EEDFB8;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
}
th {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  color: #224C5E;
}
tbody td {
  background: #fff;
  color: #224C5E;
}
tbody tr:nth-child(even) td {
  background: #FAF8F4;
}

/**** ADDRESS + ICONS ****/
address {
  font-style: normal;
  color: #224C5E;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
}
address a {
  color: #224C5E;
  text-decoration: underline;
  font-size: 1rem;
}
address img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}

/**** FOOTER ****/
footer {
  background: #224C5E;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  margin-top: 32px;
  padding-bottom: 10px;
  box-shadow: 0 -2px 14px rgba(34,76,94,0.11);
}
footer section {
  padding: 40px 20px 20px 20px;
  margin-bottom: 0;
}
footer .container {
  flex-direction: column;
  gap: 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 2px 6px;
  border-radius: 3px;
  transition: background 0.2s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #EEDFB8;
  color: #224C5E;
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  margin-top: 2px;
  gap: 16px;
  flex-direction: row;
}
.footer-contact img {
  width: 48px;
  height: auto;
  margin-right: 8px;
}
.footer-contact address {
  color: #fff;
  font-size: 1rem;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}
.social-links a img {
  width: 29px;
  height: 29px;
  filter: brightness(0) invert(1);
  transition: filter 0.18s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: brightness(1) invert(0) sepia(0.5) saturate(8) hue-rotate(-25deg);
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FAF8F4;
  color: #224C5E;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 12px 26px 12px;
  box-shadow: 0 -2px 19px 0 rgba(34,76,94,0.09);
  z-index: 3000;
  font-size: 1rem;
  animation: cookieBannerSlideIn 0.40s cubic-bezier(.5,.01,.07,1.01);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 9px;
}
.cookie-banner button {
  padding: 11px 24px;
  border-radius: 28px;
  border: none;
  background: #224C5E;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 1px 10px 0 rgba(34,76,94,0.10);
}
.cookie-banner button:last-child {
  margin-right: 0;
}
.cookie-banner button.accept {
  background: #224C5E;
}
.cookie-banner button.reject {
  background: #B85833;
}
.cookie-banner button.settings {
  background: #EEDFB8;
  color: #224C5E;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #B85833;
  color: #fff;
  box-shadow: 0 3px 16px rgba(184,88,51,.12);
  outline: none;
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: #224C5E;
  line-height: 1.55;
  text-align: center;
}

/**** COOKIE MODAL POPUP ****/
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,76,94,0.27);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.36s cubic-bezier(.63,.06,.41,1.05);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  padding: 32px 30px 26px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 36px 0 rgba(34,76,94,0.17);
  min-width: 320px;
  max-width: 97vw;
  color: #224C5E;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalPopIn 0.26s cubic-bezier(.6,-0.28,.56,1.22);
}
@keyframes cookieModalPopIn {
  0% { transform: scale(0.9) translateY(45px); opacity: 0.4; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-modal .cookie-modal-header h3 {
  font-size: 1.35rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #224C5E;
}
.cookie-modal .cookie-modal-close {
  background: #B85833;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #A03400;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 0 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 1.15em;
  height: 1.15em;
  border-radius: 6px;
  accent-color: #224C5E;
  margin-right: 10px;
}
/* Always enabled category */
.cookie-modal .cookie-category.essential {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .cookie-category-label {
  font-weight: 600;
  color: #224C5E;
}
.cookie-modal .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}

/**** RESPONSIVE BREAKPOINTS ****/
@media (max-width: 1200px) {
  .container { max-width: 95vw; }
  .card, .service-card { min-width: 180px; }
  .service-cards { gap: 16px; }
  .features-section ul li, .services-section ul li { min-width: 140px; padding: 13px 13px; }
}
@media (max-width: 900px) {
  .container { padding: 0 6vw; }
  .service-cards { flex-direction: column; gap: 22px; }
  .service-card { width: 100%; min-width: 0; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.53rem; }
  .hero-section { padding: 30px 5vw 45px 5vw; border-radius: 0 0 18px 18px; }
  section, .section { padding: 30px 5vw; border-radius: 10px; }
  .features-section ul, .services-section ul { flex-direction: column; gap: 19px; }
  .card-container, .content-grid, .service-cards { flex-direction: column; gap: 18px; }
  .testimonial-card { padding: 18px; min-width: 0; font-size: 0.98rem; }
  .text-image-section { flex-direction: column; gap: 20px; }
  .footer-contact { flex-direction: column; gap: 12px; }
  .cookie-modal .cookie-modal-content { min-width: 0; padding: 18px 11px 17px 11px; }
}
@media (max-width: 560px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.01rem; }
  section, .hero-section, .cta-section { padding: 22px 2vw; }
  .container { padding: 0 2vw; }
  .service-card { padding: 14px 10px 12px 10px; }
}

/**** FORM ELEMENTS ****/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #EEDFB8;
  border-radius: 6px;
  padding: 10px 13px;
  margin-bottom: 14px;
  background: #fff;
  transition: border-color 0.15s;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #B85833;
  outline: none;
}
label {
  font-size: 1rem;
  color: #224C5E;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

/**** MISCELLANEOUS ****/
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* Remove tap highlight for mobile */
* {
  -webkit-tap-highlight-color: rgba(34,76,94,0.1);
}

/* Selection coloring */
::selection {
  background: #EEDFB8;
  color: #224C5E;
}

/* Hide unwanted number input arrows in Chrome */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* Hide scroll on body when modal/menu open */
body.menu-open, body.cookie-modal-open { overflow: hidden !important; }

/* Accessibility states */
:focus-visible {
  outline: 2px solid #EEDFB8;
  outline-offset: 0;
  border-radius: 4px;
}

/* ENFORCE ALL LAYOUTS ONLY USE FLEXBOX! NO GRID!
No display:grid, grid-* etc anywhere in this code */

/* --- END OF STYLE.CSS --- */
