/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo a {
  font-size: 22px;
  font-weight: 700;
  color: #228B22;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  padding: 5px 0;
}

.nav-menu a.active {
  color: #228B22;
  border-bottom: 2px solid #C4B454;
  padding-bottom: 4px;
}

.hero {
  height: 35vh; /* punguza kutoka 45vh hadi 35vh */
  background: linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("../images/Kilimanjaro\ Tanzania.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px; /* header offset */
  padding: 0 20px;
}

.hero h1 {
  font-size: 28px; /* punguza font size */
  color: #fff;
  margin-bottom: 8px;
}

.hero p {
  font-size: 14px; /* punguza font size */
  color: #fff;
}


/* ===== DAY TRIPS CARDS ===== */
.day-trips {
  padding: 60px 0;
}

.trip-box {
  background: #fff;
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.trip-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.trip-box h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #228B22;
}

.trip-box p {
  font-size: 15px;
  margin-bottom: 12px;
}

.trip-box ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.trip-box ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* ===== BOOKING BUTTON ===== */
.cta-center {
  text-align: center;
}

.btn-book {
  display: inline-block;
  background: #228B22;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
}

.btn-book:hover {
  background: #1a661a;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.site-footer a:hover {
  color: #228B22;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
} 

/* ONYESHA HAMBURGER */
  .menu-toggle {
    display: block !important;
  }

  /* MENU IKIFUNGUKA */
  .nav.active {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    z-index: 1500;
  }
    .nav-menu {
    display: flex;
    flex-direction: column;
  }
}
