/*
  Nothing But Nineties — mobile-first landing styles
  - System font stack for fast rendering
  - Comfortable tap targets
  - Responsive grid for member photos
*/

:root {
  --bg: #0b0f19; /* near-black */
  --surface: #111827; /* slate-900 */
  --text: #e5e7eb; /* gray-200 */
  --muted: #9ca3af; /* gray-400 */
  --primary: #22c55e; /* green-500 */
  --primary-press: #16a34a; /* green-600 */
  --secondary: #60a5fa; /* blue-400 */
  --secondary-press: #3b82f6; /* blue-500 */
  --tertiary: #f59e0b; /* amber-500 */
  --tertiary-press: #d97706; /* amber-600 */
  --radius: 16px;
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  padding: 20px 16px 32px;
  max-width: 960px;
  margin: 0 auto;
}

.hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

.logo {
  width: min(60vw, 220px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  border-radius: 8px;
}

.hero-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin: 0;
  letter-spacing: 0.4px;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.social { margin-top: 4px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(44px, 5.5vw, 56px);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.3vw + 0.95rem, 1.1rem);
  text-decoration: none;
  color: #0b0f19;
  box-shadow: var(--shadow-lg);
  transition: transform 0.08s ease, filter 0.08s ease, background-color 0.08s ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--primary); }
.btn-primary:active { background: var(--primary-press); }

.btn-secondary { background: var(--secondary); }
.btn-secondary:active { background: var(--secondary-press); }

.btn-tertiary { background: var(--tertiary); }
.btn-tertiary:active { background: var(--tertiary-press); }

.btn-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: white;
}
.btn-instagram:active {
  filter: brightness(0.95);
}

.btn-facebook {
  background: #1877f2;
  color: white;
}
.btn-facebook:active {
  background: #145dbf;
}

.band {
  margin-top: 8px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.125rem;
  margin: 8px 0 4px;
  color: var(--text);
}

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

.member-card {
  margin: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.member-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.member-name {
  text-align: center;
  padding: 10px 8px 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 16px;
  padding-top: 8px;
}

@media (min-width: 480px) {
  .members-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .members-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Removed compact breakpoint; maintain comfortable sizing universally */


