@charset "utf-8";
/* ===== Global Styles ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arimo', sans-serif;
  background-color: #060E00;
  color: #333;
  line-height: 1.6;
}

/* ===== Header Section ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2E6619;
  padding: 15px 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.header img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.header h1 {
  color: white;
  font-family: 'Merriweather', serif;
  font-size: 1.8em;
  flex: 1;
  text-align: center;
}

/* ===== Navigation Links ===== */
.list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px;
}

.list a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.list a:hover {
  color: #D9E34F;
}

/* ===== Header Icons ===== */
#ico {
  display: flex;
  gap: 15px;
  align-items: center;
}

#ico img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: 0.3s ease;
}

#ico img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

/* ===== Search Bar ===== */
#search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.search-bar {
  padding: 10px 15px;
  border-radius: 25px 0 0 25px;
  border: 1px solid #ccc;
  outline: none;
  width: 250px;
  font-size: 1em;
}

.search-button {
  background: #2E6619;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.search-button:hover {
  background: #D9E34F;
  transform: scale(1.05);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
              url("images/forest-bg.jpg") no-repeat center/cover;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.about-container h2 {
  font-size: 2em;
  color: #80CC29;
  margin-bottom: 20px;
}

.about-container p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.clickable-list li {
  list-style: none;
  margin: 10px 0;
}

.clickable-list li a {
  display: block;            /* Makes the whole row clickable */
  background: rgba(255,255,255,0.1);
  padding: 12px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s ease;
}

.clickable-list li a:hover {
  background: #80CC29;
  color: #060E00;
  transform: translateY(-2px);
}


.about-container h3 {
  color: #80CC29;
  margin-top: 40px;
  margin-bottom: 10px;
}

.list a.active {
  color: #80CC29;
  border-bottom: 2px solid #80CC29;
}

/* ===== Footer ===== */
footer.socialmedia {
  background:#2E6619;
  color: white;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-top: 40px;
  gap: 20px;
}

footer img {
  width: 60px;
}

footer a {
  color: white;
  text-decoration: none;
}

#icon img {
  width: 35px;
  margin: 0 5px;
  transition: 0.3s ease;
}

#icon img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Subscribe button */
.subscribe-btn {
	display: inline-block;
  background: #2E8B57;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
	text-decoration: none;
  cursor: pointer;
	
}

.subscribe-btn:hover {
  background: #246b45;
}

/* =========================================================
   HAMBURGER MENU
========================================================= */
.hamburger {
  width: 35px;
  height: 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

/* ===== Tablets (max-width: 900px) ===== */
@media screen and (max-width: 900px) {
  .about-container {
    padding: 30px;
  }

  .about-container h2 {
    font-size: 1.7em;
  }
}

/* ===== Mobile (max-width: 768px) ===== */
@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .header img {
    margin-bottom: 10px;
  }
	
  .hamburger {
    display: flex;
  }
 nav {
    display: none;
    width: 100%;
    background: #2E6619;
    padding: 15px 0;
  }

  nav.open {
    display: block;
  }

  .list {
    flex-direction: column;
    gap: 12px;
  }

  #search-container {
    flex-direction: column;
  }

  .search-bar {
    border-radius: 25px;
    width: 90%;
    margin-bottom: 10px;
  }

  .search-button {
    border-radius: 25px;
    width: 50%;
  }

  .about-container {
    padding: 25px;
  }
	 footer.socialmedia {
    flex-direction: column;
    text-align: center;
}

/* ===== Small Phones (max-width: 480px) ===== */
@media screen and (max-width: 480px) {

  .header h1 {
    font-size: 1.4em;
  }

  .list a {
    font-size: 1em;
  }

  .about-container h2 {
    font-size: 1.5em;
  }

  .about-container p {
    font-size: 1em;
  }

  footer.socialmedia {
    flex-direction: column;
    text-align: center;
  }

  #icon img {
    width: 30px;
  }
	footer img {
    width: 50px;
	}}}

