/* === Poetic Pilot Academy Footer === */

.poetic-footer {
  position: relative;
  background: linear-gradient(160deg, #e9dc96, #ffffff);
  padding: 70px 40px 0;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: #222;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* === Left Section === */
.footer-left {
  flex: 1 1 32%;
  min-width: 260px;
}

.footer-logo {
  width: 300px;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  max-width: 320px;
}

/* === Center Section (Quick Links) === */
.footer-center {
  flex: 1 1 25%;
  min-width: 200px;
  text-align: center;
}

.footer-center h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
  position: relative;
}

.footer-center h4::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background-color: #b8960f;
  margin: 8px auto 0;
  border-radius: 2px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #b8960f;
}

/* === Right Section (Socials) === */
.footer-right {
  flex: 1 1 25%;
  min-width: 200px;
  text-align: center;
}

.footer-right h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
  position: relative;
}

.footer-right h4::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background-color: #b8960f;
  margin: 8px auto 0;
  border-radius: 2px;
}

.footer-social-list i {
  margin-right: 8px;
  width: 22px;
  text-align: center;
  font-size: 18px;
}

/* === Bottom Section === */
.footer-bottom {
  text-align: center;
  padding: 30px 10px 60px;
  font-size: 14px;
  color: #444;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

/* === Desktop-only margin for logo === */
@media (min-width: 901px) {
  .footer-logo {
    margin-left: 0px;
  }
}

/* === Responsive === */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 100%;
  }
  .footer-about {
    margin: 0 auto 20px;
  }
  .footer-center h4::after,
  .footer-right h4::after {
    margin: 6px auto 0;
  }
}

.footer-tagline {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
}

.footer-tagline span {
  color: #b8960f;
  font-weight: 600;
}
