
/* ============== Footer start */

footer {
  padding-top: 60px;
  font-family: var(--ff-dm-sans);
  position: relative;
  overflow: hidden;
}

footer::before,
footer::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

footer::before {
  left: 0;
  background: radial-gradient(
    circle at left center,
    rgba(185, 251, 106, 0.6),
    transparent 60%
  );
}

footer::after {
  right: 0;
  background: radial-gradient(
    circle at right center,
    rgba(185, 251, 106, 0.6),
    transparent 60%
  );
}

/* Logo Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  max-width: 80px;
  width: 100%;
}

.footer-text {
  font-family: var(--ff-dm-sans);
  font-size: var(--fs-300);
  font-weight: var(--fw-regular);
  margin: 40px 0;
  color: var(--clr-primary-100);
}

/* Newsletter */

.newsletter-form {
  max-width: 420px;
  padding: 0;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 50px;
  border: 1px solid var(--clr-fade-200);

  box-shadow: inset 0 0 0.5px var(--clr-fade-600),
    0 8px 24px var(--clr-fade-250);
    position: relative;
}

/* Input */
.newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: var(--fs-300);
  font-weight: var(--fw-regular);
  color: var(--clr-primary-100);
  border-radius: 50px;
  width: 100%;
  max-width: 420px;
  height: 52px;
}

.newsletter-form input::placeholder {
  color: var(--clr-fade-600);
}

/* Button */
.newsletter-form input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid transparent;
  font-family: var(--ff-stolzl);
  background: var(--clr-primary-200);
  color: var(--clr-primary-900);
  cursor: pointer;
  transition: all 0.35s ease;
  max-width: 133px;
  width: 100%;
}

/* ===== HOVER STATE ===== */
.newsletter-form input[type="submit"]:hover {
  background: transparent;
  color: var(--clr-primary-200);
  border: 1px solid var(--clr-primary-200);
}



/* Other Columns */
.footer-heading {
  font-size: var(--fs-400);
  font-weight: var(--fw-regular);
  color: var(--clr-primary-100);
  line-height: var(--lh-125);
  margin-bottom: 15px;
}
footer ul li {
  cursor: pointer;
}
footer ul li > a {
  font-size: var(--fs-300);
  font-weight: var(--fw-regular);
  line-height: var(--lh-155);
  color: var(--clr-primary-100);
  margin-bottom: 10px;
}

footer ul li:hover a {
  color: var(--clr-primary-200);
}



/* Social Icons */
.socials {
  display: flex;
}
.socials a:not(:last-child) {
  margin-right: 15px;
}
.socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: var(--clr-primary-650);
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.socials a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px var(--clr-fade-400);
}
/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 60px;
  color: var(--clr-primary-100);
  font-size: var(--fs-300);
  line-height: var(--lh-155);
}
.footer-bottom a{
  text-decoration: none;
  color: var(--clr-primary-100);
  font-size: var(--fs-300);
  line-height: var(--lh-155);
}
.footer-bottom-right{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom-right li:first-child{
  margin-right: 10px;
}
/* ===================== Footer End */

@media screen and (max-width: 991px) {
  .footer-content{
    text-align: center;
    margin-bottom: 16px;
  }
  .footer-content > * {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-top .row .col:first-child .footer-content > form{
    width: 100%;
  }
  footer{
    padding-top: 40px;
  }
}
