/** Shopify CDN: Minification failed

Line 174:2 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.video-hero-wrapper {
  position: relative;
  width: 100%;
  margin: 0 0 40px 0; /* full width */
  padding: 0;
  border-radius: 0; /* no rounding */
  overflow: hidden;
}

.border-tile {
  border-radius: 0 !important; /* remove rounding */
}

.video-hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio for desktop */
  border-radius: 0; /* no rounding */
  z-index: 2;
}

.video-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0; /* no rounding */
  overflow: hidden;
}


  .video-hero video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent; /* Added transparent background for video element */
  }

  .video-hero-content {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    pointer-events: none; /* Makes the content not interfere with video clicks */
  }

  .brand-logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Increased shadow for better readability */
    color: #ffffff; /* Explicit white color */
  }

  .brand-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Increased shadow for better readability */
    color: #ffffff; /* Explicit white color */
  }

  .season-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Increased shadow for better readability */
    color: #ffffff; /* Explicit white color */
  }

  .video-hero-buttons {
    pointer-events: auto; /* Re-enable pointer events for buttons */
  }

  .video-hero-buttons a {
    display: inline-block;
    background: rgb(255, 255, 255); /* Slightly transparent white */
    color: #000000;
    padding: 12px 30px;
    border-radius: 30px;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px); /* Add blur effect for modern look */
  }

  .video-hero-buttons a:hover {
    background: rgba(255, 255, 255, 1); /* Full opacity on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Add shadow on hover */
  }

  /* Loading state styling */
  .video-hero.loading {
    background: none !important; /* Remove loading background */
  }

  .video-hero.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
  }

  @keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  /* For mobile devices */
  @media (max-width: 768px) {
  .video-hero-wrapper {
    padding: 0;
    border-radius: 0;
  }

  .border-tile {
    border-radius: 0;
  }

  .video-hero-container {
    padding-top: 160%; /* taller aspect ratio for mobile */
    border-radius: 0;
  }
}

    .brand-logo {
      font-size: 2rem;
    }

    .brand-subtitle {
      font-size: 1rem;
    }

    .season-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .video-hero-buttons a {
      padding: 10px 20px;
      margin: 0 5px;
      font-size: 14px;
    }
  }