/* =====================
   VARIABLES
===================== */
/* =====================
   TYPOGRAPHY
===================== */
@font-face {
  font-family: "Merriweather";
  src: url("../typography/Merriweather-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Nunito";
  src: url("../typography/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
}
/* =====================
   RESET & BASE STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: none;
  transition: all 0.3s ease;
  list-style: none;
  text-decoration: none;
  font-family: "Nunito";
}

body {
  background-color: #bdf1bd;
  overflow-x: hidden;
  color: #2d502d;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  width: 100%;
}

/* =====================
   MIXINS
===================== */
/* =====================
   UTILITIES
===================== */
.bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.green-text {
  color: rgb(22, 148, 22);
}

.red-text {
  color: red;
}

.important-text {
  color: #4caf50;
}

.hidden {
  opacity: 0;
  scale: 0.8;
}

.shown {
  opacity: 1;
  scale: 1;
}

hr {
  width: 100%;
  background-color: #bdf1bd;
  height: 2px;
}

/* =====================
   BUTTONS
===================== */
.btn {
  padding: 0.7rem 1.6rem;
  border-radius: 8px !important;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  background: #bdf1bd;
  border-radius: 8px;
  border: 1px solid rgba(45, 80, 45, 0.1);
  color: #2d502d;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
@media screen and (min-width: 700px) {
  .btn {
    max-width: 250px;
  }
}

.ghost-btn {
  background: transparent;
  border: solid 2px #bdf1bd;
  color: #bdf1bd;
  transition: all 0.3s ease;
  background: #bdf1bd;
  border-radius: 8px;
  border: 1px solid rgba(45, 80, 45, 0.1);
  color: #2d502d;
}
.ghost-btn:hover {
  transform: translateY(-2px);
}
.ghost-btn:active {
  transform: translateY(0) scale(0.98);
}
.ghost-btn:hover {
  box-shadow: 0 4px 12px rgba(45, 80, 45, 0.3);
  transform: translateY(-2px);
}
.ghost-btn:active {
  transform: scale(0.95);
  box-shadow: none;
}

/* =====================
   LAYOUT UTILITIES
===================== */
.body-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

section {
  padding: 1rem;
  max-width: 1200px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-title {
  color: #2d502d;
  text-transform: uppercase;
  font-size: 2rem;
  font-family: "Merriweather";
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  width: 100%;
  max-width: 700px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.show-up,
.show-down,
.show-left,
.show-right,
.bounce-in,
.rotate-left,
.rotate-right {
  opacity: 0;
}

.animated {
  opacity: 1;
}
.animated.show-up {
  animation: showUp 0.5s forwards;
}
.animated.show-down {
  animation: showDown 0.5s forwards;
}
.animated.show-left {
  animation: showLeft 0.5s forwards;
}
.animated.show-right {
  animation: showRight 0.5s forwards;
}
.animated.bounce-in {
  animation: bounceIn 0.5s forwards;
}
.animated.rotate-left {
  animation: rotateLeft 0.5s forwards;
}
.animated.rotate-right {
  animation: rotateRight 0.5s forwards;
}

/* ---------------------
   Keyframes
--------------------- */
@keyframes showUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes showDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes showLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes showRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rotateLeft {
  0% {
    transform: translateX(-100%) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes rotateRight {
  0% {
    transform: translateX(100%) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-weight: bold;
  max-height: 60px;
  z-index: 1000;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #bdf1bd;
  border-radius: 8px;
  border: 1px solid rgba(45, 80, 45, 0.1);
  color: #2d502d;
  border-radius: 0 0 8px 8px;
}
.nav:hover {
  transform: translateY(-2px);
}
.nav:active {
  transform: translateY(0) scale(0.98);
}
@media screen and (min-width: 700px) {
  .nav {
    max-height: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2rem;
    overflow: visible;
    border-radius: 0 0 35px 35px;
  }
}
.nav .nav-icon-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .nav .nav-icon-btn {
    width: auto;
    justify-content: flex-start;
  }
}
.nav .nav-icon-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  text-wrap: nowrap;
}
.nav .nav-icon-wrapper .nav-icon {
  width: 100%;
  max-width: 40px;
}
@media screen and (min-width: 700px) {
  .nav .nav-icon-wrapper .nav-icon {
    max-width: 50px;
  }
}
.nav .nav-icon-wrapper .nav-title {
  font-size: 1.8rem;
  font-family: "Merriweather";
}
.nav .nav-links {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 1rem 0;
  transition: max-height 0.4s ease;
}
@media screen and (min-width: 700px) {
  .nav .nav-links {
    overflow: unset;
    max-height: none;
    flex-direction: row;
    gap: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0;
    flex: 1;
    justify-content: center;
  }
}
.nav .nav-links .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #2d502d;
  transition: color 0.3s ease;
  font-weight: 600;
}
.nav .nav-links .nav-link:hover {
  color: #4caf50;
}
.nav-cta-section {
  display: none;
  align-self: center;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}
@media screen and (min-width: 700px) {
  .nav-cta-section {
    display: flex;
    margin: 0;
    width: auto;
    align-self: center;
  }
}

.toggle-btn {
  background: none;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 30px;
  padding: 5px;
}
@media screen and (min-width: 700px) {
  .toggle-btn {
    display: none;
  }
}
.toggle-btn .bar {
  height: 3px;
  width: 100%;
  background-color: #4caf50;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.toggle-btn.toggled .bar:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle-btn.toggled .bar:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
.toggle-btn.toggled .bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav-cta-btn {
  background: #2d502d !important;
  color: #bdf1bd !important;
  border: solid 2px #2d502d;
}
.nav-cta-btn:hover {
  background-color: transparent !important;
  color: #2d502d !important;
}
@media screen and (min-width: 700px) {
  .nav-cta-btn {
    display: block;
    border-radius: 35px !important;
  }
}

.footer {
  background: #2d502d;
  color: #ecf2ec;
  padding: 3rem 1.5rem;
  font-family: "Merriweather", serif;
  text-align: center;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}
.footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer .footer-logo {
  max-width: 100px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.footer .footer-logo:hover {
  transform: scale(1.05);
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer .footer-links ul a {
  font-size: 0.95rem;
}
.footer .footer-social .social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer .footer-social .social-media .social-link {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  background: #bdf1bd;
  border-radius: 8px;
  border: 1px solid rgba(45, 80, 45, 0.1);
  color: #2d502d;
}
.footer .footer-social .social-media .social-link:hover {
  transform: translateY(-2px);
}
.footer .footer-social .social-media .social-link:active {
  transform: translateY(0) scale(0.98);
}
.footer .footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(189, 241, 189, 0.2);
  text-align: center;
  font-weight: 600;
}
.footer .footer-bottom .copyright {
  font-size: 0.9rem;
  color: rgb(252.1125, 254.3875, 252.1125);
  margin-top: 0.5rem;
}

/* =====================
		HEADER
===================== */
.header {
  height: 100vh;
  background: url("../assets/header-mobile.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 700px) {
  .header {
    background: url("../assets/header.jpg") center/cover no-repeat;
    justify-content: flex-end;
  }
  .header::before {
    background: rgba(0, 0, 0, 0.2);
  }
}

.header-content {
  z-index: 2;
  padding: 2rem;
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1.5rem;
}
.header-content :first-child {
  font-family: "Merriweather";
}
@media screen and (min-width: 700px) {
  .header-content {
    padding: 4rem;
    width: 45%;
    gap: 2rem;
    text-align: left;
    align-items: flex-start;
  }
}

.header-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0;
  color: #ecf2ec;
  text-shadow: 0 2px 5px rgba(236, 242, 236, 0.2);
  letter-spacing: 1px;
}
.header-title span {
  text-shadow: 0 2px 5px rgba(76, 175, 80, 0.2);
}

.header-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.5px;
  color: rgba(236, 242, 236, 0.9);
  opacity: 0.9;
  max-width: 500px;
}

.cta-section {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .cta-section {
    flex-direction: row;
    justify-content: flex-start;
    width: auto;
  }
}

/*# sourceMappingURL=style.css.map */
