/* ============================================
   DARREN WARREN - OFFICIAL WEBSITE
   Premium Static Marketing Site
   ============================================ */

/* ---- CUSTOM FONTS ---- */
@font-face {
  font-family: 'NoStress';
  src: url('../fonts/NoStress.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eroded';
  src: url('../fonts/Eroded.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Grained';
  src: url('../fonts/Grained.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- CSS VARIABLES ---- */
:root {
  /* Colors */
  --obsidian: #050505;
  --charcoal: #121212;
  --off-white: #F5F5F0;
  --whiskey-gold: #C5A059;
  --amber-glow: #FFB800;
  --st-jude-red: #8B0000;
  --faded-denim: #2A3B55;
  
  /* Typography */
  --font-heading: 'NoStress', serif;
  --font-subheading: 'Prata', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-ui: 'Manrope', sans-serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-width: min(90%, 1400px);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- 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);
  background-color: var(--obsidian);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ---- UTILITY CLASSES ---- */
.container {
  width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  background-color: var(--obsidian);
}

.text-gold {
  color: var(--whiskey-gold);
}

.text-muted {
  color: rgba(245, 245, 240, 0.85);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(5, 5, 5, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--off-white);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.nav-logo:hover {
  color: var(--whiskey-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.8);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--whiskey-gold);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--whiskey-gold);
}

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

.nav-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-social-link {
  color: rgba(245, 245, 240, 0.6);
  font-size: 1.1rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-social-link:hover {
  color: var(--whiskey-gold);
  transform: translateY(-2px);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--off-white);
  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);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--obsidian);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition-smooth);
  }

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

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .nav-socials {
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .nav-social-link {
    font-size: 1.5rem;
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-primary {
  background: var(--whiskey-gold);
  color: var(--obsidian);
}

.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--whiskey-gold);
  border: 1px solid var(--whiskey-gold);
}

.btn-secondary:hover {
  background: var(--whiskey-gold);
  color: var(--obsidian);
}

.btn-ghost {
  background: transparent;
  color: var(--whiskey-gold);
  padding: 0.75rem 1rem;
}

.btn-ghost:hover {
  color: var(--off-white);
  letter-spacing: 0.15em;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.3) 0%,
    rgba(5, 5, 5, 0.5) 50%,
    rgba(5, 5, 5, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 10rem);
  line-height: 0.9;
  color: var(--off-white);
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--whiskey-gold);
  margin-top: 1rem;
  letter-spacing: 0.2em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--whiskey-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 245, 240, 0.9);
  margin-top: 1rem;
  max-width: 600px;
}

/* ---- FEATURED MUSIC ---- */
.music-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .music-featured {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.album-artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.album-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.album-artwork:hover img {
  transform: scale(1.05);
}

.music-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.music-info p {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.streaming-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.streaming-link:hover {
  background: rgba(197, 160, 89, 0.1);
  border-color: var(--whiskey-gold);
  color: var(--whiskey-gold);
}

.spotify-embed {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

/* ---- TOUR SECTION ---- */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-smooth);
}

.tour-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.3);
}

.tour-date {
  text-align: center;
  min-width: 80px;
}

.tour-date-month {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--whiskey-gold);
}

.tour-date-day {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.tour-venue h4 {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.tour-venue span {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.85);
}

@media (max-width: 640px) {
  .tour-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .tour-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
}

/* ---- STORY PREVIEW ---- */
.story-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .story-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.story-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 160, 89, 0.3);
  pointer-events: none;
}

.story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.story-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--whiskey-gold);
}

.story-content p {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* ---- ST. JUDE FEATURE ---- */
.stjude-section {
  position: relative;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15) 0%, rgba(5, 5, 5, 1) 100%);
  border-top: 1px solid rgba(139, 0, 0, 0.3);
  border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.stjude-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.stjude-section .section-eyebrow {
  color: #D4A574;
}

.stjude-section .section-title {
  margin-bottom: 1.5rem;
}

.stjude-section p {
  font-size: 1.1rem;
  color: rgba(245, 245, 240, 0.85);
  margin-bottom: 2rem;
}

.stjude-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-donate {
  background: #8B0000;
  color: var(--off-white);
}

.btn-donate:hover {
  background: #A52A2A;
}

/* ---- SPONSOR SECTION ---- */
.sponsor-section {
  background: var(--charcoal);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.sponsor-logo {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.sponsor-logo img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
}

/* Stor-Mor Brand Logo */
.stormor-brand-logo {
  text-align: center;
  padding: 1rem;
}

.stormor-logo-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--whiskey-gold);
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stormor-logo-tagline {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--off-white);
  font-weight: 500;
  text-transform: uppercase;
}

.company-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--whiskey-gold);
}

.sponsor-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.sponsor-content p {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.sponsor-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .sponsor-buttons {
    justify-content: center;
  }
}

/* ---- EMAIL CAPTURE ---- */
.newsletter-section {
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--whiskey-gold), transparent);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.form-input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--whiskey-gold);
}

.form-input::placeholder {
  color: rgba(245, 245, 240, 0.6);
}

/* ---- FOOTER ---- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(245, 245, 240, 0.85);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 245, 240, 0.7);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--whiskey-gold);
  border-color: var(--whiskey-gold);
  color: var(--obsidian);
}

.footer-column h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--whiskey-gold);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(245, 245, 240, 0.85);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--off-white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  color: rgba(245, 245, 240, 0.7);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(245, 245, 240, 0.7);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--off-white);
}

/* ---- PAGE HERO (Internal Pages) ---- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--section-padding);
  margin-bottom: var(--section-padding);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0) 0%,
    rgba(5, 5, 5, 0.7) 60%,
    rgba(5, 5, 5, 1) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.6);
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--whiskey-gold);
}

.breadcrumb span {
  color: var(--whiskey-gold);
}

/* ---- ABOUT PAGE ---- */
.about-section {
  margin-bottom: var(--section-padding);
}

.about-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-intro p {
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.85);
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.story-section:nth-child(even) {
  direction: rtl;
}

.story-section:nth-child(even) > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-section:nth-child(even) {
    direction: ltr;
  }
}

.story-section-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.story-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--whiskey-gold);
}

.story-section-content p {
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
}

.quote-block {
  position: relative;
  padding: 2rem 0;
  margin: 3rem 0;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.quote-block blockquote {
  font-family: var(--font-subheading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--off-white);
  line-height: 1.6;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--whiskey-gold);
  font-style: normal;
}

/* ---- MUSIC PAGE ---- */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.album-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.album-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-4px);
}

.album-card-img {
  aspect-ratio: 1;
  overflow: hidden;
}

.album-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.album-card:hover .album-card-img img {
  transform: scale(1.05);
}

.album-card-content {
  padding: 1.5rem;
}

.album-card-content h3 {
  font-family: var(--font-subheading);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.album-card-content .year {
  font-size: 0.8rem;
  color: var(--whiskey-gold);
  margin-bottom: 0.75rem;
}

.album-card-content p {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.9);
  margin-bottom: 1rem;
}

.album-links {
  display: flex;
  gap: 0.5rem;
}

.album-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.album-link:hover {
  background: var(--whiskey-gold);
  border-color: var(--whiskey-gold);
  color: var(--obsidian);
}

/* ---- TOUR PAGE ---- */
.tour-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--whiskey-gold);
  border-color: var(--whiskey-gold);
  color: var(--obsidian);
}

.tour-full-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-item {
  display: grid;
  grid-template-columns: 100px 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-smooth);
}

.tour-item:hover {
  border-color: rgba(197, 160, 89, 0.3);
}

.tour-item.past {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .tour-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
}

.tour-item-date {
  font-family: var(--font-subheading);
}

.tour-item-date .month {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--whiskey-gold);
}

.tour-item-date .day {
  font-size: 1.75rem;
  line-height: 1;
}

.tour-item-venue h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tour-item-location {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.9);
}

/* ---- NEWS PAGE ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

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

.news-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.news-card-img {
  position: absolute;
  inset: 0;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.3) 50%,
    rgba(5, 5, 5, 0) 100%
  );
  transition: background var(--transition-smooth);
}

.news-card:hover .news-card-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.98) 0%,
    rgba(5, 5, 5, 0.5) 50%,
    rgba(5, 5, 5, 0.2) 100%
  );
}

.news-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.news-card-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--whiskey-gold);
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-family: var(--font-subheading);
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.news-card-excerpt {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- ST. JUDE PAGE ---- */
.stjude-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.stjude-hero p {
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--off-white);
  line-height: 1.8;
}

.stjude-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .stjude-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stjude-donate-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(5, 5, 5, 0.9) 100%);
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.stjude-donate-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.stjude-donate-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--off-white);
}

/* ---- STOR-MOR PAGE ---- */
.stormor-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .stormor-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--whiskey-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.9);
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.company-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all var(--transition-smooth);
}

.company-card:hover {
  border-color: var(--whiskey-gold);
}

.company-card h4 {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.company-card p {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.9);
  margin-bottom: 1rem;
}

/* ---- SHOP PAGE ---- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.product-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--whiskey-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--obsidian);
  z-index: 1;
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 1.5rem;
}

.product-card-content h3 {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--whiskey-gold);
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.product-card:hover .coming-soon-overlay {
  opacity: 1;
}

.coming-soon-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--whiskey-gold);
}

/* ---- LOADING STATE ---- */
.page-loading {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(197, 160, 89, 0.2);
  border-top-color: var(--whiskey-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- PRINT STYLES ---- */
@media print {
  .nav,
  .footer,
  .newsletter-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}
