/* ==========================================
   BLACKPINK FAN SITE — MAIN STYLESHEET
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;600;800&display=swap');

:root {
  --pink: #ff2d78;
  --pink-light: #ff7ab0;
  --pink-pale: #ffe0ed;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --cream: #fdf6f0;
  --gold: #d4a847;
  --gray: #888;
  --border: rgba(255,45,120,0.3);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  background: rgba(255,45,120,0.1);
}

.nav-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover { background: #d4005e; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,45,120,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

.btn-pink {
  background: var(--pink);
  color: white;
}
.btn-pink:hover { background: #c4005a; transform: translateY(-2px); }

.center-btn {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 6rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,45,120,0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 10% 80%, rgba(255,45,120,0.08) 0%, transparent 50%);
}

.hero-diamonds {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.diamond {
  position: absolute;
  color: var(--pink);
  font-size: 1rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.d1 { top: 15%; left: 5%; font-size: 2rem; animation-delay: 0s; }
.d2 { top: 60%; left: 8%; font-size: 0.8rem; animation-delay: 1s; }
.d3 { top: 30%; right: 10%; font-size: 1.5rem; animation-delay: 2s; }
.d4 { bottom: 20%; right: 5%; font-size: 0.6rem; animation-delay: 3s; }
.d5 { bottom: 40%; left: 45%; font-size: 1.2rem; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 0.5rem;
}

.hero-title span { color: var(--pink); }

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-grid {
  position: relative;
  z-index: 1;
  flex: 0 0 420px;
  animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hi1 {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 30px 80px rgba(255,45,120,0.2);
}

.hi1 img { width: 100%; height: 500px; object-fit: cover; }

/* ==================== STATS STRIP ==================== */
.stats-strip {
  background: var(--pink);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.stat-divider {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 6rem 4rem;
}

.dark-section {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { color: var(--pink-light); }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -1px;
}

/* ==================== MEMBERS GRID ==================== */
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.member-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: block;
}

.member-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(255,45,120,0.25); }

.member-img { aspect-ratio: 3/4; overflow: hidden; }
.member-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.member-card:hover .member-img img { transform: scale(1.07); }

.member-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.2rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
}

.member-role {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 0.3rem;
}

.member-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}

.member-info p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.member-hover-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--pink);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(-5px);
  transition: var(--transition);
}

.member-card:hover .member-hover-tag { opacity: 1; transform: translateY(0); }

.mc-jisoo .member-info { background: linear-gradient(transparent, rgba(80,0,40,0.9)); }
.mc-jennie .member-info { background: linear-gradient(transparent, rgba(0,0,80,0.9)); }
.mc-rose .member-info { background: linear-gradient(transparent, rgba(80,20,0,0.9)); }
.mc-lisa .member-info { background: linear-gradient(transparent, rgba(0,60,40,0.9)); }

/* ==================== HITS GRID ==================== */
.hits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.hit-card:hover {
  background: rgba(255,45,120,0.1);
  border-color: var(--pink);
  transform: translateY(-4px);
}

.hit-card.featured {
  border-color: var(--pink);
  background: rgba(255,45,120,0.08);
}

.hit-year {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.hit-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.hit-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-weight: 300;
}

.hit-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--pink);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  padding: 9rem 4rem 4rem;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,45,120,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==================== MEMBER PROFILE ==================== */
.member-profile {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.profile-photo {
  position: sticky;
  top: 5rem;
}

.profile-photo img {
  width: 100%;
  border-radius: 4px;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(255,45,120,0.15);
}

.profile-badge {
  display: inline-block;
  margin-top: 1rem;
  background: var(--pink);
  color: white;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
}

.profile-content h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.profile-content .subtitle {
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.info-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.info-table td {
  padding: 0.9rem 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.info-table td:first-child {
  width: 40%;
  font-weight: 700;
  color: var(--gray);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.profile-bio {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 2rem;
}

.profile-bio p { margin-bottom: 1rem; }

.highlight-box {
  background: var(--pink-pale);
  border-left: 4px solid var(--pink);
  padding: 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 2rem;
}

.highlight-box h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.highlight-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.highlight-box li {
  font-size: 0.85rem;
  color: #444;
  padding-left: 1.2rem;
  position: relative;
}
.highlight-box li::before { content: '♦'; position: absolute; left: 0; color: var(--pink); font-size: 0.5rem; top: 50%; transform: translateY(-50%); }

/* ==================== DISCOGRAPHY ==================== */
.albums-section { padding: 5rem 4rem; }

.albums-section h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}

.album-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}

.album-cover {
  width: 220px;
  height: 220px;
  background: var(--dark2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  text-align: center;
  padding: 1rem;
  line-height: 1.2;
  border: 2px solid var(--border);
}

.album-cover.pink { background: linear-gradient(135deg, #ff2d78, #c4005a); }
.album-cover.black { background: linear-gradient(135deg, #1a1a1a, #000); }
.album-cover.gold { background: linear-gradient(135deg, #b8860b, #d4a847); }
.album-cover.purple { background: linear-gradient(135deg, #6b21a8, #4c1d95); }

.album-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.album-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.album-meta span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
}

.album-meta span.dot { color: var(--gray); }

.album-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.tracklist {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.82rem;
  transition: var(--transition);
}

.track:hover { color: var(--pink); padding-left: 4px; }

.track-num {
  width: 24px;
  text-align: right;
  font-weight: 700;
  color: var(--gray);
  font-size: 0.72rem;
}

.track-name { flex: 1; font-weight: 600; }
.track-title-badge { font-size: 0.6rem; background: var(--pink); color: white; padding: 0.15rem 0.4rem; border-radius: 2px; font-weight: 800; letter-spacing: 1px; }

/* ==================== HISTORY TIMELINE ==================== */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink), rgba(255,45,120,0.1));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }

.timeline-dot {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
}

.timeline-dot span {
  width: 16px;
  height: 16px;
  background: var(--pink);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--pink);
  display: block;
}

.timeline-content {
  padding: 0 1.5rem;
}

.timeline-year {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.7;
}

/* ==================== AWARDS ==================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.award-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  padding: 1.75rem;
  transition: var(--transition);
}

.award-card:hover { border-color: var(--pink); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,45,120,0.1); }

.award-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.award-year {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.award-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
}

.award-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item:nth-child(4n+1) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 200px;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,45,120,0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(255,45,120,0.4);
}

/* ==================== FACTS PAGE ==================== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.fact-card {
  background: white;
  border-radius: 4px;
  padding: 2rem;
  border-left: 4px solid var(--pink);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.fact-card:hover { transform: translateX(4px); box-shadow: 0 5px 30px rgba(255,45,120,0.1); }

.fact-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pink-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
  -webkit-text-stroke: 1px var(--pink);
}

.fact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fact-card p { font-size: 0.85rem; color: #555; line-height: 1.7; }

/* ==================== MEMBERS OVERVIEW PAGE ==================== */
.overview-intro {
  padding: 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.overview-intro p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.9;
}

.members-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem 5rem;
}

.member-overview-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.member-overview-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(255,45,120,0.12); border-color: var(--pink); }

.moc-photo {
  width: 100px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
}
.moc-photo img { width: 100%; height: 100%; object-fit: cover; }

.moc-info { flex: 1; }
.moc-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.moc-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.8rem;
}

.moc-info p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
}

.moc-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  transition: var(--transition);
}

.moc-link:hover { letter-spacing: 3px; }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.8rem;
  line-height: 2;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-nav { margin: 0.75rem 0; }
.footer-nav a { color: rgba(255,255,255,0.5); transition: color 0.2s; margin: 0 0.3rem; }
.footer-nav a:hover { color: var(--pink); }

.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.72rem; }

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
  padding: 1rem 4rem;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 1px;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.breadcrumb a { color: var(--pink); }
.breadcrumb a:hover { text-decoration: underline; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .hits-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-row: span 1; }
  .hero { flex-direction: column; padding-top: 7rem; }
  .hero-image-grid { flex: none; width: 100%; max-width: 500px; }
  .member-profile { grid-template-columns: 1fr; }
  .profile-photo { position: static; max-width: 350px; }
}

@media (max-width: 768px) {
  .section, .albums-section { padding: 3rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .members-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hits-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: 1fr; }
  .members-overview-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .album-card { grid-template-columns: 1fr; }
  .album-cover { width: 100%; height: 200px; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty { display: none; }
  .timeline-dot { grid-column: 1; }
  .navbar { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .breadcrumb { padding: 0.75rem 1.5rem; }
  .overview-intro { padding: 3rem 1.5rem; }
  .stats-strip { gap: 0.75rem; }
  .stat-divider { display: none; }
}