* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color:white;
  margin: 0;
  background: url(images/elephan1.jpeg);
  background-size: contain;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #085e3a;
  color: white;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  height: 70px;
}

.header h1 {
  font-size: 22px;
  margin: 0;
}

/* DONATE BUTTON FIX */
.donate a {
  text-decoration: none;
}

.donate {
  font-weight: 500;
  font-size: larger;
  border: 2px solid orange;
  border-radius: 20px;
  padding: 5px;
  background-color:orange;
}

.donate:hover {
  color: green;
}

/* NAV DESKTOP */
nav {
  display: flex;
  gap: 20px;
}
.nav-menu a{
  text-decoration: none;
  color: white;
  font-weight: 800;
}
.nav-menu a:hover{
  color: aquamarine;
}

/* MOBILE NAV (DROPDOWN PANEL) */
.nav-menu {
  display: flex;
  gap: 20px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  body{
    background-size: cover;
  }
  .donate{
    margin-left: -20px;
    font-size: smaller;
  font-weight: 900;
  background-color: #085e3a;
  border-radius: 40px;
  padding: -20px;
    
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #085e3a;
    flex-direction: column;

    width: 200px;
    border-radius: 10px;

    display: none; /* hidden by default */
    z-index: 9999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    text-decoration: none;
    padding: 12px;
    text-align: center;
    color: white;
    margin-bottom: 10px;
  }
  .nav-menu a:last-child {
    border-bottom: none;
  }

 }

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero button {
  background: orange;
  border: none;
  padding: 12px 25px;
  border-radius: 20px;
  font-size: larger;
  font-weight: 500;
}

.hero a {
  color: white;
  text-decoration: none;
}

/* GENERAL GRID */
.packages,
.past,
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARDS */
.packages-card,
.past-card,
.testimonial-card {
  background: whitesmoke;
  color: #085e3a;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.packages-card a {
  text-decoration: none;
  color: #085e3a;
}

/* IMAGES */
.packages-card img,
.past-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* BOOKING */
.booking-card {
  display: flex;
  justify-content: center;
  background: url(images/diani.jpg);
  min-height: 50vh;
  background-size: cover;
  padding: 40px;
  border-radius: 30px;
}

.booking-card form {
  width: 100%;
  max-width: 400px;
  background: #0e683d;
  padding: 20px;
  border-radius: 20px;
  color: white;
}
.booking-card a{
  text-decoration: none;
  font-size: 12px;
  font-style: italic;
  color: aqua;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

button {
  display: block;
  margin: 15px auto;
  text-align: center;
  background: orange;
  color: white;
  font-weight: 100;
  padding: 10px;
  border-radius: 25px;
  border: none;
}

button:hover {
  background: green;
  cursor: pointer;
  font-weight: 700;
  border: 2px solid aquamarine;
}


/* TESTIMONIALS */
.testimonial-card {
  position: relative;
  padding-top: 40px;
  color: black;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 15px;
  border: 3px solid white;
}

.stars {
  color: gold;
}

@media (max-width: 768px) {
  .testimonial-card p {
    top: 50px;
  }
}

/* CONTACT */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  background: url(images/mara3.jpg);
  background-size: cover;
  color: white;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
}

.contact a {
  color: white;
  text-decoration: none;
}

.contact a:hover {
  color: mediumaquamarine;
  font-weight: 600;
}

.contact-card li {
  list-style: none;
}

.socials i {
  font-size: 20px;
  margin-right: 10px;
}

.socials i:hover {
  transform: scale(1.5);
  color: aqua;
}

.contact form {
  width: 100%;
  max-width: 300px;
  background: #0e683d;
  padding: 20px;
  border-radius: 20px;
  color: white;
}

/* FOOTER */
.footer-bottom {
  text-align: center;
  background: #085e3a;
  color: white;
  padding: 10px;
}

/* RESPONSIVE */
section {
  padding: 40px 20px;
}

/* TOUR PAGES */
.tour-page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  color: white;
  background-size: cover;
  background-position: center;
}

.tour-page ul li{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 23px;
  font-weight: 400;
  color: white;
  list-style: none;
}
.tour-page button{
  background-color: rgb(189, 11, 11);  
   margin-left: 60px;
}
.tour-page a{
  text-decoration: none;
  color: white;
  font-size: 23px;
  font-weight: 700;
}

/* MAASAI MARA */
.maasai {
  background-image: url(images/mara3.jpg);
 }

/* NAIROBI */
.nairobi {
  background-image: url(images/Nairo.jpg);
}
.nairobi p{
  font-style: italic;
}
/* KIBERA */
.kibera {
  background-image: url(images/Image20.jpeg);
}

/* GIRAFFE */
.giraffe {
  background-image: url(images/giraffe.jpg);
 }

/* DIANI */
.diani {
  background-image: url(images/diani2.jpg); 
  color: limegreen;
}

/* MOMBASA */
.mombasa {
  background-image: url(images/mombasa.jpg);
  color:limegreen;
}

@media (max-width: 768px) {

  .mombasa h1,
  .mombasa h2 {
    font-size: 28px;
  }

  .mombasa h3 {
    font-size: 22px;
  }

  .mombasa p,
  .mombasa li {
    font-size: 18px;
    line-height: 1.6;
  }
}