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

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

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

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

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

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

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

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

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

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

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

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

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

.hero .accent {
  color: #c62828;
}

.lead {
  margin: 20px 0;
  color: #87ceeb;
}

/* BUTTONS */
.btn {
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin: 5px;
  display: inline-block;
}

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

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

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

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

/* SECTIONS */
.section {
  padding: 70px 20px;
}

.light {
  background: white;
  color: #0b1c2d;
}

.dark {
  background: #0b1c2d;
}

.container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #d4af37;
}

/* CONTACT */
.contact-form {
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 20px;
  border-top: 3px solid #d4af37;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}