/* =========================
css/mh-footer.css
========================= */

/* Sticky footer fix (legal oldalaknál üres sáv ellen) */
html, body { height: 100%; }

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Loaderes oldalaknál a content nőjön */
#content{ flex: 1 0 auto; }

/* Ha nincs #content */
main, .main, .page, .container-fluid{ flex: 0 0 auto; }

footer.footery{ flex-shrink: 0; }

/* Support szakasz */
.supporty{
  padding: 18px 0;
  text-align: center;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.supporty .container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.supporty h3{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.footery{
  background: linear-gradient(180deg, #1e1e1e 0%, #2e2e2e 100%);
  padding: 60px 0;
  color: #d1d1d1;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.footery h3{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f05454;
}

.footery nav{
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.footery ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footery ul li{
  margin-bottom: 15px;
}

.footery ul li a{
  color: #bfbfbf;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footery ul li a:hover{
  color: #f05454;
  text-decoration: underline;
  transform: translateX(4px);
}

.footery .container{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo + payment */
.logo-container{
  text-align: center;
  margin: 20px 0;
}

.footer-logo{
  width: 160px;
  height: auto;
  display: inline-block;
}

.payment-methods{
  text-align: center;
  margin: 20px 0;
}

.payment-icons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.payment-icons img{
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
  opacity: 0.85;
}

.payment-icons img:hover{
  transform: scale(1.1);
  opacity: 1;
}

/* Footer bottom */
.footery .footer-bottom{
  text-align: center;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #999;
}

.footery .footer-bottom a{
  color: #f05454;
  text-decoration: none;
  padding: 0 5px;
}

.footery .footer-bottom a:hover{
  text-decoration: underline;
}

/* Scroll to top button */
#myBtn{
  background-color: #f05454;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.5s ease, transform 0.2s ease;
  width: 55px;
  height: 55px;

  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  padding: 0;
  cursor: pointer;
}

#myBtn img{
  width: 26px;
  height: 26px;
}

#myBtn:hover{
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px){
  .footery .container{
    flex-direction: column;
    align-items: center;
  }

  .footery nav{
    text-align: center;
    margin-bottom: 20px;
    max-width: none;
    width: 100%;
  }
}
