@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital@1&display=swap');
.strip[data-id="03fd72"] {
  --section-id: "03fd72";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/03fd72";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/03fd72";
  /* Mobile Toggle */
  /* Mobile menu open state */
}
.strip[data-id="03fd72"] .main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 253, 240, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(90, 99, 69, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.strip[data-id="03fd72"] .header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 90px;
  transition: height 0.3s ease;
}
.strip[data-id="03fd72"] .logo-zone {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.strip[data-id="03fd72"] .logo-zone:hover {
  transform: scale(1.02);
}
.strip[data-id="03fd72"] .logo-img {
  height: 55px;
  width: 55px;
  object-fit: contain;
  border-radius: 50%;
}
.strip[data-id="03fd72"] .logo-text {
  display: flex;
  flex-direction: column;
}
.strip[data-id="03fd72"] .logo-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4A5235; /* Darker sage for better contrast */
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.strip[data-id="03fd72"] .logo-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  color: #5A6345;
  opacity: 0.85;
  margin: 2px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.strip[data-id="03fd72"] .nav-zone {
  display: flex;
  gap: 35px;
  flex: 2;
  justify-content: center;
}
.strip[data-id="03fd72"] .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4A5235;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}
.strip[data-id="03fd72"] .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #B38B45; /* Darker gold */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.strip[data-id="03fd72"] .nav-link:hover {
  color: #B38B45;
}
.strip[data-id="03fd72"] .nav-link:hover:after {
  width: 100%;
}
.strip[data-id="03fd72"] .cta-zone {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.strip[data-id="03fd72"] .cta-button {
  font-family: "Montserrat", sans-serif;
  background-color: #B38B45;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 50px; /* Rounded pill style */
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(179, 139, 69, 0.2);
}
.strip[data-id="03fd72"] .cta-button:hover {
  background-color: #8E6E36;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(179, 139, 69, 0.3);
}
.strip[data-id="03fd72"] .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(90, 99, 69, 0.05);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.3s ease;
}
.strip[data-id="03fd72"] .mobile-toggle:hover {
  background: rgba(90, 99, 69, 0.1);
}
.strip[data-id="03fd72"] .mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #4A5235;
  transition: 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  margin: 2.5px 0;
}
@media (max-width: 1100px) {
  .strip[data-id="03fd72"] .header-container {
    height: 80px;
    padding: 0 25px;
  }
  .strip[data-id="03fd72"] .nav-zone {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFDF0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .strip[data-id="03fd72"] .nav-zone.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
  }
  .strip[data-id="03fd72"] .nav-link {
    font-size: 18px;
  }
  .strip[data-id="03fd72"] .mobile-toggle {
    display: flex;
  }
  .strip[data-id="03fd72"] .cta-zone {
    display: none;
  }
}
.strip[data-id="03fd72"] .mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.strip[data-id="03fd72"] .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.strip[data-id="03fd72"] .mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}.strip[data-id="24f478"] {
  --section-id: "24f478";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/24f478";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/24f478";
}
.strip[data-id="24f478"] .forum-section {
  background-color: #f9f7f2;
  padding: 80px 20px;
  font-family: "Lato", sans-serif;
}
.strip[data-id="24f478"] .forum-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.strip[data-id="24f478"] .forum-section .forum-header {
  margin-bottom: 50px;
}
.strip[data-id="24f478"] .forum-section .forum-header .icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
.strip[data-id="24f478"] .forum-section .forum-header .icon-wrapper svg {
  width: 100%;
  height: 100%;
}
.strip[data-id="24f478"] .forum-section .forum-header h2 {
  color: #8ca38e;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.strip[data-id="24f478"] .forum-section .forum-header .intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}
.strip[data-id="24f478"] .forum-section .forum-header .btn-login {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(to right, #f2d2d2, #c5a059);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strip[data-id="24f478"] .forum-section .forum-header .btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.strip[data-id="24f478"] .forum-section .topics-list {
  text-align: left;
}
.strip[data-id="24f478"] .forum-section .topics-list h3 {
  font-size: 1.3rem;
  color: #8ca38e;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.strip[data-id="24f478"] .forum-section .topics-list .topic-card {
  background: #fff;
  border: 0.5px solid #8ca38e;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.strip[data-id="24f478"] .forum-section .topics-list .topic-card:hover {
  transform: translateX(10px);
}
.strip[data-id="24f478"] .forum-section .topics-list .topic-card .topic-name {
  font-weight: 700;
  color: #8ca38e;
  font-size: 1.1rem;
}
.strip[data-id="24f478"] .forum-section .topics-list .topic-card .arrow {
  color: #c5a059;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .strip[data-id="24f478"] .forum-section {
    padding: 50px 20px;
  }
  .strip[data-id="24f478"] .forum-section .forum-header h2 {
    font-size: 2rem;
  }
}.strip[data-id="9f8c4a"] {
  --section-id: "9f8c4a";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/9f8c4a";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/9f8c4a";
}
.strip[data-id="9f8c4a"] .reviews-section {
  background-color: #f4f7f4;
  padding: 100px 20px;
  overflow: hidden;
}
.strip[data-id="9f8c4a"] .reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.strip[data-id="9f8c4a"] .reviews-section h2 {
  font-family: "Montserrat", sans-serif;
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.strip[data-id="9f8c4a"] .reviews-section .subtitle {
  color: #666;
  margin-bottom: 60px;
  font-size: 1.1rem;
}
.strip[data-id="9f8c4a"] .reviews-section .carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.strip[data-id="9f8c4a"] .reviews-section .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.strip[data-id="9f8c4a"] .reviews-section .review-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.strip[data-id="9f8c4a"] .reviews-section .review-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #c5a059;
  margin-bottom: 30px;
}
.strip[data-id="9f8c4a"] .reviews-section .review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strip[data-id="9f8c4a"] .reviews-section .review-content {
  position: relative;
  padding: 0 40px;
}
.strip[data-id="9f8c4a"] .reviews-section .review-content .quote-icon {
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 80px;
  color: rgba(197, 160, 89, 0.2);
  font-family: serif;
  line-height: 1;
}
.strip[data-id="9f8c4a"] .reviews-section .review-content .quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 24px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.strip[data-id="9f8c4a"] .reviews-section .review-content .author {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
}
.strip[data-id="9f8c4a"] .reviews-section .carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.strip[data-id="9f8c4a"] .reviews-section .carousel-controls button {
  background: #fff;
  border: 1px solid #c5a059;
  color: #c5a059;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.strip[data-id="9f8c4a"] .reviews-section .carousel-controls button:hover {
  background: #c5a059;
  color: #fff;
}
@media (max-width: 768px) {
  .strip[data-id="9f8c4a"] .reviews-section {
    padding: 60px 20px;
  }
  .strip[data-id="9f8c4a"] .reviews-section .carousel-track {
    flex-direction: column;
    transform: none !important;
  }
  .strip[data-id="9f8c4a"] .reviews-section .review-item {
    margin-bottom: 50px;
    min-width: auto;
  }
  .strip[data-id="9f8c4a"] .reviews-section .carousel-controls {
    display: none;
  }
}.strip[data-id="7a8eb8"] {
  --section-id: "7a8eb8";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/7a8eb8";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/7a8eb8";
  /* Subtle decorative pattern */
}
.strip[data-id="7a8eb8"] .footer-section {
  background-color: #4F7942;
  color: #F5F5DC;
  padding: 100px 0 50px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id="7a8eb8"] .footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5f5dc' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.strip[data-id="7a8eb8"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.strip[data-id="7a8eb8"] .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 80px;
}
.strip[data-id="7a8eb8"] .footer-col h3 {
  color: #D4AF37; /* Slightly more vibrant gold for better contrast */
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
}
.strip[data-id="7a8eb8"] .footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #D4AF37;
}
.strip[data-id="7a8eb8"] .contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.strip[data-id="7a8eb8"] .footer-col p, .strip[data-id="7a8eb8"] .footer-col a {
  color: #F5F5DC;
  text-decoration: none;
  line-height: 1.6;
  font-size: 15px;
  transition: color 0.3s ease;
}
.strip[data-id="7a8eb8"] .footer-col a:hover {
  color: #D4AF37;
}
.strip[data-id="7a8eb8"] .map-wrapper {
  width: 100%;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  filter: grayscale(0.8) sepia(0.1) brightness(0.9);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.5s ease;
}
.strip[data-id="7a8eb8"] .map-wrapper:hover {
  filter: none;
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}
.strip[data-id="7a8eb8"] .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.strip[data-id="7a8eb8"] .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.strip[data-id="7a8eb8"] .social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strip[data-id="7a8eb8"] .social-icon:hover {
  background-color: #D4AF37;
  color: #4F7942;
  transform: rotate(15deg) scale(1.1);
  border-color: #D4AF37;
}
.strip[data-id="7a8eb8"] .social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.strip[data-id="7a8eb8"] .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.strip[data-id="7a8eb8"] .form-group input,
.strip[data-id="7a8eb8"] .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(245, 245, 220, 0.05);
  border: 1px solid rgba(245, 245, 220, 0.2);
  border-radius: 8px;
  color: #F5F5DC;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.strip[data-id="7a8eb8"] .form-group input:focus,
.strip[data-id="7a8eb8"] .form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
  background: rgba(245, 245, 220, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
.strip[data-id="7a8eb8"] .form-group textarea {
  height: 100px;
  resize: none;
}
.strip[data-id="7a8eb8"] .submit-btn {
  background-color: #FFB7C5;
  color: #1a1a1a;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 183, 197, 0.2);
}
.strip[data-id="7a8eb8"] .submit-btn:hover {
  background-color: #FFC5D1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 197, 0.3);
}
.strip[data-id="7a8eb8"] .submit-btn:active {
  transform: translateY(0);
}
.strip[data-id="7a8eb8"] .footer-bottom {
  border-top: 1px solid rgba(245, 245, 220, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.7;
}
.strip[data-id="7a8eb8"] .form-status {
  font-size: 14px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  display: none;
}
.strip[data-id="7a8eb8"] .form-status.success {
  background: rgba(144, 238, 144, 0.1);
  color: #90EE90;
  display: block;
}
.strip[data-id="7a8eb8"] .form-status.error {
  background: rgba(255, 183, 197, 0.1);
  color: #FFB7C5;
  display: block;
}
@media (max-width: 1100px) {
  .strip[data-id="7a8eb8"] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="7a8eb8"] .footer-section {
    padding: 70px 0 40px;
  }
  .strip[data-id="7a8eb8"] .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
@media (max-width: 550px) {
  .strip[data-id="7a8eb8"] .footer-grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id="7a8eb8"] .footer-col:last-child {
    order: -1; /* Move form up on mobile if desired, but user asked for end */
  }
  .strip[data-id="7a8eb8"] .footer-col:last-child {
    order: 10;
  }
}