* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f7f2;
  color: #1b2b1b;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: #062b16;
  padding: 16px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #a7b66b;
}

.nav-links a:hover {
  color: #a7b66b;
}

/* HERO / HOME */
.hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(0, 35, 15, 0.75), rgba(0, 35, 15, 0.75)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 8%;
}

.hero-content {
  max-width: 850px;
}

.hero img {
  width: 160px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 24px;
}

.slogan {
  font-weight: bold;
  color: #a7b66b;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  background: #a7b66b;
  color: #062b16;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: white;
  color: #062b16;
}

/* GENERAL SECTIONS */
section {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #062b16;
  margin-bottom: 18px;
}

.section-text {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  color: #394839;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #f7f8f4;
  padding: 12px;
}

.card-content {
  padding: 26px;
}

.card-content h3 {
  color: #062b16;
  font-size: 24px;
  margin-bottom: 10px;
}

.card-content p {
  color: #4a5b4a;
  font-size: 17px;
}

/* ACTIVITY SECTIONS */
.activity-section {
  background: white;
  margin-bottom: 20px;
}

.activity-box {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.activity-box img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #f7f8f4;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.activity-box h2 {
  font-size: 34px;
  color: #062b16;
  margin-bottom: 14px;
}

.activity-box p {
  font-size: 18px;
  color: #405040;
}

/* CONTACT */
.contact {
  background: #062b16;
  color: white;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info {
  margin-top: 25px;
  font-size: 18px;
}

.contact-info a {
  color: #a7b66b;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.contact-info a:hover {
  color: white;
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #03180c;
  color: white;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}

/* RESPONSIVE TABLET */
@media (max-width: 900px) {
  .navbar {
    padding: 14px 4%;
    gap: 25px;
  }

  .logo {
    font-size: 18px;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .activity-box {
    grid-template-columns: 1fr;
  }

  .activity-box img {
    height: 300px;
  }
}

/* RESPONSIVE MOBILE */
@media (max-width: 900px) {
  .navbar {
    padding: 14px 5%;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    width: 55px;
    height: 55px;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .activity-box {
    grid-template-columns: 1fr;
  }

  .activity-box img {
    height: 300px;
  }
}
/* FIX MOBILE OVERFLOW */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* MOBILE NAVBAR FIX */
@media (max-width: 768px) {
  .navbar {
    width: 100%;
    padding: 12px 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .logo {
    font-size: 22px;
    justify-content: center;
  }

  .logo img {
    width: 55px;
    height: 55px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-left: 0;
  }

  .nav-links li {
    display: inline-block;
  }

  .nav-links a {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    width: 100%;
    min-height: 75vh;
    padding: 60px 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero img {
    width: 130px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
  }

  section {
    width: 100%;
    padding: 60px 20px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card {
    width: 100%;
  }

  .activity-box {
    grid-template-columns: 1fr;
  }
}