/* ============================= */
/*        GHOSTNAIJA FOOTER      */
/* ============================= */

.GNfoot-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px 40px 0;
  background: #520000;
  color: #fff;
}

.GNfoot-footer h3 {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.GNfoot-footer ul {
  list-style: none;
  padding: 0;
}

.GNfoot-footer ul li {
  margin: 8px 0;
}

.GNfoot-footer ul li::before {
  content: "— ";
  margin-right: 0.5em; /* optional spacing */
}

.GNfoot-footer a {
  color: #fff;
  text-decoration: none;
}

.GNfoot-footer a:hover {
  text-decoration: underline;
}

.GNfoot-register-btn {
  background: #5f0000;
  color: #000000;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  margin: 10px 0;
  text-decoration: none;
}

.GNfoot-social-icons {
  margin-bottom: 30px;
}

.GNfoot-social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.GNfoot-social-icons img {
  width: 24px;
  height: 24px;
}

.GNfoot-contact p {
  margin: 6px 0;
}

.GNfoot-footer-bottom {
  text-align: center;
  padding: 20px;
  background: #520000;
  font-size: 14px;
  color: #fff;
}

/* ============================= */
/*         MOBILE VIEW           */
/* ============================= */
@media (max-width: 768px) {
  .GNfoot-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 18px;
  }

  .GNfoot-footer h3 {
    font-size: 0.95rem;
  }

  .GNfoot-footer ul li a,
  .GNfoot-footer p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .GNfoot-footer-bottom {
    font-size: 0.8rem;
    padding: 12px;
  }
}

/* ============================= */
/*      SMALL PHONES (<480px)    */
/* ============================= */
@media (max-width: 350px) {
  .GNfoot-footer {
    grid-template-columns: 1fr; /* switch to single column */
    padding: 16px;
    gap: 15px;
  }

  .GNfoot-footer h3 {
    font-size: 0.9rem;
  }

  .GNfoot-footer ul li a,
  .GNfoot-footer p {
    font-size: 0.85rem;
  }

  .GNfoot-footer-bottom {
    font-size: 0.75rem;
  }
}
