/* =============================
 *  FOOTER – kártyás blokk
 * =========================== */

.pp-footer {
  padding: 40px 16px 0px;
}

.pp-footer-inner {
  max-width: 80%;
  margin: 0 auto;

  /* pasztell, PurplePoppy hangulatú mix */
  background: linear-gradient(
    135deg,
    rgba(250, 249, 246, 0.97),  /* nagyon halvány bézs */
    rgba(255, 244, 248, 0.97),  /* halvány rózsaszín */
    rgba(241, 248, 255, 0.97)   /* nagyon világos kék / levendula */
  );

  border-radius: 32px;
  padding: 32px 40px 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);

  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
}


/* márka / bal hasáb */
.pp-footer-logo img {
  max-width: 190px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.pp-footer-follow-label {
  margin: 0 0 10px;
  font-weight: 500;
}

.pp-footer-social-icons {
  display: flex;
  gap: 10px;
}

/* kör alakú social ikon gombok */
.pp-footer-social {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

/* többi oszlop */

.pp-footer-heading {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 600;
}

.pp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pp-footer-links li + li {
  margin-top: 6px;
}

.pp-footer-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #111827;
}

.pp-footer-links a:hover {
  text-decoration: underline;
}

/* alsó sor – copyright */

.pp-footer-bottom {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: #000000;
}

/* Mobil / tablet */

@media (max-width: 960px) {
  .pp-footer-inner {
    max-width: 100%;
    padding: 24px 20px 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }
.pp-footer {
    padding: 0px 10px 0px;
}
  .pp-footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(209, 213, 219, 0.7);
    padding-bottom: 16px;
    margin-bottom: 8px;
  }
}

@media (max-width: 640px) {
  .pp-footer-inner {
    grid-template-columns: 1fr;
  }

  .pp-footer-brand {
    text-align: left;
  }
}


.pp-footer-social-icons{
  display:flex;
  gap:10px;
  align-items:center;
}

.pp-footer-social{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border: 1px solid rgba(17,24,39,.10);
  color:#ffffff;
  box-shadow: 0 10px 28px rgba(17,24,39,.08);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration:none;
}

.pp-footer-social .pp-ico{
  width:25px;
  height:25px;
  display:block;
}

.pp-footer-social:hover{
  transform: translateY(-2px);
  background: #e1dbdb;
  box-shadow: 0 16px 38px rgba(17,24,39,.14);
  color: #6d28d9; /* PurplePoppy vibe */
}

.pp-footer-social:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(109,40,217,.18), 0 16px 38px rgba(17,24,39,.14);
}
.pp-footer-bottom p{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.pp-footer-sep{
  opacity:.5;
}

.pp-footer-powered{
  color:#111827;
  font-weight:700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  opacity: 1;
}

.pp-footer-powered:hover{
  opacity: 1;
  text-decoration-thickness: 3px;
}
