/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* Nature color palette */
:root {
  --green: #2e7d32;
  --beige: #f1f1e6;
  --sand: #f5e1a4;
  --sky: #cce6f4;
  --white: #ffffff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('../assets/images/tanzania-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--green);
  color: var(--white);
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #256d29;
}

/* About Section */
.about {
  padding: 4rem 2rem;
  background: var(--beige);
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
  color: var(--green);
}

/* Destinations */
.destinations {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.dest-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.card {
  width: 250px;
  background: var(--sky);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
}

.card:hover {
  transform: scale(1.05);
}

/* Call to Action */
.cta {
  padding: 3rem 2rem;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

/* Footer */
footer {
  padding: 1rem;
  text-align: center;
  background: #222;
  color: #aaa;
}



/* Trip Form */
.form-section {
  padding: 4rem 2rem;
  background: var(--beige);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--green);
}

.form-container p {
  text-align: center;
  margin-bottom: 2rem;
}

form input,
form select,
form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkbox-group label {
  font-size: 0.95rem;
  color: #333;
}



.success-page {
  padding: 4rem 2rem;
  background: var(--sky);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
}

.success-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.success-box h2 {
  color: var(--green);
  margin-bottom: 1rem;
}

.success-box p {
  margin-bottom: 1.2rem;
  color: #333;
}

.btn-alt {
  background-color: #25D366;
  margin-left: 1rem;
}




.providers-section {
  padding: 4rem 2rem;
  background: var(--beige);
  text-align: center;
}

.providers-container h2 {
  color: var(--green);
  margin-bottom: 2rem;
}

.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.provider-card {
  width: 280px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.provider-card:hover {
  transform: translateY(-5px);
}

.provider-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}



.destinations-section {
  padding: 4rem 2rem;
  background: var(--beige);
  text-align: center;
}

.destinations-container h2 {
  color: var(--green);
  margin-bottom: 2rem;
}

.dest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.dest-card {
  background: var(--white);
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.3s;
}

.dest-card:hover {
  transform: scale(1.05);
}

.dest-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dest-card h3 {
  margin: 1rem 1rem 0.5rem;
  color: var(--green);
}

.dest-card p {
  margin: 0 1rem 1rem;
  color: #444;
  font-size: 0.95rem;
}

.dest-card .btn {
  margin: 0 1rem 1rem;
  display: inline-block;
}



.about-page {
  padding: 4rem 2rem;
  background: var(--white);
  max-width: 800px;
  margin: auto;
  text-align: left;
  line-height: 1.7;
}

.about-container h2 {
  text-align: center;
  color: var(--green);
  margin-bottom: 1rem;
}

.about-container h3 {
  margin-top: 2rem;
  color: var(--green);
}

.about-container ul, .about-container ol {
  margin-left: 1.5rem;
  padding-left: 1rem;
}

.about-container li {
  margin-bottom: 0.5rem;
}



.admin-section {
  padding: 3rem 2rem;
  max-width: 700px;
  margin: auto;
}

.admin-container h2 {
  color: var(--green);
  margin-bottom: 1rem;
}

.admin-container form {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.admin-container input,
.admin-container textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}


.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.admin-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}

.admin-card h3 {
  margin-bottom: 0.5rem;
  color: var(--green);
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card h3 {
  margin-top: 1rem;
  color: #2e7d32;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}


.testimonials {
  background: #f5fff8;
  padding: 3rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #444;
}

.testimonial-card h4 {
  color: #2e7d32;
  font-size: 1rem;
}


.faq-section {
  background: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
}

.faq-section h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  text-align: left;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: #444;
}


.promo-banner {
  background-color: #2e7d32;
  color: #fff;
  padding: 0.8rem 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.promo-banner a.promo-link {
  color: #ffd700;
  margin-left: 1rem;
  text-decoration: underline;
}


.newsletter {
  background: #e4f4e8;
  padding: 2rem;
  text-align: center;
  border-top: 3px solid #2e7d32;
}

.newsletter h3 {
  color: #2e7d32;
  margin-bottom: 1rem;
}

.newsletter form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 250px;
}

.newsletter button {
  padding: 0.8rem 1.5rem;
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}


/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2e7d32;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.logo a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #2e7d32;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/* Kilimanjaro Info Section */
.kilimanjaro-info {
  padding: 4rem 2rem;
  background: #f0fff3;
  color: #333;
}

.kilimanjaro-info .container {
  max-width: 900px;
  margin: 0 auto;
}

.kilimanjaro-info h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  text-align: center;
  margin-bottom: 2rem;
}

.kilimanjaro-info h3 {
  font-size: 1.8rem;
  color: #2e7d32;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.kilimanjaro-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.kilimanjaro-info ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}

.kilimanjaro-info ul li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.kilimanjaro-info a {
  color: #2e7d32;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.kilimanjaro-info a:hover {
  color: #1b4f23;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .kilimanjaro-info h2 {
    font-size: 2.2rem;
  }

  .kilimanjaro-info h3 {
    font-size: 1.6rem;
  }

  .kilimanjaro-info p,
  .kilimanjaro-info ul li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .kilimanjaro-info {
    padding: 3rem 1rem;
  }

  .kilimanjaro-info h2 {
    font-size: 2rem;
  }

  .kilimanjaro-info h3 {
    font-size: 1.4rem;
  }

  .kilimanjaro-info p,
  .kilimanjaro-info ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .kilimanjaro-info h2 {
    font-size: 1.8rem;
  }

  .kilimanjaro-info h3 {
    font-size: 1.2rem;
  }

  .kilimanjaro-info p,
  .kilimanjaro-info ul li {
    font-size: 0.9rem;
  }
}


/* Basic styling for the navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #2e7d32;
  color: #fff;
}

.navbar .logo a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

/* Hamburger menu styling */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #2e7d32;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem 0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    text-align: center;
    margin: 0.5rem 0;
  }
}
