/* ========================= */
/* FOOTER WRAPPER */
/* ========================= */

.footer {
  height: 50vh;
  display: flex;
  align-items: center;
}

/* ========================= */
/* FOOTER GRID CONTAINER */
/* ========================= */

.footer-container {
  width: 100%;
  margin: auto;

  display: grid;
  gap: 40px;

  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "contact address social"
    "logo about about"
    "logo rights rights"
}

/* Make all blocks consistent */
.footer-container > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ========================= */
/* TYPOGRAPHY */
/* ========================= */

.footer-container h3 {
  margin-bottom: 15px;
  /* font-size: 20px; */
  font-weight: 600;
}

.footer-container p {
  margin-bottom: 10px;
  /* font-size: 14px; */
  line-height: 1.6;
}

/* ========================= */
/* GRID AREAS */
/* ========================= */

.footer-contact {
  grid-area: contact;
}

.footer-address {
  grid-area: address;
}

.footer-social {
  grid-area: social;
}

.footer-pages {
  grid-area: pages;
}

.footer-about {
  grid-area: about;
}

.footer-member {
  grid-area: member;
}
.footer-rights {
  grid-area: rights;
}

.footer-logo {
  grid-area: logo;
}

/* ========================= */
/* PAGES LINKS */
/* ========================= */

.footer-pages ul {
  list-style: none;
  padding: 0;
}

.footer-pages ul li {
  margin-bottom: 10px;
}

.footer-pages ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-pages ul li a:hover {
  color: #a67c3f;
}

.footer-pages ul li a.active {
  color: #c49b63;
}

/* ========================= */
/* SOCIAL ICONS */
/* ========================= */

.social-icons {
  display: flex;
  gap: 20px;
  font-size: 20px;
}

.social-icons a {
  color: #a67c3f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #000;
}

/* ========================= */
/* LOGOS */
/* ========================= */

.footer-logo img {
  width: 150px;
  margin-bottom: 10px;
}

.member-logos img {
  width: 80px;
  margin-bottom: 10px;
}

/* ========================= */
/* TABLET RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

  .footer {
    padding: 50px 30px;
    height: auto;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "contact address"
      "social pages"
      "about about"
      "member logo"
      "rights";
  }
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 600px) {

  .footer {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "contact"
      "address"
      "social"
      "pages"
      "about"
      "member"
      "logo"
      "rights";
  }

  .footer-container h3 {
    /* font-size: 18px; */
  }

  .footer-container p,
  .footer-pages ul li a {
    /* font-size: 13px; */
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-logo {
    align-items: flex-start;
  }
}