@import url('https://fonts.googleapis.com/css2?family=Montserrat&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="0e38db"] {
  --section-id: "0e38db";
  --storage-url: "https://test-gamma.proweb.cz/_section/0e38db";
  --public-url: "https://test-gamma.proweb.cz/_section/0e38db";
  /* Mobile styles */
}
.strip[data-id="0e38db"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(192, 192, 192, 0.3);
  padding: 12px 0;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.strip[data-id="0e38db"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.strip[data-id="0e38db"] .brand a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}
.strip[data-id="0e38db"] .brand a:hover {
  opacity: 0.8;
}
.strip[data-id="0e38db"] .brand .name {
  color: #191970;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  display: block;
}
.strip[data-id="0e38db"] .brand .sub {
  color: #555555;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}
.strip[data-id="0e38db"] .nav-menu ul {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.strip[data-id="0e38db"] .nav-menu a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
}
.strip[data-id="0e38db"] .nav-menu a:hover {
  color: #191970;
}
.strip[data-id="0e38db"] .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #87CEEB;
  transition: width 0.3s ease;
}
.strip[data-id="0e38db"] .nav-menu a:hover::after {
  width: 100%;
}
.strip[data-id="0e38db"] .contact-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.strip[data-id="0e38db"] .phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #191970;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(135, 206, 235, 0.1);
}
.strip[data-id="0e38db"] .phone-link:hover {
  background: rgba(135, 206, 235, 0.2);
  transform: translateY(-2px);
  color: #87CEEB;
}
.strip[data-id="0e38db"] .phone-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.strip[data-id="0e38db"] .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.strip[data-id="0e38db"] .mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background: #191970;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .strip[data-id="0e38db"] .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 40px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .strip[data-id="0e38db"] .nav-menu.active {
    right: 0;
  }
  .strip[data-id="0e38db"] .nav-menu ul {
    flex-direction: column;
    gap: 24px;
  }
  .strip[data-id="0e38db"] .nav-menu a {
    font-size: 18px;
    display: block;
  }
  .strip[data-id="0e38db"] .mobile-toggle {
    display: flex;
  }
  .strip[data-id="0e38db"] .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  .strip[data-id="0e38db"] .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  .strip[data-id="0e38db"] .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
  .strip[data-id="0e38db"] .phone-number {
    display: none;
  }
  .strip[data-id="0e38db"] .phone-link {
    padding: 10px;
    border-radius: 50%;
  }
}
@media (max-width: 480px) {
  .strip[data-id="0e38db"] .container {
    padding: 0 16px;
  }
  .strip[data-id="0e38db"] .brand .name {
    font-size: 18px;
  }
  .strip[data-id="0e38db"] .brand .sub {
    font-size: 10px;
  }
}.strip[data-id="99c315"] {
  --section-id: "99c315";
  --storage-url: "https://test-gamma.proweb.cz/_section/99c315";
  --public-url: "https://test-gamma.proweb.cz/_section/99c315";
}
.strip[data-id="99c315"] .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  overflow: hidden;
}
.strip[data-id="99c315"] .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.strip[data-id="99c315"] .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.strip[data-id="99c315"] .content-box {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 60px;
  max-width: 650px;
  display: flex;
  gap: 40px;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.strip[data-id="99c315"] .accent-line {
  width: 6px;
  background: linear-gradient(to bottom, #00bfff, #191970);
  flex-shrink: 0;
  border-radius: 3px;
}
.strip[data-id="99c315"] .text-content {
  flex-grow: 1;
}
.strip[data-id="99c315"] h1 {
  font-weight: 800;
  font-size: 56px;
  color: #191970;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}
.strip[data-id="99c315"] p {
  font-weight: 400;
  font-size: 20px;
  color: #2f4f4f;
  line-height: 1.7;
  margin: 0 0 40px 0;
}
.strip[data-id="99c315"] .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.strip[data-id="99c315"] .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background-color: #00bfff;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
}
.strip[data-id="99c315"] .btn-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.strip[data-id="99c315"] .btn-cta:hover {
  background-color: #191970;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(25, 25, 112, 0.4);
}
.strip[data-id="99c315"] .btn-cta:hover svg {
  transform: translateX(5px);
}
@media (max-width: 992px) {
  .strip[data-id="99c315"] h1 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="99c315"] .hero-section {
    min-height: 80vh;
    padding: 80px 0;
    background-position: 70% center;
  }
  .strip[data-id="99c315"] .hero-section::before {
    background: rgba(0, 0, 0, 0.3);
  }
  .strip[data-id="99c315"] .content-box {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
    max-width: 100%;
    gap: 25px;
  }
  .strip[data-id="99c315"] .accent-line {
    width: 80px;
    height: 6px;
    margin: 0 auto;
  }
  .strip[data-id="99c315"] h1 {
    font-size: 36px;
  }
  .strip[data-id="99c315"] p {
    font-size: 18px;
  }
  .strip[data-id="99c315"] .cta-wrapper {
    justify-content: center;
  }
}