@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

.strip.is-sticky {
    position: sticky;
    top: var(--proweb-sticky-offset, 0px);
    z-index: calc(900 - var(--proweb-sticky-index, 0));
}
.strip.underlay-sticky {
    margin-top: calc(-1 * var(--sticky-header-height, 0px)) !important;
}

.strip.underlay-sticky > :first-child {
    border-top: var(--sticky-header-height, 0px) solid transparent !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
}

/* In the admin editor, strip-controls is injected as the first child. We bypass it to style the actual user section content. */
.strip.underlay-sticky > .strip-controls {
    border-top: none !important;
}

.strip.underlay-sticky > .strip-controls + * {
    border-top: var(--sticky-header-height, 0px) solid transparent !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
}

/* Administration Editor: collapse strip divider immediately preceding an underlay strip */
.strip-divider:has(+ .strip.underlay-sticky) {
    height: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

.strip-divider:has(+ .strip.underlay-sticky) * {
    display: none !important;
}.strip[data-id=b9e5d7] {
  --section-id: "b9e5d7";
  --storage-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/b9e5d7";
  --public-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/b9e5d7";
}
.strip[data-id=b9e5d7] .header-section {
  width: 100%;
  background-color: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 163, 115, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}
.strip[data-id=b9e5d7] .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}
.strip[data-id=b9e5d7] .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.strip[data-id=b9e5d7] .logo-link:hover {
  transform: scale(1.02);
}
.strip[data-id=b9e5d7] .logo-img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}
.strip[data-id=b9e5d7] .nav-desktop {
  display: flex;
  align-items: center;
}
.strip[data-id=b9e5d7] .nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}
.strip[data-id=b9e5d7] .nav-desktop ul li a {
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}
.strip[data-id=b9e5d7] .nav-desktop ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #D4A373;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.strip[data-id=b9e5d7] .nav-desktop ul li a:hover {
  color: #D4A373;
}
.strip[data-id=b9e5d7] .nav-desktop ul li a:hover::after {
  width: 100%;
}
.strip[data-id=b9e5d7] .mobile-toggle {
  display: none;
  background: #D4A373;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: background 0.3s ease;
}
.strip[data-id=b9e5d7] .mobile-toggle:hover {
  background: #bc8a5f;
}
.strip[data-id=b9e5d7] .mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  transition: 0.3s;
}
.strip[data-id=b9e5d7] .nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FDFBF7;
  padding: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  z-index: 999;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}
.strip[data-id=b9e5d7] .nav-mobile.active {
  display: flex;
  max-height: 400px;
  padding: 10px 0;
}
.strip[data-id=b9e5d7] .nav-mobile a {
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
  text-transform: uppercase;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(212, 163, 115, 0.1);
  transition: background 0.3s ease, color 0.3s ease;
}
.strip[data-id=b9e5d7] .nav-mobile a:last-child {
  border-bottom: none;
}
.strip[data-id=b9e5d7] .nav-mobile a:hover {
  background-color: #F8F3EB;
  color: #D4A373;
}
@media (max-width: 992px) {
  .strip[data-id=b9e5d7] .nav-desktop {
    display: none;
  }
  .strip[data-id=b9e5d7] .mobile-toggle {
    display: flex;
  }
  .strip[data-id=b9e5d7] .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .strip[data-id=b9e5d7] .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .strip[data-id=b9e5d7] .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}.strip[data-id="5ced8f"] {
  --section-id: "5ced8f";
  --storage-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/5ced8f";
  --public-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/5ced8f";
}
.strip[data-id="5ced8f"] .hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #FDFBF7;
  /* Background image is set via CSS variable in PHTML style attribute */
  background-image: radial-gradient(circle at 100% 50%, transparent 20%, #FDFBF7 75%), var(--bg-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.strip[data-id="5ced8f"] .hero-section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 140px;
  height: 140px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%234A5D4E" opacity="0.04"><path d="M50 0 C70 30 100 40 100 70 C100 90 80 100 50 100 C20 100 0 90 0 70 C0 40 30 30 50 0"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
.strip[data-id="5ced8f"] .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.strip[data-id="5ced8f"] .content-wrapper {
  max-width: 580px;
  animation: fadeInUp 1s ease-out forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.strip[data-id="5ced8f"] h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.15;
  color: #2C3E50;
  margin: 0 0 32px 0;
  letter-spacing: -0.01em;
}
.strip[data-id="5ced8f"] .highlight {
  color: #4A5D4E;
  position: relative;
  display: inline-block;
}
.strip[data-id="5ced8f"] .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0 5 Q 25 0, 50 5 T 100 5" fill="none" stroke="%23D4A373" stroke-width="3" stroke-linecap="round"/></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.8;
}
.strip[data-id="5ced8f"] .description-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #34495E;
  margin: 0 0 24px 0;
}
.strip[data-id="5ced8f"] .cta-wrapper {
  margin-top: 48px;
}
.strip[data-id="5ced8f"] .cta-button {
  display: inline-block;
  background-color: #D4A373;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.2);
}
.strip[data-id="5ced8f"] .cta-button:hover {
  background-color: #c49363;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(212, 163, 115, 0.35);
}
@media (max-width: 1199px) {
  .strip[data-id="5ced8f"] .hero-section {
    background-image: radial-gradient(circle at 100% 50%, transparent 10%, #FDFBF7 85%), var(--bg-image);
  }
  .strip[data-id="5ced8f"] h1 {
    font-size: 56px;
  }
}
@media (max-width: 991px) {
  .strip[data-id="5ced8f"] .hero-section {
    background-image: linear-gradient(to bottom, rgba(253, 251, 247, 0.9), rgba(253, 251, 247, 0.7)), var(--bg-image);
    text-align: center;
    min-height: auto;
    padding: 120px 0 100px;
  }
  .strip[data-id="5ced8f"] .content-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  .strip[data-id="5ced8f"] h1 {
    font-size: 48px;
  }
  .strip[data-id="5ced8f"] .description-text p {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .strip[data-id="5ced8f"] h1 {
    font-size: 38px;
  }
  .strip[data-id="5ced8f"] .description-text p {
    font-size: 18px;
  }
  .strip[data-id="5ced8f"] .hero-section {
    padding: 80px 0;
  }
  .strip[data-id="5ced8f"] .cta-button {
    width: 100%;
    max-width: 320px;
  }
}.strip[data-id=af1473] {
  --section-id: "af1473";
  --storage-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/af1473";
  --public-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/af1473";
}
.strip[data-id=af1473] .benefits-section {
  background-color: #FDFBF7;
  padding: 100px 0;
  width: 100%;
}
.strip[data-id=af1473] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id=af1473] .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.strip[data-id=af1473] .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #4A5D4E;
  margin-bottom: 20px;
}
.strip[data-id=af1473] .section-header p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #666;
}
.strip[data-id=af1473] .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.strip[data-id=af1473] .benefit-card {
  background-color: #ffffff;
  border: 1px solid rgba(139, 157, 131, 0.3);
  padding: 50px 35px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.strip[data-id=af1473] .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #D4A373;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.strip[data-id=af1473] .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(74, 93, 78, 0.08);
  border-color: rgba(139, 157, 131, 0.6);
}
.strip[data-id=af1473] .benefit-card:hover::before {
  transform: scaleX(1);
}
.strip[data-id=af1473] .icon-circle {
  width: 90px;
  height: 90px;
  background-color: rgba(212, 163, 115, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}
.strip[data-id=af1473] .benefit-card:hover .icon-circle {
  background-color: #D4A373;
  transform: rotateY(180deg);
}
.strip[data-id=af1473] .icon-circle i {
  color: #D4A373;
  font-size: 36px;
  transition: all 0.4s ease;
}
.strip[data-id=af1473] .benefit-card:hover .icon-circle i {
  color: #ffffff;
  transform: rotateY(-180deg);
}
.strip[data-id=af1473] h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #4A5D4E;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.3;
}
.strip[data-id=af1473] p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #4f5b66;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1100px) {
  .strip[data-id=af1473] .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .strip[data-id=af1473] .benefits-section {
    padding: 70px 0;
  }
  .strip[data-id=af1473] .section-header h2 {
    font-size: 32px;
  }
  .strip[data-id=af1473] .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .strip[data-id=af1473] .benefit-card {
    padding: 40px 25px;
  }
}@charset "UTF-8";
.strip[data-id="2636ea"] {
  --section-id: "2636ea";
  --storage-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/2636ea";
  --public-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/2636ea";
  /* Decorative element */
  /* Enhanced decorative frame */
}
.strip[data-id="2636ea"] .wellness-section {
  background-color: rgba(139, 157, 131, 0.05);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.strip[data-id="2636ea"] .wellness-section::after {
  content: "🍃";
  position: absolute;
  bottom: -20px;
  left: 5%;
  font-size: 120px;
  opacity: 0.03;
  transform: rotate(-15deg);
  pointer-events: none;
}
.strip[data-id="2636ea"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="2636ea"] .split-layout {
  display: flex;
  align-items: center;
  gap: 100px;
}
.strip[data-id="2636ea"] .content-side {
  flex: 1;
  max-width: 550px;
}
.strip[data-id="2636ea"] .image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.strip[data-id="2636ea"] h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  color: #4A5D4E;
  line-height: 1.1;
  margin-bottom: 35px;
}
.strip[data-id="2636ea"] p {
  font-size: 19px;
  line-height: 1.7;
  color: #4A5D4E;
  margin-bottom: 25px;
  text-align: left;
}
.strip[data-id="2636ea"] .cta-wrapper {
  margin-top: 45px;
}
.strip[data-id="2636ea"] .cta-button {
  display: inline-block;
  padding: 18px 40px;
  border: 2px solid #D4A373;
  color: #D4A373;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 4px;
  font-size: 14px;
}
.strip[data-id="2636ea"] .cta-button:hover {
  background-color: #D4A373;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
  transform: translateY(-2px);
}
.strip[data-id="2636ea"] .image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
}
.strip[data-id="2636ea"] .image-frame::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 100%;
  height: 100%;
  border: 3px solid #D4A373;
  border-radius: 30px;
  z-index: -1;
  transition: all 0.5s ease;
}
.strip[data-id="2636ea"] .image-frame:hover::before {
  top: 15px;
  left: 15px;
}
.strip[data-id="2636ea"] .image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  aspect-ratio: 1.2/1;
}
@media (max-width: 1100px) {
  .strip[data-id="2636ea"] .split-layout {
    gap: 50px;
  }
  .strip[data-id="2636ea"] h2 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .strip[data-id="2636ea"] .wellness-section {
    padding: 80px 0;
  }
  .strip[data-id="2636ea"] .split-layout {
    flex-direction: column;
    gap: 70px;
    text-align: center;
  }
  .strip[data-id="2636ea"] .content-side {
    max-width: 100%;
    order: 1;
  }
  .strip[data-id="2636ea"] p {
    text-align: center;
    font-size: 18px;
  }
  .strip[data-id="2636ea"] h2 {
    font-size: 38px;
    margin-bottom: 25px;
  }
  .strip[data-id="2636ea"] .image-side {
    width: 100%;
    max-width: 600px;
    padding-right: 25px;
    order: 2;
  }
  .strip[data-id="2636ea"] .cta-wrapper {
    display: flex;
    justify-content: center;
  }
  .strip[data-id="2636ea"] .wellness-section::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .strip[data-id="2636ea"] h2 {
    font-size: 32px;
  }
  .strip[data-id="2636ea"] .cta-button {
    width: 100%;
    padding: 18px 20px;
  }
}@charset "UTF-8";
.strip[data-id="9b9ce7"] {
  --section-id: "9b9ce7";
  --storage-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/9b9ce7";
  --public-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/9b9ce7";
}
.strip[data-id="9b9ce7"] .nutrition-section {
  background-color: #FDFBF7;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.strip[data-id="9b9ce7"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}
.strip[data-id="9b9ce7"] .content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
.strip[data-id="9b9ce7"] .text-content {
  max-width: 750px;
  width: 100%;
  position: relative;
  z-index: 10;
}
.strip[data-id="9b9ce7"] h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #4A5D4E;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
}
.strip[data-id="9b9ce7"] .decoration-leaf {
  position: absolute;
  top: -30px;
  left: -50px;
  width: 100px;
  height: 100px;
  opacity: 0.08;
  color: #4A5D4E;
  pointer-events: none;
}
.strip[data-id="9b9ce7"] .description p {
  font-size: 18px;
  line-height: 1.8;
  color: #4A5D4E;
  margin: 0;
  text-align: left; /* Lepší čitelnost než justify */
}
.strip[data-id="9b9ce7"] .drop-cap::first-letter {
  float: left;
  font-size: 85px;
  line-height: 0.7;
  padding-top: 8px;
  padding-right: 15px;
  padding-left: 3px;
  color: #D4A373;
  font-family: "Playfair Display", serif;
}
.strip[data-id="9b9ce7"] .divider {
  height: 1px;
  background: linear-gradient(to right, #8B9D83, transparent);
  width: 150px;
  margin: 30px 0;
  opacity: 0.3;
}
.strip[data-id="9b9ce7"] .image-wrapper {
  width: 100%;
  margin: 40px 0 0;
  position: relative;
  z-index: 5;
}
.strip[data-id="9b9ce7"] .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 20px 20px 60px rgba(74, 93, 78, 0.1);
  border-radius: 2px;
}
.strip[data-id="9b9ce7"] .cta-button {
  display: inline-block;
  background-color: #D4A373;
  color: #FFFFFF;
  padding: 18px 40px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 40px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(212, 163, 115, 0.25);
  border-radius: 0;
}
.strip[data-id="9b9ce7"] .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 163, 115, 0.35);
  background-color: #c59363;
}
@media (min-width: 1024px) {
  .strip[data-id="9b9ce7"] .nutrition-section {
    padding: 120px 0;
  }
  .strip[data-id="9b9ce7"] .content-wrapper {
    flex-direction: row;
    align-items: center;
    min-height: 600px;
  }
  .strip[data-id="9b9ce7"] .text-content {
    padding-right: 100px;
  }
  .strip[data-id="9b9ce7"] .image-wrapper {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    margin: 0;
  }
  .strip[data-id="9b9ce7"] h2 {
    font-size: 56px;
    max-width: 650px;
  }
}
@media (max-width: 1023px) {
  .strip[data-id="9b9ce7"] h2 {
    font-size: 34px;
  }
  .strip[data-id="9b9ce7"] .decoration-leaf {
    left: -20px;
    width: 80px;
  }
  .strip[data-id="9b9ce7"] .image-wrapper {
    margin-top: 50px;
  }
  .strip[data-id="9b9ce7"] .cta-button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}.strip[data-id=a78213] {
  --section-id: "a78213";
  --storage-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/a78213";
  --public-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/a78213";
  /* Background Texture */
}
.strip[data-id=a78213] section {
  background-color: rgba(44, 62, 80, 0.03);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.strip[data-id=a78213] section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10L20 20M80 80L90 90M10 90L20 80M90 10L80 20' stroke='%232C3E50' stroke-opacity='0.03' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}
.strip[data-id=a78213] .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.strip[data-id=a78213] .image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.strip[data-id=a78213] .image-wrapper {
  width: 100%;
  max-width: 480px;
  height: 600px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.strip[data-id=a78213] .image-wrapper:hover {
  transform: translateY(-10px) rotateY(-5deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}
.strip[data-id=a78213] .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: scale 0.8s ease;
}
.strip[data-id=a78213] .image-wrapper:hover img {
  scale: 1.05;
}
.strip[data-id=a78213] .text-column {
  flex: 1;
  padding: 20px 0;
}
.strip[data-id=a78213] .badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(74, 93, 78, 0.1);
  color: #4A5D4E;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.strip[data-id=a78213] h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #2C3E50;
  margin-bottom: 30px;
  line-height: 1.15;
  position: relative;
}
.strip[data-id=a78213] h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4A5D4E;
  margin-top: 20px;
}
.strip[data-id=a78213] .description {
  margin-bottom: 40px;
}
.strip[data-id=a78213] p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 24px;
}
.strip[data-id=a78213] .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background-color: #4A5D4E;
  color: #ffffff;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(74, 93, 78, 0.2);
}
.strip[data-id=a78213] .cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.strip[data-id=a78213] .cta-button:hover {
  background-color: #3d4d40;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(74, 93, 78, 0.3);
}
.strip[data-id=a78213] .cta-button:hover i {
  transform: translateX(5px);
}
@media (max-width: 1024px) {
  .strip[data-id=a78213] .container {
    gap: 40px;
  }
  .strip[data-id=a78213] h2 {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  .strip[data-id=a78213] section {
    padding: 80px 20px;
  }
  .strip[data-id=a78213] .container {
    flex-direction: column;
    text-align: center;
  }
  .strip[data-id=a78213] .image-wrapper {
    height: 500px;
  }
  .strip[data-id=a78213] h2::after {
    margin: 20px auto 0;
  }
  .strip[data-id=a78213] .badge {
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .strip[data-id=a78213] section {
    padding: 60px 15px;
  }
  .strip[data-id=a78213] .image-wrapper {
    height: 400px;
  }
  .strip[data-id=a78213] h2 {
    font-size: 32px;
  }
  .strip[data-id=a78213] p {
    font-size: 16px;
  }
}.strip[data-id="64055b"] {
  --section-id: "64055b";
  --storage-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/64055b";
  --public-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/64055b";
  /* Decorative elements */
  /* Pulse animation simplified for better UX */
}
.strip[data-id="64055b"] .cta-banner {
  position: relative;
  padding: 140px 0;
  width: 100%;
  background-color: #FDFBF7;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip[data-id="64055b"] .cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 157, 131, 0.1) 0%, rgba(253, 251, 247, 0.2) 100%);
  z-index: 1;
}
.strip[data-id="64055b"] .decor-leaf {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}
.strip[data-id="64055b"] .leaf-1 {
  top: -50px;
  left: -50px;
  width: 300px;
  transform: rotate(15deg);
}
.strip[data-id="64055b"] .leaf-2 {
  bottom: -50px;
  right: -50px;
  width: 250px;
  transform: rotate(-15deg);
}
.strip[data-id="64055b"] .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.strip[data-id="64055b"] h3 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: #4A5D4E;
  margin-top: 0;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.strip[data-id="64055b"] .cta-text-wrapper {
  margin-bottom: 50px;
}
.strip[data-id="64055b"] p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #2C3E50;
  margin: 0 auto 15px;
  line-height: 1.6;
  max-width: 700px;
}
.strip[data-id="64055b"] p.highlight {
  font-weight: 700;
  color: #8B9D83;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.strip[data-id="64055b"] .cta-actions {
  margin-top: 20px;
}
.strip[data-id="64055b"] .cta-button-primary {
  background-color: #D4A373;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 22px 55px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(212, 163, 115, 0.3);
  position: relative;
  overflow: hidden;
}
.strip[data-id="64055b"] .cta-button-primary:hover {
  background-color: #4A5D4E;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(74, 93, 78, 0.3);
}
@keyframes softPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.strip[data-id="64055b"] .cta-button-primary {
  animation: softPulse 3s ease-in-out infinite;
}
.strip[data-id="64055b"] .cta-button-primary:hover {
  animation: none;
}
@media (max-width: 992px) {
  .strip[data-id="64055b"] h3 {
    font-size: 48px;
  }
  .strip[data-id="64055b"] .cta-banner {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .strip[data-id="64055b"] .cta-banner {
    padding: 80px 0;
    background-attachment: scroll;
  }
  .strip[data-id="64055b"] h3 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .strip[data-id="64055b"] p {
    font-size: 18px;
  }
  .strip[data-id="64055b"] .cta-button-primary {
    font-size: 18px;
    padding: 18px 40px;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
  }
  .strip[data-id="64055b"] .leaf-1, .strip[data-id="64055b"] .leaf-2 {
    width: 150px;
  }
}.strip[data-id="379b8f"] {
  --section-id: "379b8f";
  --storage-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/379b8f";
  --public-url: "https://preview-relaxacni-lazne-cz.praweb.cz/_section/379b8f";
}
.strip[data-id="379b8f"] .footer-section {
  background-color: #4A5D4E;
  padding: 80px 0 40px;
  color: #FDFBF7;
  font-family: "Open Sans", sans-serif;
}
.strip[data-id="379b8f"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="379b8f"] .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.strip[data-id="379b8f"] .logo-wrapper img {
  max-height: 80px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.strip[data-id="379b8f"] .logo-wrapper img:hover {
  transform: scale(1.05);
}
.strip[data-id="379b8f"] .social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.strip[data-id="379b8f"] .social-link {
  color: #FDFBF7;
  text-decoration: none;
  font-size: 20px;
  opacity: 0.7;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(253, 251, 247, 0.2);
  border-radius: 50%;
}
.strip[data-id="379b8f"] .social-link:hover {
  opacity: 1;
  color: #D4A373;
  border-color: #D4A373;
  transform: translateY(-3px);
  background: rgba(212, 163, 115, 0.1);
}
.strip[data-id="379b8f"] .footer-divider {
  width: 100%;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253, 251, 247, 0.2), transparent);
  margin: 10px 0;
}
.strip[data-id="379b8f"] .copyright-wrapper p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.6;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .strip[data-id="379b8f"] .footer-section {
    padding: 60px 0 30px;
  }
  .strip[data-id="379b8f"] .footer-content {
    gap: 25px;
  }
}