footer {

  padding: 20px 0; /* 2vw -> 20px */
    padding-top: 100px;
  background-color: var(--bg-light);
  color: var(--primary-gold);
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 80%;
  margin: 0 auto;
  gap: 20px; /* 2vw -> 20px */
}

.footer-info,
.footer-socials,
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-info h3,
.footer-socials h3,
.footer-links h3 {
  font-size: 20px; /* 2vw -> 20px */
  margin-bottom: 10px; /* 1vw -> 10px */
}

.footer-info p,
.footer-socials a,
.footer-links a {
  font-size: 15px; /* 1.5vw -> 15px */
  color: var(--text-gold);
  text-decoration: none;
  display: block;
  margin: 5px 0; /* 0.5vw -> 5px */
}

.footer-socials a:hover,
.footer-links a:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

.footer-copy {
  margin-top: 20px; /* 2vw -> 20px */
  font-size: 12px; /* 1.2vw -> 12px */
  opacity: 0.7;
}

/* Reszponzív módosítások */
@media (max-width: 1200px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-info,
  .footer-socials,
  .footer-links {
    margin-bottom: 20px; /* 2vw -> 20px */
  }
}