/** Shopify CDN: Minification failed

Line 28:6 Expected identifier but found whitespace
Line 28:8 Unexpected "{"
Line 28:17 Expected ":"
Line 28:52 Expected ":"
Line 33:16 Expected identifier but found whitespace
Line 33:18 Unexpected "{"
Line 33:27 Expected ":"
Line 33:53 Expected ":"
Line 37:16 Expected identifier but found whitespace
Line 37:18 Unexpected "{"
... and 6 more hidden warnings

**/
.video-section__media {
  --ratio-percent: 56.25%;
  position: relative;
  padding-bottom: calc(var(--ratio-percent) - var(--media-border-width));
}

.video-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: {{ section.settings.gap_between_elements }}px; /* Uniform gap */
}

/* Individual element spacing */
.video-overlay h1 {
  margin-bottom: {{ section.settings.heading_gap }}px !important;
}

.video-overlay h2 {
  margin-bottom: {{ section.settings.subheading_gap }}px !important;
}

.video-overlay h2.subtitle-2 {
  margin-bottom: {{ section.settings.button_gap }}px !important;
}

.scroll-trigger:where(.gradient.video-section__media) {
  background: transparent;
}

.video-section__media.global-media-settings--full-width {
  padding-bottom: var(--ratio-percent);
}

.video-section__media.deferred-media {
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
}

.video-section__media.deferred-media:after {
  content: none;
}

.video-section__poster.deferred-media__poster:focus {
  outline-offset: 0.3rem;
}

.video-section__media iframe {
  background-color: rgba(var(--color-foreground), 0.03);
  border: 0;
}

.video-section__poster,
.video-section__media iframe,
.video-section__media video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.video-section__media video {
  background: #000000;
}

.video-section__media.media-fit-cover video {
  object-fit: cover;
}

/* New styles for enhanced video section */
.video-container {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  padding: 20px;
}

.video-tagline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.video-subtitle-1,
.video-subtitle-2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.video-button {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .video-tagline {
    font-size: 1.8rem;
  }
  
  .video-subtitle-1,
  .video-subtitle-2 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .video-tagline {
    font-size: 1.5rem;
  }
  
  .video-subtitle-1,
  .video-subtitle-2 {
    font-size: 1rem;
  }
  
  .video-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}