/* HEADER */

a {
  font-family: inter;
  text-decoration: none;
  color: white;
  font-size: 16px;
}

header {
  margin-top: 16px;
  margin-bottom: 16px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  width: 100%;
  z-index: 50;
}

.container2{
  display: flex;
  background-color: black;
  padding: 10px 48px;
  border-radius: 50px;
  border: 3px #7BA7D7 solid;
  z-index: 5;
  height: fit-content;
  width: 50%;
  position: fixed;
  justify-content: space-between;
  gap: auto;
  box-shadow: 0 0 75px rgba(255, 217, 0, 0.3);

}


#brand {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}

#brand a {
  color: #7BA7D7;
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}

ul a {
  color: white;
  font-size: 16px;
  font-style: italic;
}

ul li {
  padding: 5px;
  margin-left: 10px;
  text-align: center;

}


#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 25px;
  height: 3px;
  background-color: #7BA7D7;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  height: fit-content;
  width: 100%;
  background-color: black;

}




/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: "Nunito Sans", sans-serif;
    font-family: "Inter", sans-serif;
    color: #fff;
    background-color: #010101;
    scroll-behavior: smooth;
  }
  
/* HERO VIDEO */
.hero-video {
    width: 100%;
  }
  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  .video-container video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Main Container */
  .container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
  }
  
  /* Sidebar */
  .sidebar {
    width: 30%;
    background-color: #010101;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100vh;
  }
  
  .sidebar .logo {
    width: 300px;
    margin-bottom: 1rem;
  }
  
  .sidebar h1 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .sidebar .tagline {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #d3d3d3;
    line-height: 1.4;
  }
  
  .sidebar .nav {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 2rem;
  }
  
  .sidebar .nav a {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    color: #d3d3d3;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  
  .sidebar .nav a:hover {
    color: #d3d3d3b6;
  }
  
  /* Content */
  .content {
    width: 70%;
    padding: 4rem 3rem;
  }
  
  /* Info Grid */
  .info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .info-grid h5 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FF541E;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 10%;

  }
  
  .info-grid p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    color: #d3d3d3;

  }
  
  /* Content Sections */
  .section {
    max-width: 800px;
    padding-bottom: 60px;
    padding-top: 60px;
  }
  
  .meta {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    letter-spacing: 10%;
    font-size: 0.9rem;
    color: #FF541E;
    text-transform: uppercase;
    margin-bottom: 3rem;
  }
  
  .title {
    font-family: "Nunito Sans", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .description {
    font-weight: 200;
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  
  }
  
  .section img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .info-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .sidebar {
      position: relative;
      width: 100%;
      height: auto;
      border-right: none;
    }
  
    .content {
      margin-left: 10;
      width: 100%;
    }
  
    .container {
      flex-direction: column;
    }
  }
  
  @media (max-width: 600px) {
    .info-grid {
      grid-template-columns: 1fr;
    }
  
    .section{
        padding: 40px 0px;
      }
    
      .title {
        font-size: 1.5rem;
      }
    
      .description {
        font-size: 1rem;
      }
      .content {
          width: 100%;
          padding: 1.5rem 1.2rem;
        }
  
        .sidebar{
          padding: 1.5rem 1.2rem;
        }

        .sidebar .top{
            text-align: center;
        }

        .sidebar .logo {
            width: 60%;
            margin-bottom: 0;
          }

          .sidebar .nav{
            display: none;
          }
      
  }

  .video-section {
    padding: 60px 0px;
    color: white;
    max-width: 100%;
    margin: 0 auto;
    
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 75px rgba(255, 217, 0, 0.3);
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
  }




  /* FOOTER */
.custom-footer {
  margin-top: 120px;
  background-color: #7BA7D7;
  color: #000;
  padding: 60px 20px;
}

.footer-top {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: left;
}

.footer-heading {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.4;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-buttons a {
  padding: 12px 20px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s;
  border-radius: 50px;

}

.footer-buttons a:hover {
  background: #000;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #000;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 40px;
  max-width: 1000px;
  margin: 0 auto;
  
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid #000;
  transition: background 0.3s;
}

.footer-links a:hover {
  background-color: #000;
  color: #fff;
}

.footer-arrow span {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  transform: rotate(90deg);
}

/* Responsive styles */
@media (max-width: 768px) {
.custom-footer{
  padding: 48px 24px;
}

.footer-heading{
  font-size: 1.5rem;
  margin-bottom: 0;
}

  .footer-top {
    text-align: center;
    margin-bottom: 36px;
  }

  .footer-arrow{
    display: none;
  }

  .footer-buttons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}



@media only screen and (max-width: 900px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }

  .container2{
    width: 90%;
  }

.mobile-menu{
  padding: 20px 48px;
}

  ul li {
  padding: 12px 0px;
  margin: 0px;
  width: 100%;
  text-align: end;
}

ul a {
  color: white;
  font-size: 20px;
  font-style: italic;
}

.container2{
  gap: 1em;
  padding: 10px 40px 14px 40px;
}
}