/*
Theme Name: Time Dominance
Theme URI: https://timedominance.com
Description: v5.11 - FORCED logo size, gold nav hover, fixed newsletter form
Version: 5.11
Author: Dominic Lyon
Author URI: https://timedominance.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: time-dominance
*/

/* ===================================
   CSS RESET & BASE STYLES
=================================== */

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

:root {
    /* Brand Colors from Book Cover */
    --navy-dark: #0F1419;
    --navy-medium: #1A2332;
    --navy-light: #2D3E50;
    
    /* Gold Colors */
    --gold-primary: #D4AF37;
    --gold-light: #E8D4A0;
    --gold-dark: #B8941F;
    
    /* Accent Colors */
    --copper: #CD7F32;
    --orange-glow: #FF8C42;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    
    /* Text Colors */
    --text-gold: #D4AF37;
    --text-white: #FFFFFF;
    --text-light: #E2E8F0;
    --text-muted: #94A3B8;
    
    /* Typography */
    --font-primary: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows - Gold Glow */
    --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.15);
    --shadow-md: 0 4px 16px rgba(212, 175, 55, 0.2);
    --shadow-lg: 0 8px 24px rgba(212, 175, 55, 0.25);
    --shadow-xl: 0 16px 40px rgba(212, 175, 55, 0.3);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.5);
}

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

body {
    font-family: var(--font-secondary);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--navy-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 4vw, 2.25rem); letter-spacing: -0.01em; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.0625rem;
    color: var(--text-light);
}

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

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

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

/* ===================================
   PARTICLE EFFECTS
=================================== */

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange-glow);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(30px);
        opacity: 0;
    }
}

/* ===================================
   LAYOUT COMPONENTS
=================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

/* ===================================
   HEADER & NAVIGATION
=================================== */

.site-header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
    background: rgba(15, 20, 25, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 120px !important;
    width: auto !important;
    transition: all 0.3s ease;
    max-width: 600px !important;
    display: block !important;
}

.logo-image:hover {
    opacity: 0.9 !important;
    transform: scale(1.02) !important;
}

.site-logo:hover {
    color: var(--gold-light);
    text-shadow: var(--glow-gold);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

/* Shimmer underline for all nav links */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
    animation: shimmer-underline 1.5s ease-in-out infinite;
}

/* Keep Join Community button with its own styling */
.nav-cta:hover {
    color: var(--white) !important;
}

@keyframes shimmer-underline {
    0%, 100% {
        background-position: 0% 0;
    }
    50% {
        background-position: 100% 0;
    }
}

.nav-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 50%, #1e3a5f 100%);
    background-size: 200% 100%;
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect for nav CTA */
.nav-cta::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;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: var(--gold-primary);
    border: none;
    font-size: 1.5rem;
    color: var(--navy-dark);
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-logo {
        font-size: 1.25rem;
    }
    
    .logo-image {
        height: 100px;
        max-width: 500px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-xl);
        padding: var(--spacing-lg);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

/* ===================================
   BUTTONS
=================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 50%, #1e3a5f 100%);
    background-size: 200% 100%;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect overlay for primary button */
.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 50%, #1e3a5f 100%);
    background-size: 200% 100%;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect overlay */
.btn-secondary::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-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 700;
}

.btn-outline:hover {
    background-color: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 1.125rem;
}

/* ===================================
   HERO SECTION - DRAMATIC WITH POCKET WATCH
=================================== */

.hero {
    background: #000000;
    padding: var(--spacing-3xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Pocket Watch Background - Original Placement */
.hero-watch-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.hero-watch {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(1.2) contrast(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.hero h1 {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 50%, #1e3a5f 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: shimmer-title 3s ease-in-out infinite;
    position: relative;
    -webkit-text-stroke: 0.8px rgba(255, 255, 255, 1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

@keyframes shimmer-title {
    0%, 100% {
        background-position: 0% 0;
    }
    50% {
        background-position: 100% 0;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-white);
    line-height: 1.8;
    max-width: 900px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(0, 0, 0, 0.8),
        1px 1px 0 rgba(0, 0, 0, 0.6),
        2px 2px 0 rgba(0, 0, 0, 0.5);
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    margin: 0;
}

/* ===================================
   SECTION STYLES - WITH GRADIENTS
=================================== */

.section-dark {
    background: linear-gradient(180deg, #0F1824 0%, #1A2332 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.5), transparent);
    pointer-events: none;
}

.section-medium {
    background: linear-gradient(180deg, #1A2332 0%, #233447 100%);
    position: relative;
}

.section-medium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(15, 24, 36, 0.5), transparent);
    pointer-events: none;
}

.section-light {
    background: linear-gradient(180deg, #233447 0%, #2D3E50 100%);
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(26, 35, 50, 0.5), transparent);
    pointer-events: none;
}

/* ===================================
   SECTION HEADERS
=================================== */

.section-header {
    margin-bottom: var(--spacing-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--copper);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-sm);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   CARDS - PREMIUM
=================================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.card {
    background: rgba(45, 62, 80, 0.5);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-gold);
    border-color: var(--gold-primary);
    background: rgba(45, 62, 80, 0.7);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--gold-light);
}

.card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===================================
   BOOK FEATURE - PREMIUM
=================================== */

.book-feature {
    background: linear-gradient(180deg, #0F1824 0%, #1A2332 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.book-feature::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.book-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.book-cover {
    position: relative;
}

.book-cover img {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-gold);
    width: 100%;
    max-width: 450px;
    transition: all 0.4s ease;
}

.book-cover img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.6);
}

.book-info h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--gold-primary);
    text-transform: uppercase;
}

.book-subtitle {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.book-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

.book-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .book-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

/* ===================================
   NEWSLETTER - PREMIUM
=================================== */

.newsletter-section {
    background: linear-gradient(135deg, #1A2332 0%, #0F1824 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section h2 {
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.newsletter-form {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-sm);
    background: rgba(45, 62, 80, 0.5);
    padding: var(--spacing-sm);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    align-items: stretch;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: rgba(15, 20, 25, 0.8);
    color: var(--text-white);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--gold-primary);
}

.newsletter-form button {
    font-weight: 700;
    white-space: nowrap;
    padding: 1rem 2rem;
    min-width: 150px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ===================================
   TESTIMONIALS - PREMIUM
=================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: rgba(45, 62, 80, 0.5);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--gold-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-gold);
    background: rgba(45, 62, 80, 0.7);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.author-name {
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================================
   VIDEOS & RESOURCES
=================================== */

.video-grid,
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.video-card,
.resource-card {
    background: rgba(45, 62, 80, 0.5);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.video-card:hover,
.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-gold);
    border-color: var(--gold-primary);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    background: var(--navy-dark);
}

.video-thumbnail iframe,
.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content,
.resource-content {
    padding: var(--spacing-lg);
}

.video-title,
.resource-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--gold-light);
}

.video-description,
.resource-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.video-meta,
.resource-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: var(--navy-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.resource-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.resource-download:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

/* ===================================
   FOOTER
=================================== */

.site-footer {
    background: var(--navy-dark);
    color: var(--text-light);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.footer-menu li {
    margin-bottom: var(--spacing-sm);
}

.footer-menu a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--gold-primary);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-gold);
    background: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: var(--spacing-lg);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   UTILITY CLASSES
=================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 992px) {
    :root {
        --spacing-3xl: 5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-3xl: 4rem;
    }
    
    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }
    
    .site-logo {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 90px;
        max-width: 440px;
    }
}
