@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
========================================================= */
.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;
  border-radius: 0;
  object-fit: cover;
}

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

/* =========================================================
   NAVIGATION
========================================================= */
nav {
  display: flex;
  justify-content: center;
  flex: 1;
}

.list {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

/* =========================================================
   HEADER ICONS
========================================================= */
#ico {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

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

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

/* ===== Mailchimp Logo Style ===== */
.mc-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 200px;
  height: auto;
  cursor: pointer;
}

/* fix for smaller screens */
.indicates-required {
  margin-left: 400px;
}

/* ===== Mailchimp Form Container ===== */
#mc_embed_signup {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

/* Heading */
#mc_embed_signup h2 {
  color: #2E6619;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

/* Labels */
#mc_embed_signup label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Inputs */
#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="email"],
#mc_embed_signup select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  box-sizing: border-box;
}

/* Submit Button */
#mc-embedded-subscribe {
  background-color: #2E6619;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  transition: background 0.25s ease;
}

#mc-embedded-subscribe:hover {
  background-color: #D9E34F;
}

#mc_embed_shell {
  position: relative;
  top: 20px;
}

/* Required asterisk */
.asterisk {
  color: red;
}

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

footer img {
  width: 60px;
}

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

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

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

/* ===== Subscribe Button (General) ===== */
.subscribe-btn {
  display: inline-block;
  background: #2E8B57;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  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 DESIGN RULES
========================================================= */

/* ---- Tablets & Medium Screens ---- */
@media (max-width: 900px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .header img {
    width: 65px;
    height: 65px;
  }

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

  .indicates-required {
    margin-left: 0;
    text-align: center;
  }
}

/* ---- Mobile Screens ---- */
@media (max-width: 600px) {
  .header {
    padding: 15px;
    gap: 15px;
  }

  .header img {
    width: 60px;
    height: 60px;
  }

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

  .list {
    gap: 12px;
  }

  #ico {
    justify-content: center;
  }

  /* Hamburger Menu */
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    width: 100%;
    background: #2E6619;
    padding: 15px 0;
  }

  nav.open {
    display: block;
  }

  .list {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 0;
  }

  /* Search bar full width */
  .search-bar {
    width: 90%;
  }

  /* Mailchimp form responsive fix */
  #mc_embed_signup {
    width: 90%;
    padding: 20px;
  }

  .mc-logo {
    max-width: 150px;
  }

  .indicates-required {
    margin-left: 0;
    text-align: center;
  }

  /* Footer stack */
  footer.socialmedia {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
