/* ===== FOOTER GENERAL ===== */
.footer {
  background-color: #000;
  color: #ccc;
  padding: 1.5rem 1rem;
  /* font-family: sans-serif; */
}

/* === SEPARAT: Contact + Hartă (NU este în footer) === */
.footer-contact-wrapper {
  background-color: #000;
  padding: 3rem 1rem 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
  .footer-content {
    flex-wrap: nowrap;
    align-items: stretch;
  }
}

.footer-contact,
.footer-map {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.footer-contact {
  background-color: #111;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  justify-content: center;
}

.footer-contact h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 0;
  cursor: pointer;
  transition: color 0.3s;
}

.contact-item p {
  margin: 0;
  padding: 0;
  line-height: inherit;
}

.contact-item:hover {
  color: #fff;
}

.contact-icon {
  color: #1db954;
  font-size: 1.2rem;
}

.contact-item a {
  color: #1db954;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #fff;
}

.location-label {
  color: #1db954;
  font-weight: 600;
  margin-right: 0.2rem;
}

.social-items {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-icon {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s;
}
.social-icon:hover {
  color: #1db954;
}

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

.footer-map iframe {
  flex: 1;
  min-height: 300px;
  border: 0;
}

/* === FOOTER FINAL INFO === */
.footer-info {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.8rem;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 100%;
  background-color: #000;
  flex-wrap: wrap;
}

/* Link default în footer */
.footer-info a {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  line-height: inherit;
}

/* Link special Horia Stan */
.footer-info a.designer-link {
  color: #1db954 !important;
  font-weight: 600;
  margin-left: 0.3rem !important; /* spațiu între “by” și nume */
  transition: color 0.3s ease;
}

.footer-info a.designer-link:hover {
  color: #f3c14d;
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
  }

  .footer-contact-wrapper {
    padding: 2rem 1rem 1rem;
  }

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

  .footer-map {
    width: 100%;
    margin-top: 1rem;
  }

  .contact-block {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Actualizare pentru social-items pentru a avea icon-urile unul lângă altul */
  .social-items {
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
  }

  .footer-info {
    flex-direction: column;
    line-height: 1.6rem;
    padding-top: 1.2rem;
  }
}