@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;
}

.site-header {
  background-color: #111;
  color: #f9b233;
  text-align: center;
  padding: 2rem 1rem;
}

.site-header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.site-header p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.faq-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  background-color: #eee;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
  background-color: #dbe7ff;
  color: #003366;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.faq-answer p {
  margin: 1rem 0;
  color: #333;
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #111;
  color: #fff;
  margin-top: 4rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header h1 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}


/* 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;
 }
}
