@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&family=Raleway:wght@400;500;600&display=swap");

/* Footer Base */
.footer {
  width: 100%;
  background-color: #2f3e1f;
  padding: 3vw 6vw;
  color: #d4e8c2;
}

/* Logo */
.footer-logo {
  width: 8vw;
  height: auto;
  margin-bottom: 1.5vw;
}

/* Description */
.footer-left p {
  font-size: 1vw;
  line-height: 1.6;
  margin-bottom: 1.5vw;
  font-family: "Open Sans", sans-serif;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid #d4e8c2;
  margin: 2vw 0;
}

/* Content Layout */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vw;
  width: 100%;
}

.footer-left {
  flex: 1;
  max-width: 35vw;
}

/* Links Section */
.footer-links {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 3vw;
}

/* Social Icons */
.footer-column {
  flex: 0 1 auto;
  min-width: 120px;
  padding-right: 50px;
}

.footer-column img {
  width: 40px;
  height: auto;
  transition: transform 0.2s ease;
}

.footer-column img:hover {
  transform: scale(1.1);
}

.footer-column:last-child {
  text-align: right;
}

.footer-column h4 {
  font-size: 1.2vw;
  margin-bottom: 1vw;
  color: #d4e8c2;
  font-family: "Montserrat", sans-serif;
}

.footer-column a {
  display: block;
  font-size: 0.95vw;
  color: #faf3e0;
  text-decoration: none;
  margin-bottom: 0.8vw;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
}

.social-icons a {
  display: flex;
  margin-bottom: 0;
  width: 30px;
}

/* Copyright */
.footer .copyright {
  text-align: center;
  font-size: 0.9vw;
  color: #a3c585;
  margin-top: 2vw;
}

/* RESPONSIVE VIEWS */
/* ========== TABLET VIEW ========== */
@media screen and (max-width: 1024px) {
  .footer {
    padding: 40px 30px;
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 20px;
  }

  .footer-left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer-left p {
    font-size: 16px;
    max-width: 500px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-column {
    padding-right: 0;
    min-width: 150px;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-column a {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer .copyright {
    font-size: 14px;
    margin-top: 40px;
  }
}

/* ========== MOBILE VIEW ========== */
@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 20px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-logo {
    margin: 0 auto 20px auto;
  }

  .footer-left p {
    font-size: 14px;
    margin: 0 auto;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
  }

  .footer-column,
  .footer-column:last-child {
    text-align: center;
    padding-right: 0;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-divider {
    margin: 30px 0;
  }
}
