:root {
  --gold: #c9a84c;
  --dark: #1a1a2e;
}

body { font-family: 'Segoe UI', sans-serif; }

/* NAVBAR */
.navbar-brand { font-size: 1.1rem; letter-spacing: 1px; }

/* HERO - About */
.hero-about {
  min-height: 70vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
}

/* HERO - Event */
.event-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, #0f3460 0%, #533483 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}
.event-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.event-hero .container { position: relative; z-index: 1; }

/* SECTION TITLE */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* MEMBERS */
.member-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.member-photo-placeholder {
  width: 120px;
  height: 120px;
  background: #ddd;
  border: 3px solid var(--gold);
}

/* CARDS */
.card-header { font-size: 0.95rem; letter-spacing: 0.5px; }

/* FORM */
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201,168,76,0.25);
}
.btn-warning { background-color: var(--gold); border-color: var(--gold); color: #fff; font-weight: 600; }
.btn-warning:hover { background-color: #b8943e; border-color: #b8943e; color: #fff; }

/* FOOTER */
footer a { text-decoration: none; }
footer a:hover { text-decoration: underline; }
