* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fdeef0;
  font-family: 'Inter', sans-serif;
  color: #221f1c;
  overflow-x: hidden;
}

a { color: #d21034; text-decoration: none; }
a:hover { color: #a80c28; }
::selection { background: #d2103440; }

h1, h2, .logo {
  font-family: 'Archivo Black', sans-serif;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
}

.btn-pill {
  background: #d21034;
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
}

.btn-primary {
  background: #d21034;
  color: white;
  padding: 16px 34px;
  border-radius: 6px;
  text-transform: uppercase;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid white;
  padding: 13px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 8px;
}

.accent { color: #f4a6b0; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fdeef0;
  border-bottom: 1px solid #f0c9cd;
}

.logo {
  font-size: 22px;
  letter-spacing: 0.5px;
  color: #d21034;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links > a:not(.btn) { color: #2c2c2c; }

/* HERO */
.hero {
  position: relative;
  padding: 80px 56px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.25) 100%),
    url('assets/hero-photo.png') center 40% / cover no-repeat;
}

.hero-content { max-width: 640px; }

.hero h1 {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  color: white;
  text-transform: uppercase;
}

.hero p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 0 28px;
}

.scroll-indicator {
  background: #d21034;
  padding: 14px;
  text-align: center;
}
.scroll-indicator span { color: white; font-size: 20px; }

/* ABOUT */
.about {
  padding: 100px 56px;
  max-width: 1080px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #d21034;
  margin-bottom: 14px;
}

.about h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.about p {
  font-size: 16px;
  line-height: 1.7;
  color: #454038;
  margin: 0 0 16px;
}

.about-photo {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: url('assets/fans-photo.png') center / cover no-repeat;
}

/* EVENT */
.event {
  padding: 100px 56px;
  background: #0d1b2e;
}

.event-inner {
  max-width: 1080px;
  margin: 0 auto;
  color: white;
}

.badge {
  display: inline-block;
  background: #c9a15a;
  color: #0d1b2e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.event h2 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 48px;
  text-transform: uppercase;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.detail-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.detail-row .icon { color: #c9a15a; font-weight: 700; }
.detail-row span:not(.icon) { font-size: 16px; }

.event-details p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

.event-photo {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: url('assets/prince-consort-photo.png') center / cover no-repeat;
}

/* MEMBERSHIP */
.membership {
  padding: 100px 56px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.membership h2 {
  font-size: 36px;
  margin: 0 0 20px;
}

.membership-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #454038;
  max-width: 620px;
  margin: 0 auto 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid #f0c9cd;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
}

.card-icon { font-size: 28px; margin-bottom: 12px; }
.card-title { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.card-body { font-size: 14px; color: #575349; line-height: 1.6; }

/* JOIN */
.join {
  padding: 100px 56px;
  background: #d21034;
}

.join-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.join h2 { font-size: 36px; margin: 0 0 16px; }
.join > .join-inner > p {
  font-size: 17px;
  line-height: 1.6;
  color: #fbe9ea;
  margin: 0 0 40px;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(80, 10, 20, 0.3);
}

.join-form input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dcd6ce;
  font-size: 15px;
  font-family: inherit;
  color: #303030;
}

.join-form button {
  padding: 15px;
  border-radius: 10px;
  border: none;
  background: #0d1b2e;
  color: white;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 4px;
}

.join-form button:disabled { opacity: 0.7; cursor: default; }

.success-message {
  color: #2f7a3d;
  font-size: 14px;
  font-weight: 600;
  padding-top: 4px;
}

/* FOOTER */
.footer {
  padding: 56px;
  background: #0d1b2e;
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { font-size: 17px; color: white; }

.footer-links {
  font-size: 14px;
  display: flex;
  gap: 24px;
}
.footer-links a { color: rgba(255,255,255,0.75); }

.copyright { font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 800px) {
  .nav, .hero, .about, .event, .membership, .join, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .about-grid, .event-grid, .cards {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
