.footer {
  position: relative;
  background: #0b0b0d;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 28px;
  padding: 56px 0 44px;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

.footer-logo-text {
  font-size: 20px;
  letter-spacing: 0.2px;
  font-weight: 650;
}

.footer-tagline {
  margin: 12px 0 16px;
  max-width: 34ch;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* fontos: a kép széle ne lógjon ki */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease,
    border-color 180ms ease;
}
.footer-social-link:focus-visible {
  outline: 2px solid rgba(214, 178, 98, 0.7);
  outline-offset: 2px;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  background: rgba(214, 178, 98, 0.1);
  border-color: rgba(214, 178, 98, 0.35);
}

.footer-social-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* kitölti a kockát */
  opacity: 0.95;
}

.footer-title {
  margin: 4px 0 14px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-link {
  display: inline-flex;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link:hover {
  color: rgba(214, 178, 98, 0.95);
  transform: translateX(2px);
}

.footer-link:focus-visible {
  outline: 2px solid rgba(214, 178, 98, 0.7);
  outline-offset: 2px;
  border-radius: 8px;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-item {
  display: grid;
  gap: 4px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  transition: background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.footer-contact-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(214, 178, 98, 0.22);
}

.footer-contact-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact-value {
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}

.footer-hours {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours-lines {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.footer-hours-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.footer-hours-time {
  color: rgba(255, 255, 255, 0.76);
  white-space: nowrap;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.footer-legal-inner {
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal-links,
.footer-legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-legal-link:hover {
  color: rgba(214, 178, 98, 0.95);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal-copy,
.footer-legal-credit {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 44px 0 34px;
    text-align: center;
    justify-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-contact-list {
    justify-items: center;
  }

  /* A kártya maradjon jól olvasható: középen van, de a szöveg balra rendezett */
  .footer-contact-item {
    width: 100%;
    max-width: 520px;
    text-align: left;
  }

  .footer-legal-inner {
    align-items: center;
    text-align: center;
  }

  .footer-legal-links,
  .footer-legal-meta {
    justify-content: center;
  }
  
  
  .footer-legal,
  .footer-legal-inner,
  .footer-legal-links,
  .footer-legal-meta {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .footer-legal-links {
    gap: 12px;
  }
}






