:root {
  --main: #228B22;
  --secondary: #C4B454;
  --dark: #222;
  --light: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
    width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

section {
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: var(--main);
}

.section-title p {
  max-width: 650px;
  margin: 10px auto 0;
  color: #555;
}

.btn {
  background: var(--secondary);
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
}

.btn:hover {
  background: var(--main);
  color: #fff;
}
.home-section {
  padding: 70px 0;
}

.light-bg {
  background: #f8f8f8;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-content h2 {
  color: #228B22;
  margin-bottom: 15px;
}

.section-content p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.section-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.package-box {
  background: #228B22;
  color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
}

/* Top Tours */
.top-tour-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.top-tour-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #228B22;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .section-image {
    order: -1;
  }
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #228B22;
}

/* Mobile */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }
 /* ===== FORCE MOBILE MENU HIDDEN ===== */
@media screen and (max-width: 768px) {

  /* ZIMA MENU YA DESKTOP */
  .nav {
    display: none !important;
  }

  /* 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;
  }
}
/* ===== HEADER BASE ===== */
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 22px;
  font-weight: 700;
  color: #228B22;
  text-decoration: none;
}

/* ===== DESKTOP MENU ===== */
.nav {
  display: flex;
  gap: 45px;
  align-items:center
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  pading: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color:#fff;
    background: var(--main);
    box-shadow: 0 4px 15px rgba (0,0,0,0.2);
    transform: translateY(-2px);
}

.nav a.active {
  color: #fff;
  background: var(--main);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.menu-toggle {
    display: none;
}

/* HAMBURGER — ZIMEZWA DESKTOP */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #228B22;
 }
}