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

.footer-section {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding: 110px 0 40px;

  background: #000000f5;
}

/* =========================
   BACKGROUND
========================= */

.footer-bg {
  position: absolute;
  inset: 0;

  background-image: url("../images/footer-bg.jpg");
  background-size: cover;
  background-position: center;

  opacity: 0.25;

  transform: scale(1.08);
}

.footer-overlay {
  position: absolute;
  inset: 0;

  background: #00000080;

  backdrop-filter: blur(6px);
}

/* =========================
   CONTAINER
========================= */

.footer-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1500px;

  margin: auto;

  padding: 0 40px;
}

/* =========================
   TOP
========================= */

.footer-top {
  display: grid;

  grid-template-columns: 0.9fr 1.6fr;

  gap: 40px;

  padding-bottom: 80px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   LEFT
========================= */

.footer-left {
  width: 100%;
}

/* LOGO */

.footer-logo {
  display: flex;
  align-items: center;

  gap: 14px;

  text-decoration: none;

  margin-bottom: 40px;
}

.footer-logo img {
  width: auto;
  height: 90px;
  padding: 4px 12px;
  background: #fff;
  border-radius: 8px;
}

/* DIVIDER */

.footer-divider {
  width: 100%;
  height: 1px;

  background: rgba(255, 255, 255, 0.08);

  margin-bottom: 36px;
}

/* HOURS */

.footer-hours-title {
  color: #ffffff;

  font-size: 22px;
  font-weight: 700;

  margin-bottom: 24px;
  font-family: var(--secondary-font);
}

.footer-hours-text {
  color: #fff;

  font-size: 16px;
  line-height: 1.9;
}

/* =========================
   RIGHT
========================= */

.footer-right {
  width: 100%;
}

/* GRID */

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.3fr;

  gap: 40px;

  padding-bottom: 50px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* COLUMN */

.footer-column {
  width: 100%;
}

/* TITLE */

.footer-title {
  color: #ffffff;

  font-size: 22px;
  font-weight: 700;

  margin-bottom: 28px;
  font-family: var(--secondary-font);
}

/* CONTACT */

.footer-contact-text,
.footer-newsletter-text {
  color: #fff;

  font-size: 16px;
  line-height: 1.9;
}

.footer-contact-link {
  display: block;

  color: #fff;

  text-decoration: none;

  font-size: 16px;

  margin-bottom: 18px;

  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-column .footer-contact-link:last-child {
  border-top: 1px solid rgb(83, 83, 83);
  padding-top: 18px;
}

.footer-contact-link svg {
  width: 20px;
  height: 20px;
}

.footer-contact-link:hover {
  color: #facc15;
}

/* =========================
   FORM
========================= */

.footer-form {
  position: relative;

  margin-top: 24px;
}

.footer-input {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 58px 0 16px;
  color: #ffffff;
  font-size: 12px;
  outline: none;
  transition: 0.3s ease;
}

.footer-input:focus {
  border-color: rgba(250, 204, 21, 0.5);
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* BUTTON */

.footer-submit {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 6px;
  background: #facc15;
  color: #111827;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-submit:hover {
  background: #ffffff;
}

/* =========================
   SOCIALS
========================= */

.footer-social-wrapper {
  padding-top: 40px;
}

.footer-social-title {
  color: #ffffff;

  font-size: 24px;
  font-weight: 700;

  margin-bottom: 24px;
  font-family: var(--secondary-font);
}

.footer-socials {
  display: flex;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

.footer-social {
  height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.35s ease;
}

.footer-social:hover {
  background: #facc15;

  color: #111827;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  flex-wrap: wrap;

  padding-top: 40px;
  padding-bottom: 34px;
}

/* NAV */

.footer-nav {
  display: flex;
  align-items: center;

  gap: 36px;

  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);

  text-decoration: none;

  font-size: 17px;

  transition: 0.3s ease;
}

.footer-nav a:hover {
  color: #facc15;
}

/* COPYRIGHT */

.footer-copyright {
  color: rgba(255, 255, 255, 0.72);

  font-size: 16px;
}

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

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-hours {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 36px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 90px 0 40px;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-hours-title,
  .footer-title,
  .footer-social-title {
    font-size: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-nav {
    gap: 20px;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .footer-hours-text,
  .footer-contact-text,
  .footer-newsletter-text,
  .footer-contact-link,
  .footer-copyright {
    font-size: 15px;
  }
}
