/* ---------------------------------- */
/* 🦶 Footer Styling                  */
/* ---------------------------------- */
.main-footer {
  background: #263238;
  color: #f5f5f5;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  overflow-wrap: break-word; /* ✅ Prevents content overflow */
}

.footer-container {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.footer-logo {
  height: 60px;
  border-radius: 8px;
}
.tagline-line {
  font-size: 1rem;
  color: #cfd8dc;
  margin-bottom: 0.3rem;
  line-height: 1.05;
  text-align: left;
  white-space: nowrap;
}
/* .tagline-text h2 {
  font-size: 1.3rem;
  color: #ffcc80;
  margin-bottom: 0.3rem;
} */
.tagline-text {
  max-width: 100%;
  white-space: normal;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffcc80;
  margin-bottom: 0.4rem;
}
/* .tagline-text p {
  font-size: 1rem;
  color: #cfd8dc;
  margin: 0;
} */

.footer-contact h3,
.footer-social h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffcc80;
}

.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  color: #cfd8dc;
  text-decoration: none;
}

.footer-social .social-icons {
  display: flex;
  justify-content: left;
  gap: 1rem;
}

.icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: cover;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
}

/* Social Icons */
.facebook  { background-image: url("icons/facebook.png"); }
.twitter   { background-image: url("icons/twitter.png"); }
.instagram { background-image: url("icons/instagram.png"); }
.linkedin  { background-image: url("icons/linkedin.png"); }
.youtube   { background-image: url("icons/youtube.png"); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #90a4ae;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: center;
}

.footer-links a {
  color: #b0bec5;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #90a4ae;
}




@media (max-width: 768px) {
  .tagline-line {
    white-space: normal;
    text-align: center;
  }

  .footer-tagline {
    grid-column: span 3;
    flex-direction: column;
    align-items: center;
  }
}