/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Rajdhani', sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
}

.site-header .logo a img {
  transform: scale(1.75);
  transform-origin: center;
}

/* ===== TERMS PAGE ===== */
.terms-wrapper {
  max-width: 900px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.terms-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  color: #fff;
}

.terms-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
}

.terms-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #fff;
}

.terms-content p {
  margin: 1rem 0;
}

.terms-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.terms-content li {
  margin-bottom: 0.5rem;
}

/* ===== FOOTER (same as events.css/index.css) ===== */
.site-footer {
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: #111;
  color: #aaa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-left {
  flex: 1;
  color: #777;
}

.footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-center a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease, opacity 0.3s ease;
  font-weight: 600;
}

.footer-center a:hover {
  border-bottom: 1px solid white;
  opacity: 0.7;
}

.footer-right {
  flex: 1;
  text-align: right;
  color: #999;
  font-style: italic;
}

/* ===== HEADER ===== */
.site-header {
  width: 100%;
  background-color: #000;
  color: white;
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  flex: 0 0 auto;
  text-align: center;
}

.logo img {
  height: 42px;
  display: block;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
  flex: 1;
}

.nav-left {
  justify-content: flex-start;
  padding-left: 2rem;
}

.nav-right {
  justify-content: flex-end;
  padding-right: 2rem;
}

.nav-left a,
.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #897106;
}

.dealer-cta {
  background-color: #111;
  padding: 4rem 2rem;
  text-align: center;
}

.dealer-content {
  max-width: 800px;
  margin: 0 auto;
}

.dealer-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

.dealer-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: white;
  color: black;
  padding: 0.85rem 2.25rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #ddd;
}

/* ===== PAGE LAYOUT ===== */
html, body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.terms-wrapper {
  flex: 1; /* this forces it to fill vertical space */
}

/* Terms & Conditions: gold “contact page” link */
.terms-content a[href$="contact.html"] {
  color: #897106;
  font-weight: 600;
  text-decoration: none;
}

.terms-content a[href$="contact.html"]:hover {
  text-decoration: underline;
}
