@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #040108; /* Luxury obsidian deep black */
  --bg-surface: #0a0412; /* Deep violet-black surface */
  --bg-card: #12071f; /* Elegant purple-black card */
  --bg-card-hover: #1c0b30; /* High-contrast card hover state */
  
  --primary: #9c27b0; /* Royal purple */
  --primary-dark: #6a1b9a; /* Deep royal violet */
  --accent: #d32f2f; /* Deep crimson red */
  --accent-purple-glow: #e040fb; /* Radiant neon purple */
  
  --gradient: linear-gradient(135deg, #7b1fa2, #d32f2f); /* Royal purple to crimson red */
  --gradient-accent: linear-gradient(135deg, #e040fb, #ff1744); /* Electric purple to vibrant red */
  
  --text: #ece5f0; /* Lavender-hued soft white */
  --text-dim: #9e8fa8; /* Classy muted lavender-grey */
  --text-bright: #ffffff;
  
  --glow-purple: 0 0 20px rgba(224, 64, 251, 0.45);
  --glow-red: 0 0 20px rgba(211, 47, 47, 0.4);
  --glow-intense: 0 0 35px rgba(224, 64, 251, 0.55), 0 0 70px rgba(211, 47, 47, 0.3);
  --border-subtle: rgba(224, 64, 251, 0.18);
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 80px; 
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

a { 
  color: var(--accent-purple-glow); 
  text-decoration: none; 
  transition: var(--transition); 
}

a:hover { 
  color: var(--text-bright); 
  text-shadow: var(--glow-purple); 
}

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

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

/* ═══ HEADER NAVIGATION ═══ */
.header {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000;
  background: rgba(4, 1, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header.scrolled { 
  background: rgba(4, 1, 8, 0.96); 
  box-shadow: 0 4px 30px rgba(224, 64, 251, 0.15); 
}

.header-inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 16px 24px; 
  max-width: 1400px; 
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading); 
  font-size: 1.45rem; 
  font-weight: 700;
  background: var(--gradient-accent); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text; 
  letter-spacing: 2px;
}

.logo span { 
  font-size: 0.72rem; 
  display: block; 
  letter-spacing: 4px; 
  text-transform: uppercase; 
  color: var(--text-dim);
}

.nav-links { 
  display: flex; 
  gap: 28px; 
  list-style: none; 
  align-items: center; 
}

.nav-links a {
  font-family: var(--font-heading); 
  font-size: 0.82rem; 
  color: var(--text-dim);
  letter-spacing: 2px; 
  text-transform: uppercase; 
  position: relative; 
  padding: 4px 0;
}

.nav-links a::after {
  content: ''; 
  position: absolute; 
  bottom: -2px; 
  left: 0; 
  width: 0; 
  height: 2px;
  background: var(--gradient-accent); 
  transition: var(--transition);
}

.nav-links a:hover { 
  color: var(--text-bright); 
  -webkit-text-fill-color: unset; 
}

.nav-links a:hover::after { 
  width: 100%; 
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 8px; 
  z-index: 1001; 
}

.hamburger span {
  width: 28px; 
  height: 2px; 
  background: var(--accent-purple-glow); 
  transition: var(--transition); 
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══ HERO SECTION ═══ */
.hero {
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative; 
  overflow: hidden; 
  padding-top: 100px;
}

.hero::before {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(224, 64, 251, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(211, 47, 47, 0.12) 0%, transparent 50%);
}

.hero-content {
  position: relative; 
  z-index: 2; 
  text-align: center; 
  max-width: 900px; 
  padding: 40px 24px;
}

.hero-image-wrapper {
  width: 230px; 
  height: 230px; 
  margin: 0 auto 40px;
  border-radius: 50%; 
  padding: 4px;
  background: var(--gradient-accent);
  box-shadow: var(--glow-intense);
  animation: floatEffect 4.5s ease-in-out infinite;
}

.hero-image {
  width: 100%; 
  height: 100%; 
  border-radius: 50%; 
  object-fit: cover;
  border: 4px solid var(--bg-dark);
}

.hero-subtitle {
  font-family: var(--font-heading); 
  font-size: 0.95rem; 
  letter-spacing: 7px;
  text-transform: uppercase; 
  color: var(--accent-purple-glow); 
  margin-bottom: 16px;
  text-shadow: var(--glow-purple);
}

.hero-title {
  font-family: var(--font-heading); 
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; 
  line-height: 1.15; 
  margin-bottom: 24px;
  background: var(--gradient-accent); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text; 
  text-shadow: none;
}

.hero-tagline {
  font-size: 1.2rem; 
  color: var(--text-dim); 
  margin-bottom: 40px;
  font-weight: 300; 
  letter-spacing: 1px;
}

.hero-buttons { 
  display: flex; 
  gap: 20px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  padding: 15px 36px; 
  border-radius: 50px; 
  font-family: var(--font-heading);
  font-size: 0.85rem; 
  font-weight: 600; 
  letter-spacing: 2px; 
  text-transform: uppercase;
  border: none; 
  cursor: pointer; 
  transition: var(--transition); 
  position: relative; 
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient); 
  color: white;
  box-shadow: 0 4px 20px rgba(123, 31, 162, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px); 
  box-shadow: var(--glow-intense); 
  color: white;
}

.btn-outline {
  background: transparent; 
  color: var(--accent-purple-glow);
  border: 1.5px solid var(--accent-purple-glow); 
}

.btn-outline:hover {
  background: rgba(224, 64, 251, 0.08); 
  transform: translateY(-3px);
  box-shadow: var(--glow-purple); 
  color: var(--accent-purple-glow);
}

/* ═══ SECTIONS COMMON ═══ */
section { 
  padding: 100px 0; 
  position: relative; 
}

section::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 50%; 
  transform: translateX(-50%);
  width: 120px; 
  height: 1px; 
  background: var(--gradient-accent); 
  opacity: 0.4;
}

.section-label {
  font-family: var(--font-heading); 
  font-size: 0.82rem; 
  letter-spacing: 6px;
  text-transform: uppercase; 
  color: var(--accent-purple-glow); 
  text-align: center; 
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading); 
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700; 
  text-align: center; 
  margin-bottom: 20px;
  background: var(--gradient-accent); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  text-align: center; 
  color: var(--text-dim); 
  max-width: 600px; 
  margin: 0 auto 60px;
  font-size: 1.05rem; 
  line-height: 1.85;
}

/* ═══ ABOUT SECTION ═══ */
.about-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center;
}

.about-image-wrap {
  position: relative; 
  border-radius: var(--radius); 
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(224, 64, 251, 0.12); 
  border: 1px solid var(--border-subtle);
}

.about-image-wrap img { 
  width: 100%; 
  height: 520px; 
  object-fit: cover; 
}

.about-image-wrap::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark), transparent 45%);
}

.about-text h3 {
  font-family: var(--font-heading); 
  font-size: 1.65rem; 
  margin-bottom: 20px; 
  color: var(--text-bright);
}

.about-text p { 
  color: var(--text-dim); 
  margin-bottom: 20px; 
  font-size: 1.02rem; 
}

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

.role-card {
  background: var(--bg-card); 
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius); 
  padding: 36px 24px; 
  text-align: center;
  transition: var(--transition); 
  position: relative; 
  overflow: hidden;
}

.role-card::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 3px;
  background: var(--gradient-accent); 
  opacity: 0; 
  transition: var(--transition);
}

.role-card:hover {
  transform: translateY(-8px); 
  border-color: var(--accent-purple-glow);
  box-shadow: var(--glow-purple); 
  background: var(--bg-card-hover);
}

.role-card:hover::before { 
  opacity: 1; 
}

.role-card i { 
  font-size: 2.2rem; 
  margin-bottom: 18px; 
  background: var(--gradient-accent); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
}

.role-card h4 { 
  font-family: var(--font-heading); 
  font-size: 1.05rem; 
  margin-bottom: 10px; 
  color: var(--text-bright); 
  letter-spacing: 1px; 
}

.role-card p { 
  font-size: 0.92rem; 
  color: var(--text-dim); 
  line-height: 1.65; 
}

/* ═══ SOCIAL/FOLLOW SECTION ═══ */
.social-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; 
  max-width: 1000px; 
  margin: 0 auto;
}

.social-card {
  background: var(--bg-card); 
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius); 
  padding: 30px 20px; 
  text-align: center;
  transition: var(--transition); 
  cursor: pointer; 
  text-decoration: none; 
  display: block;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02); 
  border-color: var(--accent-purple-glow);
  box-shadow: var(--glow-purple); 
  background: var(--bg-card-hover);
}

.social-card i { 
  font-size: 2rem; 
  margin-bottom: 14px; 
  color: var(--accent-purple-glow); 
}

.social-card h4 { 
  font-family: var(--font-heading); 
  font-size: 0.88rem; 
  color: var(--text-bright); 
  letter-spacing: 1px; 
  margin-bottom: 6px; 
}

.social-card p { 
  font-size: 0.8rem; 
  color: var(--text-dim); 
}

/* ═══ GALLERY SECTION ═══ */
.gallery-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative; 
  border-radius: var(--radius-sm); 
  overflow: hidden;
  border: 1px solid var(--border-subtle); 
  aspect-ratio: 1;
  transition: var(--transition); 
  cursor: pointer;
}

.gallery-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: var(--transition); 
}

.gallery-item::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(to top, rgba(4,1,8,0.75), transparent 50%);
  opacity: 0; 
  transition: var(--transition);
}

.gallery-item:hover { 
  transform: scale(1.03); 
  box-shadow: 0 8px 25px rgba(224,64,251,0.25); 
  border-color: var(--accent-purple-glow); 
}

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

.gallery-item:hover::after { 
  opacity: 1; 
}

/* Lightbox popup structure */
.lightbox {
  position: fixed; 
  inset: 0; 
  background: rgba(4,1,8,0.96); 
  z-index: 9999;
  display: none; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer;
}

.lightbox.active { 
  display: flex; 
}

.lightbox img { 
  max-width: 90vw; 
  max-height: 90vh; 
  border-radius: var(--radius); 
  box-shadow: var(--glow-intense); 
}

.lightbox-close {
  position: absolute; 
  top: 30px; 
  right: 30px; 
  font-size: 2.2rem; 
  color: white;
  cursor: pointer; 
  z-index: 10000; 
  background: none; 
  border: none;
}

/* ═══ TRIBUTE SECTION ═══ */
.tribute-cards {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; 
  max-width: 1000px; 
  margin: 0 auto;
}

.tribute-card {
  background: var(--bg-card); 
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius); 
  padding: 42px 28px; 
  text-align: center;
  transition: var(--transition); 
  position: relative; 
  overflow: hidden;
}

.tribute-card::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 3px;
  background: var(--gradient); 
  opacity: 0; 
  transition: var(--transition);
}

.tribute-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 10px 30px rgba(123,31,162,0.3); 
  border-color: var(--primary); 
}

.tribute-card:hover::before { 
  opacity: 1; 
}

.tribute-card i { 
  font-size: 2.4rem; 
  margin-bottom: 18px; 
  color: var(--accent-purple-glow); 
}

.tribute-card h4 { 
  font-family: var(--font-heading); 
  font-size: 1.15rem; 
  color: var(--text-bright); 
  margin-bottom: 10px; 
}

.tribute-card p { 
  color: var(--text-dim); 
  font-size: 0.9rem; 
  margin-bottom: 22px; 
}

.tribute-card .btn { 
  font-size: 0.76rem; 
  padding: 11px 28px; 
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-surface); 
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px; 
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading); 
  font-size: 1.35rem; 
  font-weight: 700;
  background: var(--gradient-accent); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text; 
  margin-bottom: 20px;
}

.footer-socials { 
  display: flex; 
  gap: 20px; 
  justify-content: center; 
  margin-bottom: 24px; 
}

.footer-socials a {
  width: 44px; 
  height: 44px; 
  border-radius: 50%; 
  border: 1px solid var(--border-subtle);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--text-dim);
  transition: var(--transition); 
  font-size: 1.1rem;
}

.footer-socials a:hover { 
  border-color: var(--accent-purple-glow); 
  color: var(--accent-purple-glow); 
  box-shadow: var(--glow-purple); 
  transform: translateY(-3px); 
}

.footer-text { 
  color: var(--text-dim); 
  font-size: 0.85rem; 
}

.footer-text a { 
  color: var(--accent-purple-glow); 
}

/* ═══ MOBILE NAVIGATION ═══ */
.mobile-nav {
  position: fixed; 
  top: 0; 
  right: -100%; 
  width: 300px; 
  height: 100vh;
  background: var(--bg-surface); 
  z-index: 999; 
  padding: 100px 40px 40px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border-subtle);
}

.mobile-nav.active { 
  right: 0; 
}

.mobile-nav a {
  display: block; 
  font-family: var(--font-heading); 
  font-size: 1rem;
  color: var(--text-dim); 
  padding: 16px 0; 
  letter-spacing: 3px; 
  text-transform: uppercase;
  border-bottom: 1px solid rgba(224, 64, 251, 0.1);
}

.mobile-nav a:hover { 
  color: var(--accent-purple-glow); 
  padding-left: 10px; 
}

.mobile-overlay {
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.65); 
  z-index: 998;
  opacity: 0; 
  pointer-events: none; 
  transition: var(--transition);
}

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

/* ═══ ANIMATIONS & PARTICLES ═══ */
.reveal { 
  opacity: 0; 
  transform: translateY(40px); 
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
}

.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

.particles {
  position: absolute; 
  inset: 0; 
  overflow: hidden; 
  pointer-events: none; 
  z-index: 0;
}

.particle {
  position: absolute; 
  border-radius: 50%; 
  opacity: 0.35; 
  animation: drift linear infinite;
}

.particle[data-color="purple"] {
  background: var(--accent-purple-glow);
  box-shadow: 0 0 8px var(--accent-purple-glow);
}

.particle[data-color="red"] {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

@keyframes drift {
  0% { transform: translateY(105vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.45; }
  90% { opacity: 0.45; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

@keyframes floatEffect {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ═══ RESPONSIVENESS ═══ */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 380px; }
  .role-cards { grid-template-columns: 1fr; }
  .hero-image-wrapper { width: 190px; height: 190px; }
}

@media (max-width: 640px) {
  section { padding: 75px 0; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .tribute-cards { grid-template-columns: 1fr; }
}
