
/* Responsive Full-Width Container */
.container {
  width: 100%;
  max-width: 1400px;
  padding: 0 3vw;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Section takes full width and viewport height */
.section-video {
  width: 100vw;
  min-height: 100vh;
  padding-top: clamp(3rem, 10vh, 12rem);
  padding-bottom: clamp(3rem, 10vh, 12rem);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Ensure these wrappers do not constrain width */
.body-inner, .background-image {
  width: 100%;
}

/* Responsive typography */
h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
p.lead {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

/* Centered button container */
.col-6.center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 768px) {
  .col-6.center {
    flex: 0 0 50%;
    margin: 0 auto;
  }
}
