

.activities-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.activity {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.activity img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.activity h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.activity p {
  font-size: 15px;
  line-height: 1.6;
}

.faq-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.faq-content {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  margin-left: 90px;
  margin-top: 5%;
}

.faq-content h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

details {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

summary {
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  color: #d4a437;
}

details[open] summary {
  color: #d4a437;
}

details p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.faq-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 70px;
    margin-top: 5%;
}

.faq-images img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 4%;
}

.hero-section {
  background-image: url('./images/ngorongoro-crater-slide1-1300x1080.jpg'); /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px;
  position: relative;
  margin-top: -0.5%;
  
}

.overlay {
  max-width: 700px;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
  padding: 30px;
  border-radius: 8px;
}

.label {
  letter-spacing: 2px;
  font-size: 13px;
  color: #f4c662;
  font-weight: bold;
  margin-bottom: 15px;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.description {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}
footer {
  background-color: #000;
  color: white;
  padding: 60px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
    color: white;

}

.footer-col ul li {
  padding: 6px 0;
  font-size: 15px;
    color: white;

}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: white;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}
footer a {
  color: #ffffff; /* or your brand color like #F4A261 or #E9C46A */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #F4A261; /* Example hover color */
  text-decoration: underline;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 40px;
  text-align: center;
}

.gallery .item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid #ccc;
}




    .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 2000px;
      margin: auto;
    }
    .item {
      width: 350px;
      text-align: center;
    }
    .item img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .label {
      margin-top: 8px;
      font-weight: bold;
      font-family: Arial, sans-serif;
    }





.gallery h2 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 10px;
}

.katavi-hero {
  background-image: url('https://images.unsplash.com/photo-1700221824708-012001e5ccb8?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 100px 40px;
  color: white;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.text-box {
  max-width: 700px;
}

.katavi-hero h1 {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 25px;
}

.subtext {
  font-size: 18px;
  line-height: 1.8;
  max-width: 90%;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.cta-button {
  background-color: #cfa74c;
  color: white;
  text-decoration: none;
  padding: 14px 25px;
  font-weight: bold;
  font-size: 14px;
  border: none;
}


/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

/* Main Wrapper */
#main {
  width: 100%;
  overflow: hidden;
}/* Hero Section */
.hero {
  position: relative;
  height: 16vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

  
   .about {

      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
      text-align: center;
      margin-top: 10px;
    }

    .about h3 {
      font-size: 50px;
      margin-bottom: 14%;
      margin-top: 11%;

      
    }

    .about h2 {
      font-size: 30px;
      font-weight: 100;
      color: #d4a94f;
      margin-bottom: -9%;
      margin-top: 10%;
    }

    .about p {
      color: #444;
      margin-bottom: 11%;
      margin-top: -10%;
    }


    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .image-container {
      width: 100%;
      aspect-ratio: 4/3; /* Ensures consistent image box ratio */
      overflow: hidden;
      border: 3px solid #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-container:hover {
      transform: scale(1.05);
    }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image fills container proportionally */
      transition: transform 0.3s ease;
    }

    .caption {
      font-weight: bold;
      margin-top: 10px;
      text-transform: uppercase;
    }

    .item {
      margin-bottom: 20px;
    }

    
   .a{

      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
      text-align: center;
      margin-top: 10px;
    }

    .a h3 {
      font-size: 50px;
      margin-bottom: 16px;
      margin-top: 11%;

      
    }

    .a h2 {
      font-size: 30px;
      font-weight: 100;
      color: #d4a94f;
      margin-bottom: -9%;
      margin-top: 10%;
    }

    .a p {
      color: #444;
      margin-bottom: 11%;
    }
 .map-container {
      position: relative;
      width: 100%;
      height: 600px;
      margin-top: 30%;
      margin-bottom: -10%;
    }

    iframe {
      width: 80%;
      margin-top: 30px;
      height: 60%;
      border: 0;
      border-radius: 10px;
      margin-left: 10%;
      margin-bottom: -15%;

    }

    .info-card {
      position: absolute;
      top: 40px;
      left: 40px;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      width: 320px;
    }

    .info-card h2 {
      margin: 0;
      font-size: 18px;
    }

    .info-card p {
      margin: 5px 0;
      color: #666;
    }

    .stars {
      color: #f39c12;
    }

    .review-link {
      color: #1a73e8;
      text-decoration: none;
      margin-left: 5px;
    }

    .directions {
      color: #1a73e8;
      text-decoration: none;
      float: right;
      margin-top: -25px;
    }

       .t {

      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
      text-align: center;
      margin-top: -28%;
      margin-left: 52%;
    }

    .t h3 {
      font-size: 26px;
      margin-bottom: 16px;
      margin-top: 11%;

    }

    .t p {
      color: #444;
      margin-bottom: 11%;
    }

#page10 {
    min-height: 1vh;
    width: 100%;
    /* background-color: #111; */
    background-color: #fff;
    padding: 1vh 10vw;
    margin-top: -8%;
}

#page10 > h1 {
    font-size: 5vw;
    color: #000;
    /* background-color: red; */

    line-height: 5.8vw;
    padding-bottom: 5vh;
    border-bottom: 1px solid #000000;
    text-align: center;
    text-align: center;
    align-items: center;
    
}

#page10-content {
    /* background-color: red; */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8vh 0;
}

#page10-content #right-10 {
    width: 90%;
    color: #000;
}

#page10-content #right-10 p {
    font-size: 2vw;
    color: #000;
    margin-bottom: 1vh;
    width: 80%;
    text-align: center;
    align-items: center;
    margin-left: 15%;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}


/* Navigation */
nav {
  padding: 2vw 4vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
}

.logo {
  width: 120px;
  height: auto;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #ffffff3c;
  border-radius: 50px;
  font-weight: 500;
  color: #ffffffd4;
  transition: all ease 0.4s;
  position: relative;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #d4a94f;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  z-index: 1;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

#nav-part2 h4:hover a {
  color: #fff;
}

.btn-top {
  background-color: #d4a94f;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 3px;
}



/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3em;
  font-weight: bold;
  max-width: 900px;
  margin: auto;
  line-height: 1.3;
}

.btn-main {
  display: inline-block;
  margin-top: 20px;
  background-color: #d4a94f;
  padding: 15px 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}




@media (max-width: 1200px) {
  .activities-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .faq-section {
    flex-direction: column;
    gap: 25px;
  }

  .faq-content, .faq-images {
    margin: 0 auto;
    max-width: 90%;
  }

  .faq-images img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }

  #page10-content {
    flex-direction: column;
    align-items: center;
    padding: 5vh 0;
  }

  #page10-content #right-10 p {
    font-size: 2.5vw;
    width: 90%;
    margin-left: 5%;
  }

  .map-container iframe {
    width: 90%;
    height: 50%;
    margin-left: 5%;
  }

  .about h3 { font-size: 45px; }
  .about h2 { font-size: 28px; }
}

@media (max-width: 992px) {
  nav {
    padding: 1.5vw 2vw;
  }

  #nav-part2 {
    gap: 0.5vw;
  }

  #nav-part2 h4 {
    font-size: 15px;
    padding: 8px 12px;
  }

  .hero-section, .katavi-hero {
    padding: 40px 20px;
  }

  .hero-section h1, .katavi-hero h1 {
    font-size: 2.3em;
  }

  .overlay, .text-box {
    padding: 18px;
    max-width: 90%;
  }

  .description, .subtext { font-size: 15px; }

  .activities-section { gap: 20px; }

  #page10-content #right-10 p {
    font-size: 2.2vw;
    width: 95%;
    margin-left: 2.5%;
  }
}

@media (max-width: 768px) {
  .activities-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-section { flex-direction: column; gap: 20px; }

  .faq-images { flex-wrap: wrap; justify-content: center; gap: 15px; }

  .hero-section, .katavi-hero { padding: 30px 15px; }
  .hero-section h1, .katavi-hero h1 { font-size: 2em; }

  .overlay, .text-box { padding: 15px; }

  #page10-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 4vh 0;
  }

  #page10-content #right-10 p {
    font-size: 3.5vw;
    width: 95%;
    margin-left: 2.5%;
  }

  .map-container iframe {
    width: 95%;
    height: 45%;
    margin-left: 2.5%;
    margin-top: 20px;
  }

  .btn-main, .cta-button, .btn-top { padding: 12px 18px; font-size: 13px; }
}

@media (max-width: 576px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 10px;
  }

  #nav-part2 {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  #nav-part2 h4 {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 6px 10px;
  }

  .activities-section { grid-template-columns: 1fr; gap: 15px; }

  .faq-content, .faq-images { width: 100%; margin: 0 auto; }

  .faq-images img { width: 100%; max-width: 100%; height: auto; }

  .hero-section, .katavi-hero { padding: 20px 10px; }
  .hero-section h1, .katavi-hero h1 { font-size: 1.8em; }
  .overlay, .text-box { padding: 10px; max-width: 95%; }

  #page10-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 3vh 0;
  }

  #page10-content #right-10 p {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
  }

  .map-container iframe {
    width: 100%;
    height: 40%;
    margin-left: 0;
  }

  .btn-main, .cta-button, .btn-top { padding: 10px 15px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero-section h1, .katavi-hero h1 { font-size: 1.6em; }
  .description, .subtext { font-size: 13px; }
  .about h3 { font-size: 30px; }
  .about h2 { font-size: 20px; }
  #page10 > h1 { font-size: 7vw; line-height: 1.2; }
  #page10-content #right-10 p { font-size: 5vw; }
  .faq-images { gap: 10px; }
  .faq-images img { width: 100%; height: auto; }
  .map-container iframe { width: 100%; height: 35%; }
}

@media (max-width: 480px) {
#page10 > h1 {
  margin-top: 4dvh;
}
}


