/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 0;
  width: 100%;
}

.company-name {
  font-size: 18px;
  margin-bottom: 10px;
}

.copyright {
  font-size: 14px;
  color: #aaa;
}

/* Social Media Links in Footer */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #444;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #f7be16;
  transform: translateY(-3px);
}

.social-links i {
  font-size: 20px;
}

/* Platform-specific colors on hover */
.social-links a:hover .fa-facebook-f {
  color: #1877f2;
}

.social-links a:hover .fa-instagram {
  color: #c32aa3;
}

.social-links a:hover .fa-tiktok {
  color: #25f4ee;
}
/* Footer links for legal pages */
.footer-links {
  margin-top: 15px;
  font-size: 14px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f7be16;
}

/* Adaugă aceste stiluri la sfârșitul fișierului CSS */

/* Footer nou cu 3 coloane */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  color: #f7be16;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: #f7be16;
}

/* Adaugă aceste stiluri pentru a repara iconițele social media din footer */

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #444;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #f7be16;
  transform: translateY(-3px);
}

.footer-social i {
  font-size: 20px;
}

/* Platform-specific colors on hover */
.footer-social a:hover .fa-facebook-f {
  color: #1877f2;
}

.footer-social a:hover .fa-instagram {
  color: #c32aa3;
}

.footer-social a:hover .fa-tiktok {
  color: #25f4ee;
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #f7be16;
}

.footer-contact i {
  color: #f7be16;
  font-size: 16px;
}

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

.footer-logo img {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.footer-copyright {
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
  }
}