/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: radial-gradient(circle at top, #2a0f45 0%, #12071f 45%, #06040a 100%);
  color: #e6e6f0;
  overflow-x: hidden;
}

/* =========================
   TOP NAVIGATION (APP STYLE)
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 6, 30, 0.65);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 76px;
}

nav a {
  margin-left: 26px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #4cc9f0;
  transition: all 0.25s ease;
}

nav a:hover {
  color: #ff4fd8;
  text-shadow: 0 0 12px rgba(255,79,216,0.7);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  text-align: center;
  padding: 120px 20px 90px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero .quote {
  font-size: 18px;
  color: #ff4fd8;
  opacity: 0.9;
  font-style: italic;
}

/* =========================
   SECTION WRAPPER
========================= */
.section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

/* =========================
   GLASS PANEL (CORE UI)
========================= */
.glass {
  background: linear-gradient(
    180deg,
    rgba(80, 35, 120, 0.55),
    rgba(20, 8, 35, 0.55)
  );
  backdrop-filter: blur(26px);
  border-radius: 24px;
  padding: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 50px rgba(196,60,255,0.35),
    inset 0 0 25px rgba(255,255,255,0.06);
}

/* =========================
   HEADINGS
========================= */
.section h2 {
  color: #4cc9f0;
  font-size: 28px;
  margin-bottom: 18px;
}

.section h3 {
  color: #ff4fd8;
  margin-bottom: 10px;
}

/* =========================
   TEXT
========================= */
.section p {
  line-height: 1.8;
  font-size: 16px;
  opacity: 0.95;
}

.magazine-text {
  line-height: 1.85;
  margin-bottom: 16px;
}

/* =========================
   ARTIST GRID (APP STYLE)
========================= */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 26px;
  justify-content: center;
}

/* =========================
   ARTIST IMAGE CARDS (MERGED + FIXED)
========================= */
.artist-photo {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #2c1248, #12071f);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 30px rgba(255,79,216,0.35),
    inset 0 0 12px rgba(255,255,255,0.05);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover glow */
.artist-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  transition: box-shadow 0.3s ease;
}

.artist-photo:hover {
  transform: scale(1.03);
}

.artist-photo:hover::after {
  box-shadow:
    0 0 28px rgba(255,79,216,0.9),
    0 0 55px rgba(76,201,240,0.6);
}

/* =========================
   REGION STRIP (APP MATCH)
========================= */
.region-strip {
  margin-top: 20px;
  padding: 30px 0 20px;
}

.region-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 22px;
  justify-content: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.region-card {
  width: 220px;
  height: 300px;
  border-radius: 24px;
  background: linear-gradient(145deg, #2c1248, #12071f);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 18px rgba(255,79,216,0.25),
    inset 0 0 14px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.region-card img {
  width: 120px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.8));
}

.region-card span {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #e6e6f0;
}

.region-card.active {
  border-color: #ff4fd8;
  box-shadow:
    0 0 35px rgba(255,79,216,0.9),
    inset 0 0 20px rgba(255,79,216,0.2);
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 45px rgba(255,79,216,0.8),
    inset 0 0 20px rgba(255,255,255,0.08);
}

/* =========================
   MISSION STATEMENT
========================= */
.mission-card {
  text-align: center;
  box-shadow:
    0 0 70px rgba(255,79,216,0.25),
    inset 0 0 35px rgba(255,255,255,0.05);
}

.mission-card h2 {
  font-size: 32px;
  margin-bottom: 26px;
  background: linear-gradient(135deg, #4cc9f0, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.mission-text {
  font-size: 17px;
  line-height: 1.95;
  margin-bottom: 18px;
  opacity: 0.96;
}

/* =========================
   REGION REPRESENTED (ARTIST)
========================= */
.region-rep {
  margin-top: 40px;
  text-align: center;
}

.region-rep h3 {
  color: #4cc9f0;
  margin-bottom: 18px;
}

.region-rep-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 30px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(44,18,72,0.85),
    rgba(18,7,31,0.85)
  );
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 35px rgba(255,79,216,0.6),
    inset 0 0 18px rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-rep-card img {
  max-width: 220px;
  margin-bottom: 16px;
}

.region-rep-card span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ff4fd8, #4cc9f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.region-rep-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 55px rgba(255,79,216,0.9),
    0 0 80px rgba(76,201,240,0.6);
}

/* =========================
   IMAGE LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 20, 0.85);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 24px;
  box-shadow:
    0 0 40px rgba(255,79,216,0.9),
    0 0 80px rgba(76,201,240,0.6);
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 34px 20px;
  font-size: 14px;
  opacity: 0.65;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 38px;
  }

  .glass {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    gap: 14px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 6px 12px;
    font-size: 14px;
  }

  .logo {
    height: 60px;
  }

  .hero {
    padding: 80px 16px 60px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero .quote {
    font-size: 15px;
  }

  .section {
    margin: 60px auto;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-photo {
    max-width: 100%;
    height: 320px;
    margin: auto;
  }

  .region-container {
    flex-direction: column;
    align-items: center;
  }

  .region-card {
    width: 90%;
    max-width: 300px;
  }

  button,
  .btn {
    width: 100%;
    max-width: 280px;
    margin: auto;
  }

  .lightbox img {
    max-width: 92%;
    max-height: 80%;
  }
}