@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
  }
  body {
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 18px;
  }
  
  /* HEADER */

  header.hero {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }


.navbar {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
  }
  
   .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a:hover {
    text-decoration: none;
    color: #f5c54d;
  }

   
 .logo img{
    width: 160px;
    padding-left: 10px;
 }

 
  /* Basic styling */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* 
 /* ABOUT US */

 
.about-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background-color: #111;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #f9b233;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 12px 30px;
  background-color: #f5c046;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
}

.hero-image img {
  width: 450px;
  border-radius: 8px;
}

.mission {
  text-align: center;
  padding: 80px 15%;
  background-color: #181818;
}

.mission h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f9b233;
}

.mission p {
  font-size: 17px;
  line-height: 1.6;
}
/* 
.team {
  padding: 80px 10%;
  background-color: #0e0e0e;
  text-align: center;
}

.team h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-member {
  background-color: #181818;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
}

.team-member img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 14px;
  color: #ccc;
} */

.about-cta {
  padding: 60px 10%;
  background-color: #111;
  text-align: center;
}

.about-cta h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #f9b233;
}

.about-cta p {
  font-size: 17px;
  margin-bottom: 20px;
} 


/* YOUTUBE SECTION */
.youtube-section {
  background-color: #181818;
  padding: 80px 10%;
  text-align: center;
  
}

.youtube-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f9b233;
}

.youtube-section p {
  font-size: 17px;
  margin-bottom: 30px;
  color: #ddd;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 30px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
    margin-top: 20px;
  }

  .team-members {
    flex-direction: column;
    gap: 20px;
  }

  .team-member {
    width: 90%;
    margin: 0 auto;
  }
}

/* footer */

.site-footer {
    background-color: #0e0e0e;
    color: #ffffff;
    padding: 60px 20px 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h2, .footer-col h3 {
    margin-bottom: 15px;
    color: #f5c54d;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f5c54d;
}

.footer-col.social-links a {
    margin-right: 10px;
    display: inline-block;
}

.footer-col.social-links img {
    width: 24px;
    height: 24px;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
}

.footer-col.social-links img:hover {
    transform: scale(1.1);
    /* filter: brightness(0) saturate(100%) invert(69%) sepia(63%) saturate(455%) hue-rotate(9deg) brightness(95%) contrast(90%); */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
}
  


/* Responsive Styles */
body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {

  .navbar {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
  }

   .hamburger {
    display: block;
    z-index: 1001;
    order: 2;
  }

  .nav-links {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: auto;
    max-height: 60vh;
    background-color: #111;
    top:80px;
    left: 0;
    right: -100%;
    z-index: 10;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-top: 80px;
  }

  .nav-links.show {
    display: flex;
    right: 0;
    transform: translateX(0);
  }

  .nav-links li {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    margin: 15px 0;
    width: 100%;
  }

  .nav-links ::-webkit-scrollbar{
    width: 5px;
  }

 .logo img {
    width: 120px;
  } 
  .logo {
    order: 1;
  }

  .hero-text{
    padding: 2rem;
    padding-top: 120px;
    width: 100%;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
    margin-bottom: 2rem;
    text-align: center;  
  }

  .footer-col.social-links{
    justify-content: center;
  }
}

@media (max-width: 480px) {
 .navbar{
  padding: 1rem;
 }

 .logo img{
  width: 100px;
 }

 .hamburger{
  font-size: 24px;
 }

 .nav-links{
  width: 80%;
 }


 .hero-text{
  padding: 1.5rem;
  padding-top: 100px;
 }

 .hero-text h2{
  font-size: 1.5rem;
 }

 .cta-btn{
  padding: 0.6rem 1rem;
 }

 .footer-container{
  gap: 1rem;
 }

 .footer-col h3{
  font-size: 16px;
 }

 .footer-col.social-links img{
  width: 20px;
  height: 20px;
 }
}
