
-- bg-color 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
  font-family: "Lato", sans-serif;
}

/* Navbar Start */
#navbar {
  /* background: #f9f9f9; */
  background: #f5c263;
}
#logo {
  font-size: 36px;
  font-weight: 550;
  color: black;
  text-shadow: 0px 1px 1px black;
  margin-bottom: 5px;
  margin: 0;
  padding: 0;
}
#logo span {
  color: #ffa500;
}

.brand-logo {
  mix-blend-mode: darken;
  max-height: 7dvh;
}

.navbar-toggler span {
  /* color: #ffa500; */
  color: white;
}
.navbar-nav {
  margin-left: 20px;
}
.nav-item .nav-link {
  font-size: 16px;
  font-weight: 550;
  color: black;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: 0.5s ease;
}
.nav-item .nav-link:hover {
  background: #ffa500;
  color: white;
}
#navbar form button {
  background: orange;
  color: white;
  border: 2px white solid;
}

/* Links inside the modal */
.modal-body .list-unstyled li a {
  color: #7c756e;
  text-decoration: none;
  /* font-size: 10px; */
  letter-spacing: 2px;
}

.modal-body .list-unstyled li a:hover {
  color: #b35100;
}

/* Modal Footer Button */
.modal-footer .btn-primary {
  background-color: #b35100a9;
  border-color: #da7829;
  /* font-size: 10px; */
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-family: "Roboto", sans-serif; /* Ensure the font is consistent */
}

.modal-footer .btn-primary:hover {
  background-color: #b35100;
  border-color: #b31500;
}

/* Responsive Grid for Modal Content */
@media (max-width: 768px) {
  .modal-dialog {
    max-width: 100%;
    margin: 1.75rem auto;
  }

  .modal-body .row {
    display: flex;
    flex-direction: column;
  }

  .modal-body .col-md-4 {
    width: 100%;
    margin-bottom: 1rem;
  }

  .modal-footer .btn-primary {
    font-size: 1.1rem;
  }
}

/* Navbar End */

/* package details start here */

.carousel-item img {
    height: 50dvh;
    object-fit: cover;
    /* object-position:top; */
  }

  .carousel-caption {
    z-index: 100;
  }

  .t-text {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    width: fit-content;
    background: linear-gradient(to right, #000000c0, #000000a9);
    bottom: 20px;
    
  }

  .map {
    height: 300px;
    width: 100%;
  }

  .fixed-bottom button {
    background: #ffa500;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .fixed-bottom button:hover {
    background: #e69500;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .fixed-bottom button {
      width: 90%;
      font-size: 16px;
    }
  }


  .gallery-img {
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05); /* Adds a zoom-in effect on hover */
}

#imageModal .modal-content {
    background: #000;
    border: none;
}

#modalImage {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.map-section {
  height: 20dvh;
}

/* Home Section Start */
.home {
  width: 100%;
  height: 90vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)),
    url('../images/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.home .content {
  text-align: center;
  padding-top: 200px;
}
.home .content h5 {
  color: white;
  font-size: 38px;
  font-weight: 550;
  text-shadow: 0px 1px 1px black;
}
.home .content h1 {
  color: white;
  font-size: 70px;
  font-weight: 550;
  text-shadow: 0px 1px 1px black;
  margin-top: 5px;
}
.changecontent::after {
  content: " ";
  color: #ffa500;
  text-shadow: 0px 1px 1px black;
  animation: changetext 10s infinite linear;
}
@keyframes changetext {
  0% {
    content: "Mikumi";
  }
  10% {
    content: "Serengeti";
  }
  20% {
    content: "Kilimanjaro";
  }
  30% {
    content: "Zanzibar";
  }
  40% {
    content: "Saadani";
  }
  50% {
    content: "Mt meru";
  }
  60% {
    content: "Ngorongoro";
  }
  70% {
    content: "Selous";
  }
  80% {
    content: "Ruaha";
  }
  90% {
    content: "Tarangire";
  }
  100% {
    content: "Lake Manyara";
  }
}
.home .content p {
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0px 1px 1px black;
  margin-bottom: 30px;
  margin-top: 5px;
}
.home .content a {
  padding: 10px;
  background: white;
  color: black;
  letter-spacing: 2px;
  font-weight: 550;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.5s;
}
.home .content a:hover {
  background: #ffa500;
  color: white;
}
@media (max-width: 850px) {
  .home {
    background-position: 50%;
  }
}
@media (max-width: 450px) {
  .home .content h5 {
    font-size: 25px;
  }
  .home .content h1 {
    font-size: 38px;
  }
  .home .content p {
    font-size: 13px;
  }
}
/* Home Section End */

/* Section Book Start */
.book {
  background: #f9f9f9;
  padding: 50px;
}
.main-text h1 {
  text-align: center;
  text-shadow: 0px 1px 1px black;
  font-weight: 600;
}
.main-text h1 span {
  color: #ffa500;
}
.book .card {
  border-radius: 10px;
  box-shadow: 0px 5px 5px -6px black;
}
.book .row {
  margin-top: 30px;
}
.book form input {
  padding: 10px;
  color: black;
  border: none;
  outline: none;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0px 5px 5px -6px black;
}
.book form textarea {
  border: none;
  border-radius: 10px;
  resize: none;
  box-shadow: 0px 5px 5px -6px black;
  height: 200px;
}
.book .submit  {
  width: 160px;
  font-size: 16px;
  font-weight: 550;
  background: #ffa500;
  color: white;
  margin-top: 10px;
  transition: 0.5s;
}
.book .submit:hover {
  width: 170px;
}
@media (max-width: 765px) {
  .book {
    padding: 0;
  }
  .main-text h1 {
    padding: 20px;
  }
}
/* Section Book End */

/* Section Packages Start */
.main-txt h1 {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  text-shadow: 0px 1px 1px black;
}
.main-txt h1 span {
  color: #ffa500;
}
.packages .card {
  border-radius: 5px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.packages .card img {
  border-radius: 5px;
  max-height: 30dvh;
  object-fit: cover;
  object-position: center;
}
.packages .card .card-body {
  background: transparent;
}
.packages .card .card-body h3 {
  font-size: 25px;
  font-weight: 600;
}
.packages .card .card-body p {
  font-size: 15px;
}
.checked {
  color: #ffa500;
}
.star i {
  font-size: 15px;
}
.packages .card .card-body h6 {
  font-size: 20px;
}
.packages .card .card-body a {
  padding: 10px;
  text-decoration: none;
  background: #ffa500;
  color: white;
  border-radius: 5px;
}
/* Section Packages End */

/* Section Services Start */
.services {
  background: #f9f9f9;
  margin-top: 50px;
}
.services .card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: none;
  cursor: pointer;
}
.services .card i {
  font-size: 80px;
  text-align: center;
  color: #ffa500;
  margin-top: 20px;
}
.services .card .card-body h3 {
  font-weight: 600;
}
.services .card .card-body {
  text-align: center;
}
/* Section Services End */

/* Section Gallary Start */
.gallary {
  margin-top: 50px;
}
.gallary .card {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  cursor: pointer;
}
.gallary .card img {
  border-radius: 10px;
  transition: 0.5s;
}
.gallary .card img:hover {
  transform: scale(1.1);
}

#imageModal .modal-body {
    position: relative;
  }
  
  #imageModal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1050;
  }

  #imageModal .modal-dialog {
    max-width: 90%; /* Wider modal to accommodate larger images */
  }
  
  #imageModal .modal-content {
    background: transparent; /* Optional: Remove background for a clean look */
    border: none;
    box-shadow: none;
  }
  
  #modalImage {
    max-width: 100%; /* Ensure the image fits within the modal */
    max-height: 80vh; /* Restrict height to fit within the viewport */
    margin: auto; /* Center the image */
    display: block;
    border-radius: 10px; /* Optional: Add rounded corners */
  }
  
  
  #imageModal .modal-footer {
    background-color: #f8f9fa;
  }
  
  #imageModal button {
    border-radius: 20px;
  }
  
/* Section Gallary End */

/* About Start */
.about {
  padding: 50px;
  margin-top: 50px;
  background: #f9f9f9;
}
.about .card {
  border-radius: 10px;
}
.about .card img {
  border-radius: 10px;
}
.about h2 {
  font-weight: 600;
  letter-spacing: 1px;
}
.about p {
  font-weight: 500;
}
#about-btn {
  width: 150px;
  height: 38px;
  border: none;
  border-radius: 5px;
  background: #ffa500;
  color: white;
  letter-spacing: 2px;
  font-weight: 550;
  transition: 0.5s ease;
  cursor: pointer;
}
#about-btn:hover {
  width: 170px;
}
@media (max-width: 765px) {
  .about {
    padding: 0;
  }
}
/* About End */

/* Footer Start */
#footer {
  width: 100%;
  margin-top: 150px;
  text-align: center;
  background: #f9f9f9;
}
#footer h1 {
  font-weight: 600;
  padding-top: 30px;
  text-shadow: 0px 0px 1px black;
}
#footer h1 span {
  color: #ffa500;
}
.social-links i {
  padding: 10px;
  border-radius: 5px;
  font-size: 20px;
  background: black;
  color: white;
  margin-left: 10px;
  margin-bottom: 10px;
  transition: 0.5s ease;
  cursor: pointer;
}
.social-links i:hover {
  background: #ffa500;
}
/* Footer End */

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
}

.hero-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Featured Experiences */
.experience-card {
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary);
}

/* About Section */
.about-content {
    padding-right: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-image-grid img {
    transition: transform 0.3s ease;
}

.about-image-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}