@import url('https://fonts.googleapis.com/css2?family=Inter&family=Outfit:wght@400;500;700&display=swap');
.strip[data-id="445b18"] {
  --section-id: "445b18";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/445b18";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/445b18";
  /* Logo Styles */
  /* Desktop Navigation */
  /* Actions & CTA */
  /* Mobile Toggle */
  /* Mobile Menu */
  /* Staggered animation for mobile menu items */
  /* Responsive */
}
.strip[data-id="445b18"] .header-main {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: rgba(250, 243, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 163, 115, 0.15);
  font-family: "Outfit", sans-serif;
  transition: background-color 0.3s ease;
}
.strip[data-id="445b18"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.strip[data-id="445b18"] .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.strip[data-id="445b18"] .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #D4A373;
  transition: opacity 0.3s ease;
}
.strip[data-id="445b18"] .logo:hover {
  opacity: 0.9;
}
.strip[data-id="445b18"] .logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.strip[data-id="445b18"] .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.strip[data-id="445b18"] .logo-text span {
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #D4A373;
}
.strip[data-id="445b18"] .logo-text small {
  font-size: 13px;
  font-weight: 500;
  color: #5D6648; /* Darker sage for better readability */
}
.strip[data-id="445b18"] .nav-desktop {
  display: block;
}
.strip[data-id="445b18"] .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 36px;
}
.strip[data-id="445b18"] .nav-list li a {
  text-decoration: none;
  color: #5D6648; /* Improved contrast: Darker Sage Green */
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.strip[data-id="445b18"] .nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFD93D;
  transition: width 0.3s ease;
}
.strip[data-id="445b18"] .nav-list li a:hover {
  color: #D4A373;
}
.strip[data-id="445b18"] .nav-list li a:hover::after {
  width: 100%;
}
.strip[data-id="445b18"] .header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.strip[data-id="445b18"] .cta-button {
  background-color: #D4A373;
  color: #FAF3E0;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.2);
  white-space: nowrap;
}
.strip[data-id="445b18"] .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 163, 115, 0.3);
  background-color: #c49262;
}
.strip[data-id="445b18"] .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: rgba(142, 151, 117, 0.1);
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.strip[data-id="445b18"] .mobile-toggle:hover {
  background: rgba(142, 151, 117, 0.2);
}
.strip[data-id="445b18"] .mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: #5D6648;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.strip[data-id="445b18"] .mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.strip[data-id="445b18"] .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.strip[data-id="445b18"] .mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.strip[data-id="445b18"] .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #FAF3E0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 1000;
  padding: 40px;
}
.strip[data-id="445b18"] .mobile-menu.active {
  right: 0;
}
.strip[data-id="445b18"] .nav-list-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}
.strip[data-id="445b18"] .nav-list-mobile li {
  margin: 20px 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li {
  opacity: 1;
  transform: translateX(0);
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(1) {
  transition-delay: 0.1s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(2) {
  transition-delay: 0.2s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(3) {
  transition-delay: 0.3s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(4) {
  transition-delay: 0.4s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(5) {
  transition-delay: 0.5s;
}
.strip[data-id="445b18"] .mobile-menu.active .nav-list-mobile li:nth-child(6) {
  transition-delay: 0.6s;
}
.strip[data-id="445b18"] .nav-list-mobile li a {
  text-decoration: none;
  color: #5D6648;
  font-size: 28px;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
  padding: 10px;
}
.strip[data-id="445b18"] .nav-list-mobile li a:hover {
  color: #D4A373;
}
.strip[data-id="445b18"] .cta-button-mobile {
  display: inline-block;
  margin-top: 30px;
  background-color: #D4A373;
  color: #FAF3E0;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.2);
}
@media (max-width: 1024px) {
  .strip[data-id="445b18"] .nav-list {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .strip[data-id="445b18"] .nav-desktop {
    display: none;
  }
  .strip[data-id="445b18"] .mobile-toggle {
    display: flex;
  }
  .strip[data-id="445b18"] .header-wrapper {
    height: 70px;
  }
  .strip[data-id="445b18"] .cta-button {
    display: none;
  }
}
@media (max-width: 480px) {
  .strip[data-id="445b18"] .container {
    padding: 0 16px;
  }
  .strip[data-id="445b18"] .logo-text span {
    font-size: 19px;
  }
  .strip[data-id="445b18"] .logo-icon {
    width: 36px;
    height: 36px;
  }
  .strip[data-id="445b18"] .logo-text small {
    font-size: 11px;
  }
}.strip[data-id="4b537b"] {
  --section-id: "4b537b";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/4b537b";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/4b537b";
}
.strip[data-id="4b537b"] .contact-map {
  background-color: #FAF3E0;
  padding: 80px 0;
  font-family: "Outfit", sans-serif;
}
.strip[data-id="4b537b"] .contact-map .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="4b537b"] .contact-map .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.strip[data-id="4b537b"] .contact-map h2 {
  color: #D4A373;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  margin-top: 0;
}
.strip[data-id="4b537b"] .contact-map p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}
.strip[data-id="4b537b"] .contact-map .hours-box {
  background-color: #FFD93D;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 40px;
}
.strip[data-id="4b537b"] .contact-map .hours-box strong {
  display: block;
  margin-bottom: 10px;
  color: #333;
}
.strip[data-id="4b537b"] .contact-map .hours-box p {
  margin-bottom: 0;
  color: #333;
}
.strip[data-id="4b537b"] .contact-map .hours-box small {
  display: block;
  margin-top: 5px;
  font-style: italic;
}
.strip[data-id="4b537b"] .contact-map .contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.strip[data-id="4b537b"] .contact-map .contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #D4A373;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.strip[data-id="4b537b"] .contact-map .contact-link i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}
.strip[data-id="4b537b"] .contact-map .contact-link:hover {
  transform: translateX(5px);
}
.strip[data-id="4b537b"] .contact-map .map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 450px;
}
.strip[data-id="4b537b"] .contact-map .map-container iframe {
  width: 100%;
  height: 100%;
  filter: sepia(0.2) hue-rotate(60deg) saturate(0.8);
}
@media (max-width: 991px) {
  .strip[data-id="4b537b"] .contact-map {
    padding: 60px 0;
  }
  .strip[data-id="4b537b"] .contact-map .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strip[data-id="4b537b"] .contact-map .map-container {
    height: 350px;
  }
}.strip[data-id=e7e87e] {
  --section-id: "e7e87e";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/e7e87e";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/e7e87e";
}
.strip[data-id=e7e87e] .contact-form-section {
  padding: 80px 0;
  font-family: "Outfit", sans-serif;
  background-color: #ffffff;
}
.strip[data-id=e7e87e] .contact-form-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id=e7e87e] .contact-form-section .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.strip[data-id=e7e87e] .contact-form-section .title-with-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
  color: #8A9A5B;
}
.strip[data-id=e7e87e] .contact-form-section .title-with-icon i {
  font-size: 1.5rem;
}
.strip[data-id=e7e87e] .contact-form-section .title-with-icon h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.strip[data-id=e7e87e] .contact-form-section h3 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  margin-top: 0;
}
.strip[data-id=e7e87e] .contact-form-section .modern-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.strip[data-id=e7e87e] .contact-form-section .modern-form .form-group {
  width: 100%;
}
.strip[data-id=e7e87e] .contact-form-section .modern-form input, .strip[data-id=e7e87e] .contact-form-section .modern-form textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #8A9A5B;
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.strip[data-id=e7e87e] .contact-form-section .modern-form input::placeholder, .strip[data-id=e7e87e] .contact-form-section .modern-form textarea::placeholder {
  color: #999;
}
.strip[data-id=e7e87e] .contact-form-section .modern-form input:focus, .strip[data-id=e7e87e] .contact-form-section .modern-form textarea:focus {
  border-bottom: 4px solid #D4A373;
}
.strip[data-id=e7e87e] .contact-form-section .modern-form .submit-btn {
  width: 100%;
  padding: 18px;
  background-color: #D4A373;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}
.strip[data-id=e7e87e] .contact-form-section .modern-form .submit-btn:hover {
  background-color: #c49363;
  transform: translateY(-2px);
}
.strip[data-id=e7e87e] .contact-form-section .modern-form .submit-btn:active {
  transform: translateY(0);
}
.strip[data-id=e7e87e] .contact-form-section .image-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  line-height: 0;
}
.strip[data-id=e7e87e] .contact-form-section .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}
@media (max-width: 991px) {
  .strip[data-id=e7e87e] .contact-form-section {
    padding: 60px 0;
  }
  .strip[data-id=e7e87e] .contact-form-section .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strip[data-id=e7e87e] .contact-form-section .image-wrapper {
    grid-row: 1;
  }
  .strip[data-id=e7e87e] .contact-form-section .image-wrapper img {
    aspect-ratio: 16/9;
  }
  .strip[data-id=e7e87e] .contact-form-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}.strip[data-id=a11ecc] {
  --section-id: "a11ecc";
  --storage-url: "https://test-r4fl4imp.praweb.cz/_section/a11ecc";
  --public-url: "https://test-r4fl4imp.praweb.cz/_section/a11ecc";
}
.strip[data-id=a11ecc] .footer-section {
  background-color: #6D7558;
  padding: 80px 0 50px 0;
  width: 100%;
  color: #FAF3E0;
}
.strip[data-id=a11ecc] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id=a11ecc] .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.strip[data-id=a11ecc] .footer-col h3 {
  color: #FFD93D;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.strip[data-id=a11ecc] .footer-col p,
.strip[data-id=a11ecc] .footer-col a {
  color: #FAF3E0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  margin: 0 0 12px 0;
  display: block;
  transition: all 0.3s ease;
}
.strip[data-id=a11ecc] .footer-col a:hover {
  color: #FFD93D;
  padding-left: 5px;
}
.strip[data-id=a11ecc] .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.strip[data-id=a11ecc] .contact-icon {
  flex-shrink: 0;
  color: #FFD93D;
  margin-top: 4px;
}
.strip[data-id=a11ecc] .social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.strip[data-id=a11ecc] .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #A45D5D;
  color: #FAF3E0;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.strip[data-id=a11ecc] .social-icon:hover {
  background-color: #FFD93D;
  color: #6D7558;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.strip[data-id=a11ecc] .footer-bottom {
  border-top: 1px solid rgba(250, 243, 224, 0.2);
  padding-top: 30px;
  text-align: center;
}
.strip[data-id=a11ecc] .footer-bottom p {
  color: #FAF3E0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .strip[data-id=a11ecc] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 640px) {
  .strip[data-id=a11ecc] .footer-section {
    padding: 60px 0 40px 0;
  }
  .strip[data-id=a11ecc] .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .strip[data-id=a11ecc] .footer-col h3 {
    justify-content: center;
  }
  .strip[data-id=a11ecc] .social-links {
    justify-content: center;
  }
  .strip[data-id=a11ecc] .contact-item {
    justify-content: center;
  }
  .strip[data-id=a11ecc] .footer-col a:hover {
    padding-left: 0;
  }
}