@charset "utf-8";
/* CSS Document */
/* TERMS PAGE */

.terms-page {
    background: #000;
    color: #fff;
}

.terms-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.terms-block {
    margin-bottom: 50px;
}

.terms-block h2 {
    color: #d4af37; /* gold */
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.terms-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
}
/* ========================= */
/*        GLOBAL FOOTER      */
/* ========================= */

.gold-footer {
  background: #0a0a0a;
  border-top: 2px solid #d4af37;
  padding: 50px 40px;
  color: #d4af37;
  margin-top: 75px; /* adjust between 50–100px */
}

/* 4‑Column Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

/* Column Titles */
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer Links */
.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  text-decoration: none;
  color: #d4af37;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}

/* Bottom Copyright */
.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
  margin-top: 20px;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
/* Footer spacing — REMOVED to use global footer */
/*
.site-footer {
    margin-top: 60px;
    text-align: center;
    padding: 20px 0;
    color: #888;
}
*/
