body {
    background-color: #780415;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #f7b016;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f7b016;
    position: -webkit-sticky;
    top: 0;
    width: 100%;
}
li {
    float: right;
}
li a {
    display: block;
    padding: 16px 20px;
    text-align: center;
    color: aliceblue;
    text-decoration: none;
    font-family: Helvetica, sans-serif, Arial,'Times New Roman';
    font-weight: bold;
}
li a:hover:not(.active) {
    background-color: goldenrod;
}
.active {
    background-color: white;
}
h1 {
    text-align: center;
    justify-content: center;
    display: flex;
    font-family: sans-serif, Arial, Helvetica;
    color: #f7b016;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  color: white;
  font-family: 'Arial', sans-serif;
}

/* YouTube video full background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

#player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh; /* for 16:9 aspect ratio */
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  object-fit: cover;
}

/* Text box over video */
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    padding: 15px 25px;
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s;
  }
  
  .cta-btn:hover {
    background-color: #0b7dda;
  }

  .footer {
    position: bottom;
    left: 0;
    bottom: 0;
    background-color: #530410;
    color: white;
    text-align: center;
    width: 100%;
    height: 250px; /* Adjust height as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: none;
}

.footer h2 {
    margin: 20px 0;
    color: #f7b016;
}

.footer .socials-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .icon-container {
    display: flex;
    gap: 30px;
}

.footer .btn-social {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7b016;
    font-weight: normal;
    border: 2px solid #fcf9f9;
    border-radius: 50%;
    transition: .3s;
    text-decoration: none;
    text-align: center;
}

.footer .btn-social:hover {
    color: #0056b3;
    border-color: #0056b3;
}

.footer .btn-link {
    margin-bottom: 5px;
    color: #8a0404;
    font-size: 35px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
    text-decoration: none;
}

.footer .btn-link::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}


  