/* ============================================================
   footer.css  –  Sötét fekete téma türkíz akcentussal
   ============================================================ */

#FOOTER_WRAPPER {
  background: rgba(47 47 47 / 96%);
  background: rgba(0, 0, 0, 0.87);
  color: #E0E0E0;
  margin-top: 0;
  border-top: 1px solid rgba(14, 124, 123, 0.35);
}

#FOOTER_INNER {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.FOOTER_COL_TITLE {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--COLOR_PRIMARY, #0E7C7B);     /* türkíz kiemelés */
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 1.1rem 0;
}

#FOOTER_LOGO {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

#FOOTER_LOGO_MONOGRAM {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--COLOR_PRIMARY, #0E7C7B), #064241);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#FOOTER_LOGO_NAME {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #EAEAEA;
}

#FOOTER_TAGLINE {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #B0B0B0;
  margin: 0;
}

.FOOTER_LIST {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.FOOTER_LIST li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #C0C0C0;
}

.FOOTER_LABEL {
  color: var(--COLOR_PRIMARY, #0E7C7B);
  font-weight: 500;
  margin-right: 0.3rem;
}

.FOOTER_CONTACT_LINK {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E0E0E0;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.FOOTER_CONTACT_LINK:hover {
  color: var(--COLOR_PRIMARY, #0E7C7B);
}

.FOOTER_ICON {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--COLOR_PRIMARY, #0E7C7B);
}

#FOOTER_IMPRESSUM_LINK {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #B0B0B0;
  text-decoration: none;
  border: 1px solid rgba(14, 124, 123, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

#FOOTER_IMPRESSUM_LINK:hover {
  background: rgba(14, 124, 123, 0.12);
  color: var(--COLOR_PRIMARY, #0E7C7B);
  border-color: rgba(14, 124, 123, 0.6);
}

#FOOTER_BOTTOM {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.2rem 2rem 1.8rem;
  border-top: 1px solid rgba(14, 124, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

#FOOTER_COPYRIGHT {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #909090;
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  #FOOTER_INNER {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  #FOOTER_BRAND_COL {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  #FOOTER_INNER {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 1.5rem;
    gap: 2rem;
  }
  #FOOTER_BRAND_COL {
    grid-column: 1;
  }
  #FOOTER_BOTTOM {
    padding: 1rem 1.5rem 1.5rem;
  }
}