/* ========================================
   ELENDRIEL OF AURIDON - Main Stylesheet
   Created by Adrianne28
   ======================================== */

:root {
  /* Auridon Palette - Emerald & Gold */
  --emerald-deep: #0d2818;
  --emerald-darker: #0a1f14;
  --emerald-dark: #1a4731;
  --emerald-mid: #2d6a4f;
  --emerald-light: #40916c;
  --emerald-pale: #74c69d;
  
  --gold-bright: #d4af37;
  --gold-pale: #f0d77c;
  --gold-dark: #996515;
  --gold-glow: rgba(212, 175, 55, 0.6);
  
  --moonstone: #a8d5e2;
  --starlight: #e8f4f8;
  --aetherial-cyan: #00e5ff;
  --void-purple: #4a148c;
  --daedric-red: #b71c1c;
  
  --cream: #faf8f0;
  --parchment: #f5f0e1;
  --ink: #1a1a1a;
  
  /* Typography */
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --content-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--cream);
  background: var(--emerald-deep);
  overflow-x: hidden;
}

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

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ===== ATMOSPHERIC BACKGROUND ===== */
.bg-atmosphere {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(45, 106, 79, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--emerald-deep) 0%, var(--emerald-darker) 100%);
}

.floating-runes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.rune {
  position: absolute;
  font-family: var(--font-display);
  color: var(--aetherial-cyan);
  opacity: 0.06;
  animation: float 25s ease-in-out infinite;
  text-shadow: 0 0 30px var(--aetherial-cyan);
}

.rune:nth-child(1) { top: 8%; left: 5%; font-size: 4rem; animation-delay: 0s; }
.rune:nth-child(2) { top: 25%; right: 8%; font-size: 3rem; animation-delay: -5s; }
.rune:nth-child(3) { top: 55%; left: 12%; font-size: 2.5rem; animation-delay: -10s; }
.rune:nth-child(4) { top: 75%; right: 15%; font-size: 3.5rem; animation-delay: -15s; }
.rune:nth-child(5) { top: 40%; left: 85%; font-size: 2rem; animation-delay: -8s; }
.rune:nth-child(6) { top: 90%; left: 50%; font-size: 2.8rem; animation-delay: -20s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
  25% { transform: translateY(-30px) rotate(5deg); opacity: 0.1; }
  50% { transform: translateY(-15px) rotate(-3deg); opacity: 0.04; }
  75% { transform: translateY(-35px) rotate(2deg); opacity: 0.08; }
}

/* ===== NAVIGATION ===== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background: linear-gradient(180deg, rgba(13, 40, 24, 0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.main-nav.scrolled {
  background: rgba(13, 40, 24, 0.98);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  padding: 0.8rem 2rem;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  text-shadow: 0 0 25px var(--gold-glow);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--cream);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-bright);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 40, 24, 0.4) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(2px);
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  color: var(--gold-bright);
  text-shadow: 
    0 0 50px var(--gold-glow),
    0 0 100px rgba(212, 175, 55, 0.3);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-location {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--emerald-pale);
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--moonstone);
  max-width: 650px;
  margin: 0 auto 3rem;
  animation: fadeInUp 1.2s ease-out 0.8s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 1.2rem 3rem;
  border: 1px solid var(--gold-bright);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: fadeInUp 1.2s ease-out 1s both;
}

.hero-cta:hover {
  background: var(--gold-bright);
  color: var(--emerald-deep);
  box-shadow: 0 0 40px var(--gold-glow);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 35px;
  height: 35px;
  stroke: var(--gold-pale);
  opacity: 0.5;
}

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

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

/* ===== SECTION STYLES ===== */
section {
  padding: var(--section-padding) 2rem;
}

.section-content {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

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

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--cream);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  margin: 1.5rem auto 0;
}

/* ===== PARALLAX SECTIONS ===== */
.parallax-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(13, 40, 24, 0.7) 0%, 
    rgba(13, 40, 24, 0.4) 50%, 
    rgba(13, 40, 24, 0.8) 100%);
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 4rem 2rem;
}

.parallax-quote {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}

.parallax-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-style: normal;
  color: var(--gold-pale);
  letter-spacing: 0.1em;
}

/* ===== BACKSTORY SECTION ===== */
.backstory-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.backstory-image {
  position: sticky;
  top: 120px;
}

.backstory-image img {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.backstory-image figcaption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold-pale);
  font-style: italic;
}

.backstory-text {
  color: var(--parchment);
}

.backstory-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.backstory-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.8rem;
  margin-top: 0.1rem;
  color: var(--gold-bright);
  text-shadow: 0 0 30px var(--gold-glow);
}

/* ===== TABS COMPONENT ===== */
.tabs-section {
  background: rgba(26, 71, 49, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem;
  margin-top: 4rem;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn:hover {
  color: var(--gold-pale);
}

.tab-btn.active {
  color: var(--gold-bright);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  color: var(--parchment);
  text-align: justify;
  margin-bottom: 1rem;
}

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

/* ===== PERSONALITY SECTION ===== */
.traits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.trait-card {
  background: rgba(13, 40, 24, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.trait-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.trait-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.trait-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.trait-desc {
  font-size: 1.05rem;
  color: var(--parchment);
  line-height: 1.7;
}

/* ===== LIKES/DISLIKES ===== */
.likes-dislikes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.likes-col h3, .dislikes-col h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.likes-col h3 { color: var(--emerald-pale); }
.dislikes-col h3 { color: #ef9a9a; }

.likes-col ul, .dislikes-col ul {
  list-style: none;
}

.likes-col li, .dislikes-col li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  color: var(--parchment);
  padding-left: 1.5rem;
  position: relative;
}

.likes-col li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--emerald-pale);
  font-size: 0.7rem;
}

.dislikes-col li::before {
  content: '✧';
  position: absolute;
  left: 0;
  color: #ef9a9a;
  font-size: 0.7rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  cursor: pointer;
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 40, 24, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold-pale);
  letter-spacing: 0.1em;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--gold-bright);
}

/* ===== GEAR & STATS SECTION ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: rgba(13, 40, 24, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-bright);
  text-shadow: 0 0 25px var(--gold-glow);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moonstone);
  margin-top: 0.8rem;
}

.stat-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-light), var(--gold-bright));
  border-radius: 2px;
  width: 0;
  transition: width 1.5s ease;
}

.gear-section {
  background: rgba(26, 71, 49, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 3rem;
  margin-bottom: 3rem;
}

.gear-section h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.gear-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gear-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--gold-dark);
}

.gear-item.legendary {
  border-left-color: var(--gold-bright);
}

.gear-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--cream);
}

.gear-type {
  font-size: 0.85rem;
  color: var(--emerald-pale);
}

/* ===== COMPANIONS & MOUNTS ===== */
.companions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.companion-card {
  background: rgba(13, 40, 24, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: all 0.4s ease;
}

.companion-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-5px);
}

.companion-image {
  height: 200px;
  overflow: hidden;
}

.companion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.companion-card:hover .companion-image img {
  transform: scale(1.1);
}

.companion-info {
  padding: 1.5rem;
}

.companion-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.companion-title {
  font-size: 0.9rem;
  color: var(--emerald-pale);
  font-style: italic;
}

/* ===== ABOUT ME PAGE ===== */
.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 71, 49, 0.3);
}

.about-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 120px;
}

.about-photo-frame {
  border: 3px solid var(--gold-dark);
  padding: 1rem;
  background: rgba(13, 40, 24, 0.6);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--gold-pale);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--parchment);
  margin-bottom: 1.5rem;
}

.contact-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: var(--moonstone);
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.contact-email:hover {
  border-color: var(--gold-bright);
  color: var(--gold-pale);
}

/* ===== AUDIO CONTROLS ===== */
.audio-controls {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(13, 40, 24, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.audio-controls:hover {
  border-color: var(--gold-bright);
}

.audio-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.audio-toggle:hover {
  transform: scale(1.15);
}

.audio-toggle.playing {
  animation: pulse 2s infinite;
}

.audio-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px var(--gold-bright)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 15px var(--aetherial-cyan)); }
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(10, 31, 20, 0.5);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--gold-glow);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--emerald-pale);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-credits {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .backstory-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .backstory-image {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-photo {
    position: relative;
    top: 0;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(13, 40, 24, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .likes-dislikes {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .tabs-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .tab-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .audio-controls {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1rem;
  }
  
  .audio-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    padding: 1rem 2rem;
    font-size: 0.8rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold-bright); }
.text-emerald { color: var(--emerald-pale); }
.mt-4 { margin-top: 4rem; }
.mb-4 { margin-bottom: 4rem; }

/* ===== ANIMATIONS ON SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTACT ROW WITH OPTIONAL PLAYER PHOTO ===== */
.contact-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.player-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.player-avatar:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Alternative: Larger avatar option */
.player-avatar.large {
  width: 120px;
  height: 120px;
}

/* Audio attention indicator for first-time visitors */
.audio-controls.highlight {
  animation: audioAttention 3s ease-in-out;
}

@keyframes audioAttention {
  0%, 100% { box-shadow: none; }
  25%, 75% { box-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.4); }
}
