
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: 'Nunito', sans-serif;
  background-color: #fdf6e3;
  color: #1e2d24;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

h1, h2 {
  font-family: 'Boogaloo', cursive;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  color: #1a3a2a;
}

h2 {
  font-size: 2.8rem;
  color: #1a3a2a;
  margin-bottom: 15px;
}

h2 em {
  font-family: 'Caveat', cursive;
  color: #2d6a4f;
  font-style: normal;
}

p {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #1a3a2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.logo {
  font-family: 'Boogaloo', cursive;
  font-size: 1.6rem;
  color: #95d5b2;
}

#hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

#hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #95d5b2;
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

#hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

#hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#nav-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #1a3a2a;
  width: 200px;
  border: 2px solid #2d6a4f;
}

#nav-menu li a {
  display: block;
  padding: 15px 25px;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: #d8f3dc;
  border-bottom: 1px solid #2d6a4f;
}

#nav-menu li a:hover {
  color: #52b788;
  background-color: #2d6a4f;
}


.hero-section {
  background: linear-gradient(150deg, #1a3a2a 0%, #2d6a4f 60%, #52b788 100%);
  padding: 100px 30px;
  text-align: center;
}

.hero-section p.small-text {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: #95d5b2;
  margin-bottom: 10px;
}

.hero-section h1 {
  color: #fdf6e3;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.hero-section p.subtitle {
  font-size: 1.2rem;
  color: #d8f3dc;
  max-width: 560px;
  margin: 0 auto 40px;
}


.btn {
  display: inline-block;
  background-color: #2d6a4f;
  color: white;
  font-family: 'Boogaloo', cursive;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: 3px solid #1a3a2a;
  box-shadow: 4px 4px 0 #1a3a2a;
  cursor: pointer;
}

.btn:hover {
  background-color: #245c42;
}

.btn-dark {
  background-color: #1a3a2a;
  border-color: #2d6a4f;
  box-shadow: 4px 4px 0 #2d6a4f;
}

.btn-dark:hover {
  background-color: #122b1f;
}

/* check codepen to see if there's a better one*/
.label {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  font-weight: 700;
  background-color: #95d5b2;
  color: #1a3a2a;
  padding: 3px 15px;
  border-radius: 50px;
  border: 2px solid #2d6a4f;
  margin-bottom: 10px;
}


.page-section {
  padding: 80px 30px;
}

.content-box {
  max-width: 800px;
  margin: 0 auto;
}


.about-section {
  background-color: #fdf6e3;
}



.facts-section {
  background-color: white;
}

.facts-intro {
  color: #4a7060;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  margin-bottom: 25px;
}


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

.accordion-item {
  border: 2px solid #2d6a4f;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fdf6e3;
  box-shadow: 3px 3px 0 #2d6a4f;
}

.accordion-item.active {
  box-shadow: 5px 5px 0 #1a3a2a;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Boogaloo', cursive;
  font-size: 1.2rem;
  color: #1a3a2a;
}

.accordion-btn:hover,
.accordion-item.active .accordion-btn {
  background-color: #1a3a2a;
  color: #d8f3dc;
}

.accordion-content {
  display: none;
  padding: 0 20px 15px;
  border-top: 2px solid #d8f3dc;
}

.accordion-content p {
  padding-top: 15px;
  color: #3a5a44;
  margin-bottom: 0;
}





.footer {
  background-color: #1e2d24;
  color: #95d5b2;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
}

.footer em {
  font-style: normal;
  color: #52b788;
}

.footer .small {
  font-size: 0.9rem;
  color: #6aaa88;
  margin-top: 5px;
  margin-bottom: 0;
}


@media (max-width: 768px) {

  .menu-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1a3a2a;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 2px solid #2d6a4f;
  }

  .nav-menu.open {
    max-height: 300px;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li a {
    display: block;
    padding: 15px 30px;
    font-size: 1.2rem;
  }

  .hero-section {
    padding: 60px 20px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

}

@media (min-width: 769px) {

  .menu-btn {
    display: flex;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
    max-height: none;
    overflow: visible;
  }

  .nav-menu li a {
    color: #d8f3dc;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    font-weight: 700;
  }

}