/* General Footer Styling */
footer {
  background-color: #006666;
  color: white;
  font-family: Arial, sans-serif;
}

footer .container {
  max-width: 1200px;
  margin: auto;
}

footer .row {
  display: flex;
  flex-wrap: wrap;
}

footer .footer-column {
  flex: 1;
  min-width: 250px;
  padding: 10px;
}

footer .footer-column h4 {
  border-bottom: 4px solid #D4AF37; /* Gold Border */
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
  color: #D4AF37; /* Gold Text */
  font-weight: bold;
  font-size: 18px; /* Adjust size if needed */
  text-transform: uppercase; /* Optional for a premium look */
}

footer .footer-column ul {
  list-style: none;
  padding: 0;
}

footer .footer-column ul li {
  margin-bottom: 8px;
}

footer .footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

footer .footer-column ul li a:hover {
  color: #D4AF37;
}

/* Footer Base */
#footer-bottom {
  background: linear-gradient(135deg, #006666, #00CCCC);
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Poppins', sans-serif;
}

/* Container & Text Styling */
#footer-bottom a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

#footer-bottom a:hover {
  text-decoration: underline;
}

#footer-bottom p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* 💻 Responsive Design */
@media (max-width: 768px) {
  #footer-bottom {
    padding: 15px;
    font-size: 14px;
    text-align: center;
  }

  #footer-bottom p {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #footer-bottom {
    background: linear-gradient(160deg, #006666, #00CCCC);
    text-align: center;
  }

  #footer-bottom p {
    font-size: 13px;
    text-align: center;
  }

  #footer-bottom a {
    display: block;
    margin-top: 5px;
    
  }
}


/* Social Media Icons */
footer .social-icons {
  display: flex; /* Enables Flexbox */
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  text-align: center; /* Fallback for text alignment */
  margin-top: 10px;
  padding-left: 30px;
}

footer .social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* Center items horizontally */
  gap: 15px; /* Spacing between icons */
}

footer .social-icons ul li {
  display: inline-block;
}

footer .social-icons ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #FFFFFF; /* Dark Green Background */
  color: #D4AF37; /* Gold Icons */
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%; /* Circle shape */
  transition: all 0.3s ease-in-out;
}

footer .social-icons ul li a:hover {
  background-color: #D4AF37; /* Gold background on hover */
  color: #1F2E1E; /* Dark Green Icons on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  footer .social-icons ul {
    gap: 10px; /* Reduce spacing for smaller screens */
  }
}

@media (min-width: 768px) {
  footer #footer-bottom .row {
      flex-direction: row;
  }

  footer #copyright, footer #terms {
      width: 50%;
  }
}