/* =======================
   FOOTER STYLES
======================= */
.footer-section {
  position: relative; /* REQUIRED */
  padding: 20px 12%;
  background: black;
  color: var(--pink-color);
  font-family: "Myriad Pro", Arial, sans-serif;
  margin: auto;
  overflow-x: clip; /* modern + safer than hidden */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  gap: 20px;
}

/* LEFT COLUMN */
.footer-left {
  text-align: left;
  flex: 0 0 100px;
}

.footer-logo {
  width: 160px;
}

.footer-phone,
.footer-email {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 20px;
  justify-content: start;
}

.footer-social a {
  color: var(--orange-color);
  font-size: 28px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.1);
}

/* RIGHT COLUMNS */
.footer-links {
  padding-left: 90px;
  display: flex;
  justify-content: center;
  gap: 90px;
  flex: 1;
  flex-wrap: wrap;
  padding-top: 20px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 18px;
}

.footer-col a {
  color: var(--pink-color);
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.camps-footer {
  padding-left: 10px;
  display: flex;
  gap: 5px;
}

.footer-col > a {
  padding-left: 10px;
  font-size: 16px;
}

.footer-social > i,
.footer-social > .fa,
.footer-social > .fa-brands {
  font-size: 28px !important;
  width: auto !important;
  height: auto !important;
}

.footer-col a:hover {
  color: var(--orange-color);
}

.footer-section hr {
  margin-top: 20px;
}

.footer-copyright {
  height: 40px;
  font-size: 14px;
  line-height: 20px; /* vertically centers text */
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright-text {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-col {
  width: 150px;
}

.footer-top-img {
  min-width: 100vw;
  height: 30px;
  position: absolute;
  top: -28px;
  left: 0;
}

/* =======================
   RESPONSIVE STYLES
======================= */
@media (max-width: 1300px) {
  /* RIGHT COLUMNS */
  .footer-links {
    gap: 90px;
  }
  .footer-section {
    padding-left: 8%;
    padding-right: 8%;
  }
}

@media (max-width: 1150px) {
  .footer-links {
    padding-top: 0px;
    padding-left: 0px;
  }

  .footer-left {
    text-align: center;
    width: 100%;
  }

  .footer-social {
    text-align: center;
    justify-content: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-col h4,
  .footer-col a {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-links {
    flex-direction: row;
    gap: 40px;
    margin: auto;
  }

  .footer-col {
    flex: 0 0 150px;
    margin-bottom: 20px;
  }

  .footer-col h4,
  .footer-col a {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    text-align: center;
  }

  .camps-footer {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .copyright-text {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
