/* --- 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F6F6F6;
  color: #0D4D4D;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #0D4D4D;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.29,1,.28,.99);
}
a:hover, a:focus {
  color: #E8C547;
  text-decoration: underline;
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  padding: 0;
}
/* --- BRAND COLORS --- */
:root {
  --color-primary: #0D4D4D;
  --color-secondary: #E8C547;
  --color-accent: #F6F6F6;
  --color-danger: #E94F37;
  --color-card: #fff;
  --color-dark: #1B2323;
  --color-grey: #e6e9ed;
  --color-success: #21b573;
}
/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.tagline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}
.price {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 12px;
  padding: 3px 10px;
  margin-left: 6px;
  font-size: 1rem;
}
.text-section ul, .text-section ol {
  margin: 8px 0 12px 24px;
}
.text-section li {
  margin-bottom: 7px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--color-card);
  box-shadow: 0 3px 12px 0 rgba(13,77,77,0.09);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 14px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 16px;
  transition: background 0.14s, color 0.14s;
  background: transparent;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-secondary);
  color: var(--color-primary);
  text-decoration: none;
}
.mobile-menu-toggle {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  padding: 6px 16px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(13,77,77,0.06);
  margin-left: auto;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffd84a;
}
/* Hide toggle by default on desktop */
.mobile-menu-toggle {
  display: none;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,77,77,0.93);
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.55,.13,.19,1.02);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 16px;
  align-self: flex-end;
  margin: 20px 22px 12px 0;
  padding: 3px 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(200,200,0,0.07);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffd84a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-left: 35px;
  margin-top: 20px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  padding: 14px 0;
  text-decoration: none;
  width: 100%;
  border-radius: 10px;
  transition: background 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(238,222,76,.38);
  color: #F6F6F6;
}

/* --- HERO & SECTIONS --- */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  transition: background 0.3s;
}
section:first-of-type {
  margin-top: 0;
}
@media (min-width: 900px) {
  section {
    padding-left: 0;
    padding-right: 0;
  }
}
.content-wrapper {
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
  padding: 0;
}

/* --- TEXT + IMAGE FLEX SECTIONS (if any appear) --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- FLEX GRIDS --- */
.feature-grid,
.card-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 10px 0;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .feature-grid,
  .card-grid,
  .card-container,
  .content-grid {
    gap: 16px;
    flex-direction: column;
  }
}
.card, .feature-grid > div {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 3px 12px 0 rgba(13,77,77,0.09);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.27s, transform 0.18s;
  min-width: 230px;
  max-width: 370px;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(13,77,77,0.16);
  transform: translateY(-5px) scale(1.025) rotate(-1.2deg);
  z-index: 2;
}
.feature-grid img {
  max-width: 56px;
  margin-bottom: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #e8c54733;
  background: #fffbe6;
  padding: 8px;
  animation: popin 0.9s cubic-bezier(.34,1.43,.33,.86);
}
@keyframes popin {
  0% { transform: scale(0.5) rotate(-20deg); opacity: 0; }
  60% { transform: scale(1.1) rotate(8deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}

/* --- CARDS SHARED LAYOUT --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #FFFEEF;
  box-shadow: 0 3px 12px 0 rgba(245, 183, 36, 0.1);
  margin-bottom: 20px;
  font-size: 1rem;
  color: #0C0B09;
  position: relative;
  border-left: 6px solid var(--color-secondary);
  min-height: 80px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(246, 197, 71, 0.17);
  transform: scale(1.025) rotate(0.8deg);
}
.testimonial-card strong {
  color: #0D4D4D;
  font-size: 1rem;
}

/* --- BUTTONS & CTAS --- */
.cta {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.17rem;
  letter-spacing: 0.04em;
  text-align: center;
  border: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px #E8C54733;
  transition: background 0.16s, color 0.16s, transform 0.13s;
  margin-top: 14px;
}
.cta:hover, .cta:focus {
  background: #ffd84a;
  color: #0D4D4D;
  transform: scale(1.050) rotate(-1deg);
  text-decoration: none;
}
.cta.primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 12px #0d4d4d26;
  border: 2px solid var(--color-primary);
}
.cta.primary:hover, .cta.primary:focus {
  background: #057878;
  color: #fff;
}
.cta.secondary {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-primary);
  color: #fff;
}

/* --- FORMS & CONTACT --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.contact-details a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .contact-details {
    font-size: 0.97rem;
  }
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  padding: 24px 0 0 0;
  color: #EFEFE2;
  font-size: 0.98rem;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 18px 0 12px 0;
}
footer a {
  color: #E8C547;
  text-decoration: none;
  transition: color 0.13s;
}
footer a:hover, footer a:focus {
  color: #f6f6f6;
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-end;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.99rem;
  color: #CDE5D7;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: box-shadow 0.13s, transform 0.16s;
  border: 2px solid #e8c54733;
  background: #fffbe6;
  box-shadow: 0 1px 6px 0 #e8c5473b;
}
.social-links a:hover img {
  box-shadow: 0 0 12px 0 #E8C54769;
  transform: scale(1.13) rotate(-2deg);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    align-items: flex-start;
  }
}

/* --- MISC LISTS, BULLETS ETC --- */
ul, ol {
  padding-left: 22px;
}
li {
  margin-bottom: 8px;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}

/* --- SERVICE HIGHLIGHT (photoprochazky) --- */
.service-highlight {
  background: #E8C54714;
  border-left: 6px solid var(--color-secondary);
  border-radius: 14px;
  padding: 19px;
  margin: 14px 0 14px 0;
  font-size: 1.07rem;
  color: #153838;
}

/* --- SPECIAL LAYOUTS --- */
.opening-hours ul {
  padding-left: 0;
}
.opening-hours li {
  list-style: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 7px 16px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-weight: 700;
}
.map-location {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: var(--color-primary);
}

/* --- FLEX .feature-item pattern --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 #e8c5470a;
  padding: 18px 16px;
}

/* --- ANIMATION/MICRO-INTERACTIONS ON CARDS AND BUTTONS --- */
.card, .feature-grid > div, .testimonial-card, .cta,
footer .content-wrapper > div, .service-highlight {
  will-change: transform, box-shadow;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fffbe6;
  border-top: 4px solid var(--color-secondary);
  box-shadow: 0 -2px 18px 0 #e8c54733;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  z-index: 11111;
  font-size: 1.03rem;
  animation: banner-slide-in 0.65s cubic-bezier(.34,1.4,.26,.89);
}
@keyframes banner-slide-in {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner button {
  margin-right: 13px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  border-radius: 18px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 2px 8px #e8c54726;
}
.cookie-btn.accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #38c890;
}
.cookie-btn.reject {
  background: var(--color-danger);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ee6633;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffd84a;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(16,48,54,0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 22222;
  animation: modal-fade-in 0.38s;
}
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-content {
  background: #fffbe6;
  border-radius: 22px;
  padding: 38px 26px 28px 26px;
  box-shadow: 0 4px 32px 0 #c1b46c60;
  max-width: 432px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.1rem;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 12px;
  line-height: 1;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
}
.cookie-toggle {
  appearance: none;
  background: #e8c54755;
  width: 38px;
  height: 20px;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin: 0 8px 0 0;
  transition: background 0.21s;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  box-shadow: 0 1px 2px #c1b46c77;
  transition: left 0.19s, background 0.13s;
}
.cookie-toggle:checked:before {
  left: 20px;
  background: #fffbe6;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cookie-always-on {
  font-size: 0.98em;
  color: #758854;
  font-weight: 700;
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 1100px) {
  .feature-grid, .card-grid, .content-grid, .card-container {
    justify-content: center;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  header img {
    height: 38px;
  }
  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.15rem; }
  .card, .feature-grid > div { min-width: unset; max-width: unset; }
  .feature-grid,
  .card-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    align-items: flex-start;
    gap: 6px;
  }
}

/* --- DYNAMIC / PLAYFUL ANIMATIONS --- */
.cta, .card, .testimonial-card, .feature-grid > div, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .footer-nav a {
  transition: 
    background 0.16s, color 0.15s, box-shadow 0.19s, transform 0.17s;
}
.cta:active {
  transform: scale(0.94) rotate(1.1deg);
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.96) rotate(-1.1deg);
}
.card::after, .feature-grid > div::after {
  content: '';
  display: block;
  position: absolute;
  width: 42px; height: 42px;
  right: -12px; top: -13px;
  border-radius: 50%;
  z-index: 1;
  background: var(--color-secondary);
  opacity: 0.15;
  pointer-events: none;
  animation: spot-bubble 2.2s infinite linear alternate;
}
@keyframes spot-bubble {
  from { transform: scale(1) rotate(2deg); }
  to { transform: scale(1.33) rotate(-6deg); }
}

/* --- ACCORDIONS, ALERTS ETC (future proofing) --- */
.alert {
  background: #ffdd54;
  color: #0D4D4D;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 9px #e8c54733;
}

/* --- PRINT STYLES (MINIMAL) --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}

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