/* Video Section Styling */
.video-section {
  color: var(--ink);
  padding: 40px;
  font-family: "Eurostile LT Std", sans-serif;
  background: transparent;
  display: flex;
  justify-content: center;
  z-index: 1000;
  position: relative;
  overflow-x: clip; /* decorative shapes sit outside the box without widening it */
  overflow-y: visible;
}

.video-container {
    max-width: 1440px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-title-section {
  display: flex;
  position: relative;
  z-index: 2000;
  flex-direction: row;
  align-items: center;
  padding: 0 40px;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(110deg, #111111 60%, transparent 60%);
}
.video-title-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1440px;
}
.video-intro-text {
  padding: 60px 0;
}
.video-intro-text p{
  color: #d3ab67;
  font-size: var(--fs-36);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0;
}

.video-unique-banner {
  flex: 0 0 auto;
  background: linear-gradient(110deg, transparent 8%, #d3ab67 8%);
  padding: 15px 30px 15px 60px;
}

.video-unique-banner h2 {
  font-size: var(--fs-42);
  font-weight: 700;
  color: #111;
  font-family: "Eurostile", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.video-hero {
  text-align: center;
  margin-bottom: clamp(60px, 10vw, 100px);
}

.video-hero-title {
  font-size: var(--fs-clamp-hero);
  font-weight: 700;
  color: #d4af37;
  font-family: "Eurostile", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-bottom: clamp(10px, 2vw, 20px);
}

.video-hero-subtitle {
  font-size: var(--fs-clamp-title);
  font-weight: 400;
  color: #fff;
  font-family: "Eurostile", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin: 0;
}

/* Video Content */
.video-content {
  display: flex;
  gap: clamp(40px, 8vw, 80px);
  align-items: flex-start;
}

.video-description {
  flex: 1;
}

.video-embed {
  display: flex;
  max-height: 700px;
  padding: clamp(20px, 4vw, 40px);
  height: auto;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2000;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.video-wrapper iframe {
  border-radius: 8px;
  height: 500px;
  width: min(100%, 1000px);
  max-width: 100%;
}
@media (max-width: 1100px) {
  .video-title-container{
    flex-direction: column;
  }

  .video-title-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    background: #111111;
  }

  .video-unique-banner {
    margin-left: 0;
    align-self: stretch;
    padding: 20px 30px;
  }
  .video-unique-banner h2 {
    font-size: var(--fs-32);
  }

  .video-intro-text {
    width: auto;
    max-width: 100%;
    padding: 40px 20px 60px 20px;
    font-size: var(--fs-clamp-subhero);
    text-align: center;
  }
  .video-intro-text p {
    font-size: var(--fs-28);
  }
}
/* Responsive Design */
@media (max-width: 768px) {


  .video-content {
    flex-direction: column;
    gap: 40px;
  }

  .video-embed {
    max-height: none;
    height: auto;
    padding: 20px;
  }

  .video-section {
    color: var(--ink);
    padding: 0 40px 20px 40px;
    font-family: "Eurostile LT Std", sans-serif;
    background: transparent;
    display: block;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .video-section {
    color: var(--ink);
    padding: 0 40px 20px 40px;
    font-family: "Eurostile LT Std", sans-serif;
    background: transparent;
    display: block;
  }

  .video-title-section {
    margin-bottom: 30px;
    padding: 0;
    gap: 20px;
  }

  .video-hero {
    margin-bottom: 30px;
  }

  .video-unique-banner {
    padding: 15px 20px;
  }

  .video-intro-text {
    padding: 30px 15px 40px 15px;
    font-size: var(--fs-clamp-feature);
  }

  .video-content {
    flex-direction: column;
    gap: 30px;
  }

  .video-embed {
    padding: 15px;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    border-radius: 8px;
  }
}
