/*
Theme Name: Dr. Mala Kapoor
Theme URI: https://malakapoor.com
Author: Manu
Author URI: https://malakapoor.com
Description: A modern, elegant WordPress theme dedicated to Dr. Mala Kapoor — Founder & Director Principal of Silver Line School Ghaziabad, celebrated educator, environmentalist, globetrotter, and musician.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mala-kapoor
Tags: one-column, custom-colors, featured-images, full-width-template, theme-options
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Primary palette */
  --color-bg-primary: #0a0a0f;
  --color-bg-secondary: #12121a;
  --color-bg-tertiary: #1a1a2e;
  --color-bg-card: rgba(26, 26, 46, 0.6);

  /* Accent colors */
  --color-gold: #d4a853;
  --color-gold-light: #e8c97a;
  --color-gold-dark: #b8902e;

  /* Text */
  --color-text-primary: #f0ece2;
  --color-text-secondary: #a8a4b8;
  --color-text-muted: #6e6b7b;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4a853, #e8c97a, #d4a853);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #1a1a2e 100%);
  --gradient-card: linear-gradient(145deg, rgba(212, 168, 83, 0.08), rgba(26, 26, 46, 0.4));
  --gradient-hero: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.85) 100%);

  /* Glass */
  --glass-bg: rgba(26, 26, 46, 0.35);
  --glass-border: rgba(212, 168, 83, 0.15);
  --glass-blur: 20px;

  /* Shadows */
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 5px 30px rgba(212, 168, 83, 0.15);

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.site-nav.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
  background: rgba(212, 168, 83, 0.08);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(212, 168, 83, 0.04) 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.particle:nth-child(3) { left: 40%; animation-delay: 3s; animation-duration: 6s; }
.particle:nth-child(4) { left: 55%; animation-delay: 0.5s; animation-duration: 8s; }
.particle:nth-child(5) { left: 70%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(6) { left: 85%; animation-delay: 4s; animation-duration: 7s; }
.particle:nth-child(7) { left: 15%; animation-delay: 2.5s; animation-duration: 9s; }
.particle:nth-child(8) { left: 60%; animation-delay: 1s; animation-duration: 6.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 3.5s; animation-duration: 8.5s; }
.particle:nth-child(10) { left: 35%; animation-delay: 0.8s; animation-duration: 7.5s; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 10px 28px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff 20%, #d4a853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-gold);
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 48px;
  position: relative;
  padding: 0 24px;
}

.hero-quote::before,
.hero-quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  font-family: var(--font-display);
  line-height: 1;
}

.hero-quote::before {
  top: -10px;
  left: -5px;
}

.hero-quote::after {
  content: '"';
  bottom: -30px;
  right: -5px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: var(--color-bg-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
  color: var(--color-bg-primary);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-alt {
  background: var(--color-bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 30%, var(--color-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  opacity: 0.2;
}

.about-content h3 {
  font-size: 1.1rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-content p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
}

.about-content p:last-of-type {
  margin-bottom: 40px;
}

.about-highlight {
  color: var(--color-gold) !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem !important;
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
  margin: 32px 0 !important;
  line-height: 1.7 !important;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============================================
   ACHIEVEMENTS SECTION — TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--color-bg-primary);
  border: 3px solid var(--color-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
  background: var(--color-gold);
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.4);
}

.timeline-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
}

.timeline-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.timeline-card p {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.timeline-card .award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ============================================
   MUSIC & ENVIRONMENT SECTION
   ============================================ */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.music-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  height: 100%;
}

.music-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.music-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-gold);
  font-size: 1.5rem;
}

.music-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.music-card p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.song-list {
  list-style: none;
  padding: 0;
}

.song-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
  transition: var(--transition-fast);
}

.song-list li:hover {
  padding-left: 8px;
}

.song-list li:last-child {
  border-bottom: none;
}

.song-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 0.8rem;
}

.song-name {
  font-weight: 500;
  color: var(--color-text-primary);
}

.song-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Green Initiative Banner */
.green-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.08), rgba(212, 168, 83, 0.08));
  border: 1px solid rgba(34, 139, 34, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.green-banner-icon {
  width: 72px;
  height: 72px;
  background: rgba(34, 139, 34, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
}

.green-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #6fcf6f;
}

.green-banner p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   CAREER SECTION
   ============================================ */
.career-content {
  max-width: 900px;
  margin: 0 auto;
}

.career-roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.role-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.role-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

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

.role-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-gold);
  font-size: 1.3rem;
}

.role-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.role-card .role-org {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 12px;
}

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

/* Globe/travel highlight */
.travel-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
  padding: 48px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.travel-stat {
  text-align: center;
}

.travel-stat .big-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.travel-stat .travel-label {
  font-size: 1.1rem;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 6px;
}

.travel-stat .travel-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ============================================
   INTERESTS SECTION
   ============================================ */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.interest-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.interest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 168, 83, 0.1), transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.interest-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.interest-card:hover::after {
  opacity: 1;
}

.interest-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.interest-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.interest-card p {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(212, 168, 83, 0.06), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: var(--color-bg-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
  color: var(--color-bg-primary);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
  border: 1px solid var(--color-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(212, 168, 83, 0.1);
  transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 350px;
}

.footer-section h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.social-link:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 83, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--color-gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .career-roles {
    grid-template-columns: 1fr;
  }

  .interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    background: var(--color-bg-secondary);
    padding: 100px 32px 32px;
    gap: 4px;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--glass-border);
  }

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

  .nav-toggle {
    display: flex;
  }

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

  .travel-highlight {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 56px;
    justify-content: flex-start;
  }

  .timeline-dot {
    left: 20px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .green-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .interests-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 8px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
