:root {
  --primary-color: #04699D;
  --secondary-color: #EF8635;
  --accent-color: #7EB5EE;
  --dark-color: #52482C;
}

body {
  margin: 0;
  /* font-family: 'Comic Sans MS', cursive, sans-serif; */
  /* overflow-x: hidden; */
}


header {
  transition: background 0.3s ease;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

a {
  transition: color 0.3s ease;
  text-decoration: none;
}

.form-select {
  background-color: transparent;
  color: white;
  border: none;
}

.form-select:hover {
  color: var(--secondary-color);
}


/* video container  */

.video-container {
  /* position: relative; */
  width: 100%;
  height: 50vh;
  overflow: hidden;
  margin: 2rem auto;
  /* background-color: #7EB5EE; */
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text-container {
  /* position: absolute; */
  top: 100%;
  right: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: black;
  z-index: 1;

  border-radius: 1rem;
  box-shadow: 0 7px 20px var(--dark-color);
  min-height: 20vh;
  height: fit-content;
  width: 50%;
  /* background-color: var(--dark-color); */
  background-color: aliceblue;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  font-size: larger;
}

.video-text-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--secondary-color);
  border-bottom-left-radius: 4rem;
  border-top-left-radius: 4rem;
}


/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {

  .image-st-container-left,
  .image-st-container-right {
    height: 30vh;
    width: 80%;
    margin: 1rem auto;
  }

  .intro-text-title {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }

  .intro-text-details {
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  header img {
    height: 50px !important;
  }
  .video-text-container{
    width: 80%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 10px 25px;
  }

  .hero-section {
    height: 100vh;
  }

  .hero-section {
    background-image: url('../images/background.webp');
    background-size: cover;
    background-position-x: right;
  }
}

/* ici  */
.btn-hero:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}