/*----------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------
HH FOOTER
HH FOOTER
HH FOOTER
HH FOOTER
HH FOOTER
HH FOOTER
HH FOOTER
------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------*/

.hh-footer {
  background: #3f3a5c;
  padding: 20px 0 30px;
  color: #fff;
}

.hh-footer-title-text {
  color: #c5b8e0;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 10px 0 24px;
}

.hh-footer-flexbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8vw;
}

.hh-footer-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.hh-footer-subtext {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
}

/* Discord icon button */
.hh-footer-discord {
  display: inline-block;
  line-height: 0;
}
.hh-footer-discord svg {
  width: 56px;
  height: 56px;
  fill: #fff;
  transition: opacity 0.2s ease;
}
.hh-footer-discord:hover svg {
  opacity: 0.75;
}

/* Newsletter form */
.hh-footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 220px;
}

.hh-footer-newsletter input[type="email"] {
  padding: 8px 12px;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 0.95rem;
}

.hh-footer-newsletter button {
  padding: 8px 16px;
  border: none;
  background: rgba(150, 170, 220, 0.4);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.2s ease;
}
.hh-footer-newsletter button:hover {
  background: rgba(150, 170, 220, 0.6);
}

/* Copyright bottom-right */
.hh-footer-right {
  text-align: right;
  padding-right: 20px;
  margin: 24px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile: stack columns */
@media (max-width: 600px) {
  .hh-footer-flexbox {
    flex-direction: column;
    gap: 30px;
  }
}