/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0b1c2d;
  color: #ffffff;
}

/* HEADER */
.site-header {
  background: rgba(11, 28, 45, 0.95);
  border-bottom: 3px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.brand {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.logo-mark {
  background: #d4af37;
  color: #0b1c2d;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 4px;
}

.brand-name {
  font-weight: 700;
}

.brand-sub {
  font-size: 12px;
  color: #87ceeb;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.nav a:hover {
  color: #c62828;
}

/* HERO SECTION */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 28, 45, 0.9), rgba(11, 28, 45, 0.9)),
    url("ncc-parade.jpeg") center / cover no-repeat;
  z-index: -1;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 42px;
  color: #d4af37;
}

.accent {
  color: #c62828;
}

.lead {
  margin: 15px 0 35px;
  color: #87ceeb;
  font-size: 16px;
}

/* AUTH CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 25px;
  border-radius: 8px;
  border-left: 4px solid #d4af37;
  text-align: left;
}

.card h2 {
  margin-bottom: 20px;
  color: #d4af37;
  text-align: center;
}

/* FORMS */
form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

form input:focus {
  outline: 2px solid #d4af37;
}

/* BUTTONS */
.btn {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #c62828;
  color: white;
}

.btn-primary:hover {
  background: #a61f1f;
}

.btn-outline {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.btn-outline:hover {
  background: #d4af37;
  color: #0b1c2d;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 18px;
  border-top: 3px solid #d4af37;
  font-size: 14px;
  background: #0b1c2d;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .header-inner {
    padding: 15px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .lead {
    font-size: 14px;
  }
}