/*
Theme Name: Capital Echo
Theme URI: https://thecapitalecho.com
Author: The Capital Echo
Author URI: https://www.youtube.com/@thecapitalecho
Description: A luxury dark theme with gold accents for The Capital Echo - Financial history documentaries with a cinematic feel
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: capital-echo
Tags: dark, luxury, youtube, video, blog, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --color-dark-bg: #0a0a0a;
  --color-dark-secondary: #1a1a1a;
  --color-dark-tertiary: #2a2a2a;
  --color-gold-primary: #D4AF37;
  --color-gold-light: #FFD700;
  --color-gold-dark: #B8941E;
  --color-text-primary: #f5f5f5;
  --color-text-secondary: #cccccc;
  --color-text-muted: #999999;
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: var(--font-secondary);
  background-color: var(--color-dark-bg);
  color: var(--color-text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

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

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

/* ===========================
   Layout Structure
   =========================== */
.site-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
}

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
  background: linear-gradient(180deg, var(--color-dark-bg) 0%, var(--color-dark-secondary) 100%);
  border-bottom: 1px solid var(--color-gold-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1);
}

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

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
}

.site-logo::before {
  content: '◆';
  position: absolute;
  left: -25px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--color-gold-light);
}

.site-logo::after {
  content: '◆';
  position: absolute;
  right: -25px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--color-gold-light);
}

.site-logo:hover {
  color: var(--color-gold-light);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  letter-spacing: 0.1em;
}

.site-logo:hover::before,
.site-logo:hover::after {
  opacity: 1;
}

.site-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-navigation a {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold-primary);
  transition: var(--transition-smooth);
}

.main-navigation a:hover::after,
.main-navigation a.current::after {
  width: 100%;
}

.main-navigation a:hover {
  color: var(--color-gold-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.menu-toggle:hover {
  background: var(--color-gold-primary);
  color: var(--color-dark-bg);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  background: linear-gradient(135deg, var(--color-dark-bg) 0%, var(--color-dark-secondary) 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: parallaxMove 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(212, 175, 55, 0.03) 2px,
    rgba(212, 175, 55, 0.03) 4px
  );
  animation: parallaxMove 30s linear infinite reverse;
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 50%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
  animation: shimmer 2s linear infinite;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-light) 100%);
  color: var(--color-dark-bg);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.3);
  color: var(--color-dark-bg);
}

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

.btn-secondary:hover {
  background: var(--color-gold-primary);
  color: var(--color-dark-bg);
}

/* ===========================
   Video Grid
   =========================== */
.videos-section {
  padding: 4rem 0;
}

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

.section-title {
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-card {
  background: var(--color-dark-secondary);
  border: 1px solid var(--color-dark-tertiary);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--color-gold-primary);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
}

.video-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: var(--color-dark-tertiary);
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  animation: goldPulse 2s ease-in-out infinite;
}

.video-card:hover .video-play-icon {
  background: var(--color-gold-light);
  transform: translate(-50%, -50%) scale(1.2) rotate(90deg);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

.video-play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--color-dark-bg);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-content {
  padding: 1.5rem;
}

.video-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.video-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.video-description {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ===========================
   Blog Section
   =========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--color-dark-secondary);
  border: 1px solid var(--color-dark-tertiary);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-style: preserve-3d;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--color-gold-primary);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.blog-thumbnail {
  height: 250px;
  overflow: hidden;
  background: var(--color-dark-tertiary);
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-primary);
  border: 1px solid var(--color-gold-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.blog-card:hover .blog-category {
  color: var(--color-dark-bg);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}

.blog-card:hover .blog-category::before {
  left: 0;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-title a {
  color: var(--color-text-primary);
}

.blog-title a:hover {
  color: var(--color-gold-primary);
}

.blog-excerpt {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--color-dark-tertiary);
}

/* ===========================
   Newsletter Section
   =========================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--color-dark-secondary) 0%, var(--color-dark-tertiary) 100%);
  padding: 4rem 1.5rem;
  margin: 4rem 0;
  border-top: 2px solid var(--color-gold-primary);
  border-bottom: 2px solid var(--color-gold-primary);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: parallaxMove 20s linear infinite;
  pointer-events: none;
}

.newsletter-section::after {
  content: '💰';
  position: absolute;
  font-size: 200px;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
}

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

.newsletter-title {
  color: var(--color-gold-primary);
  margin-bottom: 1rem;
}

.newsletter-description {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--color-dark-bg);
  border: 2px solid var(--color-dark-tertiary);
  color: var(--color-text-primary);
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 0 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.newsletter-input::placeholder {
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.newsletter-input:focus::placeholder {
  opacity: 0.5;
  transform: translateX(10px);
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--color-dark-secondary);
  border-top: 1px solid var(--color-gold-dark);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
  animation: shimmer 3s linear infinite;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-gold-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: var(--color-text-secondary);
  transition: var(--transition-smooth);
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-dark-tertiary);
  border: 1px solid var(--color-gold-dark);
  border-radius: 50%;
  color: var(--color-gold-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-gold-primary);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  color: var(--color-dark-bg);
  border-color: var(--color-gold-light);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.social-link svg,
.social-link i {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-dark-tertiary);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark-secondary);
    border-top: 1px solid var(--color-gold-dark);
  }

  .main-navigation.active {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid var(--color-dark-tertiary);
  }

  .main-navigation a {
    display: block;
    padding: 1rem;
  }

  .video-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .hero-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 1rem;
  }

  .site-logo {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

/* ===========================
   Custom Cursor
   =========================== */
body {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="none" stroke="%23D4AF37" stroke-width="2"/><circle cx="12" cy="12" r="3" fill="%23D4AF37"/></svg>') 12 12, auto;
}

a, button, .video-card, .blog-card, .btn {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="%23FFD700" stroke-width="2.5"/><circle cx="12" cy="12" r="4" fill="%23FFD700"/></svg>') 12 12, pointer;
}

/* Cursor trail effect */
.cursor-trail {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-gold-primary);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.15s ease;
  transition-property: width, height, border;
  z-index: 9999;
  opacity: 0.5;
  mix-blend-mode: screen;
}

/* ===========================
   Animations & Keyframes
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes goldPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes goldGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
  }
}

/* Parallax background effect */
@keyframes parallaxMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* ===========================
   Enhanced Animations
   =========================== */
.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  animation: fadeInUp 1s ease 0.2s forwards, goldGlow 3s ease-in-out infinite;
  opacity: 0;
}

.hero-subtitle {
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

/* Staggered animation for grid items */
.video-card:nth-child(1),
.blog-card:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.video-card:nth-child(2),
.blog-card:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.video-card:nth-child(3),
.blog-card:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.video-card:nth-child(4) {
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

.video-card:nth-child(5) {
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

.video-card:nth-child(6) {
  animation: fadeInUp 0.6s ease 0.6s forwards;
}

/* Section headers animation */
.section-header {
  animation: fadeIn 1s ease forwards;
}

.section-title {
  animation: slideInLeft 0.8s ease forwards;
}

.section-subtitle {
  animation: slideInRight 0.8s ease 0.2s forwards;
  opacity: 0;
}

/* Button hover effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  animation: goldPulse 2s ease-in-out infinite;
}

/* Enhanced card hover effects */
.video-card,
.blog-card {
  position: relative;
  overflow: hidden;
}

.video-card::before,
.blog-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--color-gold-primary), var(--color-gold-light), var(--color-gold-primary));
  border-radius: 8px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  background-size: 200% 200%;
  animation: shimmer 3s linear infinite;
}

.video-card:hover::before,
.blog-card:hover::before {
  opacity: 1;
}

/* Gold accent line animation */
.main-navigation a::after {
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

/* Newsletter section animation */
.newsletter-section {
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: parallaxMove 20s linear infinite;
  pointer-events: none;
}

/* Input focus animation */
.newsletter-input:focus {
  animation: goldPulse 1.5s ease-in-out;
}

/* Footer links hover animation */
.footer-links a {
  position: relative;
  display: inline-block;
}

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

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

/* Social links animation */
.social-link {
  transition: all 0.3s ease;
}

.social-link:hover {
  animation: float 1s ease-in-out infinite;
}

/* Page load animation */
@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.site-container {
  animation: pageLoad 0.5s ease forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-primary), var(--color-gold-light));
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ===========================
   Utility Classes
   =========================== */
.text-center {
  text-align: center;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
