/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    position: relative;
    scroll-behavior: smooth;
}

/* Ensure no unwanted background elements on html */
html::before,
html::after {
    display: none !important;
}

:root {
    /* Elegant Vintage Color Palette */
    --burgundy: #8B2635;
    --deep-gold: #D4AF37;
    --cream: #F5F5DC;
    --charcoal: #2C2C2C;
    --warm-white: #FDFDF7;
    --soft-gold: #E6D7A8;
    --dark-burgundy: #5A1A1A;
    --vintage-brown: #8B7355;
    --text-dark: #2C2C2C;
    --text-light: #F5F5DC;
    --background: #FDFDF7;
    --surface: #FFFFFF;
    --surface-alt: #F8F9FA;
    --border: #E9ECEF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Crimson Text', serif;
    --font-display: 'Playfair Display', serif;
    --font-accent: 'Dancing Script', cursive;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure no unwanted background elements on body */
body::before,
body::after {
    display: none !important;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: var(--deep-gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--soft-gold);
    transform: scale(1.05);
}

.nav-logo i {
    margin-right: var(--space-sm);
    font-size: 1.8rem;
    color: var(--deep-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: var(--space-sm) var(--space-md);
    white-space: nowrap;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--deep-gold);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
    filter: sepia(0.4) contrast(1.2) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(44, 44, 44, 0.6) 0%, 
        rgba(90, 26, 26, 0.5) 30%, 
        rgba(139, 38, 53, 0.4) 60%, 
        rgba(139, 38, 53, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    color: var(--text-light);
    max-width: 600px;
    z-index: 3;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: var(--space-sm);
    color: var(--deep-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: var(--space-lg);
    color: var(--soft-gold);
    font-weight: 400;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    color: var(--cream);
    opacity: 0.8;
}

.hero-quote {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--deep-gold);
    margin-top: var(--space-xl);
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--deep-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: var(--cream);
    transform: translateX(-50%) scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.vintage-photo {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    filter: sepia(0.3) contrast(1.1);
    transition: var(--transition-slow);
    transform: perspective(1000px) rotateY(-5deg);
}

.vintage-photo:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--burgundy);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.piano-keys {
    width: 200px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(90deg, 
        #000 0%, #000 8%, #fff 8%, #fff 12%, 
        #000 12%, #000 20%, #fff 20%, #fff 24%,
        #000 24%, #000 32%, #fff 32%, #fff 36%,
        #000 36%, #000 44%, #fff 44%, #fff 48%,
        #000 48%, #000 56%, #fff 56%, #fff 60%,
        #000 60%, #000 68%, #fff 68%, #fff 72%,
        #000 72%, #000 80%, #fff 80%, #fff 84%,
        #000 84%, #000 92%, #fff 92%, #fff 96%,
        #000 96%, #000 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Biography Section */
.biography {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.bio-highlight {
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: var(--warm-white);
    border-left: 4px solid var(--deep-gold);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bio-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.bio-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.bio-highlight:hover::before {
    opacity: 1;
}

.bio-highlight h3 {
    color: var(--burgundy);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
}

.bio-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.bio-image {
    position: sticky;
    top: 100px;
}

.image-caption {
    text-align: center;
    margin-top: var(--space-md);
    font-style: italic;
    color: var(--vintage-brown);
    font-size: 0.9rem;
}

/* Timeline Section */
.timeline {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-burgundy) 100%);
    color: var(--cream);
}

.timeline .section-header h2 {
    color: var(--deep-gold);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--deep-gold);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--deep-gold);
    color: var(--charcoal);
    padding: var(--space-md) var(--space-lg);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.timeline-year:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.timeline-content {
    background: var(--warm-white);
    color: var(--charcoal);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: 0 var(--space-xl);
    flex: 1;
    box-shadow: 0 8px 25px var(--shadow-dark);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-dark);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--warm-white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--warm-white);
}

.timeline-content h3 {
    color: var(--burgundy);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    background: var(--surface);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--cream);
    padding: var(--space-lg);
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

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

/* Legacy Section */
.legacy {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--cream);
}

.legacy .section-header h2 {
    color: var(--deep-gold);
}

.legacy-quote {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.legacy-quote p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0 var(--space-xl);
    color: var(--soft-gold);
    opacity: 0.9;
}

.legacy-quote i {
    color: var(--deep-gold);
    font-size: 2rem;
    opacity: 0.7;
}

.legacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.highlight-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-10px);
    border-color: var(--deep-gold);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-item i {
    font-size: 3rem;
    color: var(--deep-gold);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.highlight-item h3 {
    color: var(--deep-gold);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.highlight-item p {
    line-height: 1.6;
    color: var(--cream);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-section h3 {
    color: var(--deep-gold);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: var(--space-sm);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0.7;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--deep-gold);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-link:hover {
    background: var(--deep-gold);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--deep-gold);
    opacity: 1;
    transform: translateX(4px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--deep-gold);
    transition: var(--transition);
    transform: translateY(-50%);
}

.footer-links a:hover::before {
    width: 6px;
}

/* Footer Bottom Links */
.footer-bottom a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-bottom a:hover {
    color: var(--deep-gold);
    opacity: 1;
}

/* Footer Email Link */
.footer-section a[href^="mailto:"] {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section a[href^="mailto:"]:hover {
    color: var(--deep-gold);
    opacity: 1;
}

/* Mobile Navigation Styles */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    gap: var(--space-md);
    align-items: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.active li {
    margin: var(--space-sm) 0;
    width: 100%;
}

.nav-menu.active a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
}

.nav-menu.active a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--deep-gold);
    transform: none;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        padding: var(--space-md);
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: var(--space-sm) var(--space-md);
        width: 100%;
        text-align: center;
        border-radius: var(--radius-sm);
        transition: var(--transition);
    }
    
    .nav-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a.active {
        background: rgba(212, 175, 55, 0.2);
        color: var(--deep-gold);
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Ensure hamburger is always visible on mobile */
    .nav-container {
        position: relative;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
        gap: 0.4rem;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-links a::before {
        left: 50%;
        top: -2px;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
    }
    
    .footer-links a:hover::before {
        width: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: left;
        gap: var(--space-xl);
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .timeline-content::before {
        left: -30px;
        border-right-color: var(--warm-white);
        border-left-color: transparent;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .legacy-highlights {
        grid-template-columns: 1fr;
    }
    
    /* Hide sidebar on mobile for songs and instrumentals pages */
    .sidebar {
        display: none !important;
    }
    
    .main-content {
        margin-right: 0 !important;
        padding: 100px 20px 40px !important;
    }
    
    .songs-page,
    .instrumentals-page {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .timeline-year {
        min-width: 100px;
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 60px;
        padding: var(--space-lg);
    }
    
    .hero-quote {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    /* Additional mobile styles for very small screens */
    .nav-container {
        padding: 0 var(--space-md);
    }
    
    .nav-menu {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: var(--space-sm);
    }
    
    .sidebar {
        margin: var(--space-md) var(--space-sm);
    }
    
    .main-content {
        padding: 100px var(--space-sm) var(--space-lg) !important;
    }
    
    .track-item {
        padding: var(--space-sm) var(--space-md);
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio-highlight,
.timeline-item,
.gallery-item,
.highlight-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Elegant Background Decoration */
.elegant-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--deep-gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--deep-gold) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, var(--deep-gold) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: subtle-drift 20s ease-in-out infinite;
}

@keyframes subtle-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -5px) rotate(1deg); }
}

/* Keep current page link highlighted in navbar */
.nav-menu a.active {
    color: var(--deep-gold);
}
.nav-menu a.active::after {
    width: 100%;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--cream);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.2) contrast(1.1) brightness(0.8);
}

/* Specific positioning for biography page header */
.biography-header .header-bg-image {
    object-position: center 25%;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 38, 53, 0.3) 0%, 
        rgba(90, 26, 26, 0.4) 100%);
    z-index: 2;
}

.page-header .section-header {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 2rem;
    align-self: flex-end;
    max-width: 50%;
    margin-left: 0;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-lg);
    color: var(--deep-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-header .subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    font-style: italic;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Biography Full Page Styles */
.biography-full {
    padding: var(--space-2xl) 0;
    background: var(--warm-white);
}

.bio-content-full {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.bio-image-sidebar {
    position: sticky;
    top: 100px;
    text-align: center;
}

.bio-image-sidebar img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--space-lg);
    transition: var(--transition);
}

.bio-image-sidebar img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bio-text-full {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.bio-text-full p {
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.bio-text-full strong {
    color: var(--burgundy);
    font-weight: 700;
}

/* Gallery Full Page Styles */
.gallery-full {
    padding: var(--space-2xl) 0;
    background: var(--warm-white);
    position: relative;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    position: relative;
}

.gallery-item-full {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.gallery-item-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item-full img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item-full:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: var(--space-lg);
    text-align: center;
    font-weight: 600;
    color: var(--charcoal);
    background: var(--cream);
}

.gallery-caption-full {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--cream);
    padding: var(--space-lg);
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

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

/* Desktop padding improvements for text content */
@media (min-width: 769px) {
    .main-content {
        padding: 100px 60px 40px !important;
    }
    
    .page-subtitle {
        padding: 30px 40px !important;
        margin: 0 auto;
        max-width: 900px;
    }
    
    .bio-text-full {
        padding: 0 40px;
    }
    
    .bio-text-full p {
        margin-bottom: var(--space-xl);
    }
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    

    
    .bio-content-full {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .bio-image-sidebar {
        position: static;
        order: -1;
    }
    
    .gallery-grid-full {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .gallery-item-full img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .bio-text-full {
        font-size: 1rem;
    }
    
    .gallery-item-full img {
        height: 250px;
    }
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    color: var(--cream);
    font-size: 1.2rem;
    margin-top: var(--space-lg);
    font-weight: 600;
}

.close-modal {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    color: var(--cream);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 0;
}

.close-modal:hover {
    color: var(--deep-gold);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 38, 53, 0.8);
    color: var(--cream);
    border: none;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-nav:hover {
    background: var(--burgundy);
    color: var(--deep-gold);
    transform: scale(1.1);
}

.modal-nav.prev {
    left: var(--space-xl);
}

.modal-nav.next {
    right: var(--space-xl);
}

/* Gallery item cursor pointer */
.gallery-item-full,
.gallery-item {
    cursor: pointer;
}

/* Modal sharing styles */
.modal-sharing {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    border: 1px solid var(--deep-gold);
    max-height: 300px;
    overflow-y: auto;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-nav {
        padding: var(--space-sm) var(--space-md);
        font-size: 1.2rem;
    }
    
    .modal-nav.prev {
        left: var(--space-md);
    }
    
    .modal-nav.next {
        right: var(--space-md);
    }
    
    .close-modal {
        top: var(--space-md);
        right: var(--space-lg);
        font-size: 2.5rem;
    }
    
    .modal-caption {
        font-size: 1rem;
    }
}

/* Global Audio Player */
.global-audio-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--cream);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s ease;
    border-top: 2px solid var(--deep-gold);
    border-radius: 15px;
    max-width: 1200px;
    margin: 0 auto;
    /* Flexbox layout */
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Ensure no text selection on player */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.global-audio-player.show {
    transform: translateY(0);
}

.global-player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.global-player-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.global-player-cover {
    width: 50px;
    height: 50px;
    background: var(--deep-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.global-player-cover i {
    font-size: 1.5rem;
    color: var(--burgundy);
}

.global-player-details {
    min-width: 0;
    flex: 1;
}

.global-player-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0px;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.global-player-artist {
    font-size: 0.8rem;
    opacity: 0.8;
}

.global-player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.global-control-btn {
    background: none;
    border: 2px solid var(--deep-gold);
    color: var(--deep-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    /* Ensure proper touch targets on mobile */
    min-width: 44px;
    min-height: 44px;
    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.global-control-btn:hover {
    background: var(--deep-gold);
    color: var(--burgundy);
    transform: scale(1.1);
}

.global-control-btn.play-pause {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

.global-playback-modes {
    display: flex;
    gap: 8px;
}

.global-mode-btn {
    background: none;
    border: 2px solid var(--deep-gold);
    color: var(--deep-gold);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.global-mode-btn:hover {
    background: var(--deep-gold);
    color: var(--burgundy);
    transform: scale(1.1);
}

.global-mode-btn.active {
    background: var(--deep-gold);
    color: var(--burgundy);
}

/* Volume Control */
.global-volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.global-volume-btn {
    background: none;
    border: 2px solid var(--deep-gold);
    color: var(--deep-gold);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.global-volume-btn:hover {
    background: var(--deep-gold);
    color: var(--burgundy);
    transform: scale(1.1);
}

.global-volume-slider-container {
    width: 80px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-volume-slider {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.global-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--deep-gold);
    border-radius: 50%;
    border: 2px solid var(--cream);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.global-volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--deep-gold);
    border-radius: 50%;
    border: 2px solid var(--cream);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.global-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    /* Ensure progress bar is interactive */
    pointer-events: auto;
    /* Ensure proper dimensions */
    min-height: 4px;
    overflow: visible;
    order: 1;
    margin-top: 12px;
    margin-bottom: 8px;
}

.global-progress-bar {
    height: 100%;
    background: var(--deep-gold);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 2px;
    pointer-events: none;
    position: relative;
    /* Ensure progress bar is visible */
    min-width: 0;
    /* Add subtle glow effect */
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.3);
}

.global-progress-bar::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--deep-gold);
    border-radius: 50%;
    border: 2px solid var(--cream);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
    /* Ensure cursor is always visible on touch devices */
    pointer-events: none;
    /* Ensure cursor has proper spacing from container edges */
    z-index: 10;
}

.global-progress:hover .global-progress-bar::after {
    opacity: 1;
}

/* Show progress cursor on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .global-progress-bar::after {
        opacity: 1;
    }
    
    /* Make progress bar more touch-friendly on mobile */
    .global-progress {
        height: 8px;
    }
    
    .global-progress-bar::after {
        width: 20px;
        height: 20px;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 15;
        border: 2px solid var(--cream);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    }
}



.global-player-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.global-player-close:hover {
    opacity: 1;
}

.global-player-reminder {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--deep-gold);
    color: var(--deep-gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.global-player-reminder i {
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Responsive global player */
@media (max-width: 768px) {
    .global-audio-player {
        bottom: 20px;
        left: 15px;
        right: 15px;
        width: auto;
        max-width: none;
        padding: 12px 16px;
        gap: 8px;
    }
    
    .global-player-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start !important;
    }
    
    .global-player-info {
        justify-content: flex-start !important;
        text-align: left !important;
        order: 0;
        margin-top: 0;
        width: 100%;
        align-items: flex-start;
    }
    
    .global-player-details {
        text-align: left !important;
    }
    
    .global-player-controls {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        order: 1;
    }
    
    .global-control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .global-playback-modes {
        display: flex;
        justify-content: center;
        gap: 8px;
        order: 2;
    }
    
    .global-volume-control {
        position: relative;
        order: 3;
    }
    
    .global-volume-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .global-volume-slider-container {
        position: absolute;
        bottom: 50px;
        right: 0;
        width: 40px;
        height: 120px;
        background: rgba(139, 38, 53, 0.95);
        border-radius: 20px;
        padding: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .global-volume-slider-container.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .global-volume-slider {
        width: 90px;
        height: 6px;
        transform: rotate(-90deg);
        transform-origin: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        outline: none;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .global-volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--deep-gold);
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }
    
    .global-volume-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--deep-gold);
        cursor: pointer;
        border: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }
    
    .global-player-title {
        font-size: 1rem;
        margin-bottom: 0px;
        margin-top: 0;
    }
    
    .global-player-artist {
        font-size: 0.85rem;
    }
    
    .global-player-cover {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-top: 3px;
    }
    
    .global-player-details {
        flex: 1;
        text-align: center;
        align-items: center;
        margin-top: 0;
    }
    
    .global-mode-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .global-progress {
        height: 6px;
        order: 4;
        margin-top: 10px;
        margin-bottom: 6px;
    }
    
    .global-player-close {
        top: 6px;
        right: 10px;
        font-size: 1.1rem;
    }

    /* Mobile volume control adjustments */
    .global-volume-control {
        gap: 8px;
    }
    
    .global-volume-slider-container {
        width: 60px;
    }
    
    .global-volume-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .floating-music-btn {
        bottom: 20px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .floating-music-btn i {
        font-size: 1.3rem;
    }
    
    /* Ensure proper spacing from page content */
    .main-content {
        padding-bottom: 120px !important;
    }
    
    .tracks-grid {
        margin-bottom: 100px;
    }
    
    .track-card {
        margin-bottom: 15px;
    }
    
    /* Prevent overlap with More Info buttons */
    .more-info-btn {
        margin-bottom: 5px;
    }
    
    /* Enhanced mobile progress bar - no additional styles needed with flexbox */
    
    /* Make progress cursor more visible on mobile */
    .global-progress-bar::after {
        width: 18px;
        height: 18px;
        right: -9px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 15;
        border: 2px solid var(--cream);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .global-audio-player {
        left: 10px;
        right: 10px;
        padding: 8px 12px;
        gap: 6px;
    }
    
    .global-player-content {
        gap: 6px;
    }
    
    .global-player-controls {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .global-volume-control {
        gap: 5px;
    }
    
    .global-volume-slider-container {
        width: 50px;
    }
    
    .global-control-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .global-mode-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .global-volume-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .global-player-cover {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-top: 6px;
    }
    
    .global-player-info {
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100%;
        align-items: flex-start;
    }
    
    .global-player-details {
        text-align: left !important;
    }
    
    .global-progress {
        margin-top: 8px;
        margin-bottom: 4px;
    }
}

@media (min-width: 769px) {
    .global-player-close {
        top: 15px;
        right: 20px;
        font-size: 1.4rem;
    }
    
    .global-player-controls {
        margin-right: 50px;
    }
}

/* Elegant Mobile Text Blurb Design */
@media (max-width: 768px) {
    .page-subtitle {
        background: transparent !important;
        position: relative;
        padding: 0 !important;
        height: auto !important;
        min-height: auto !important;
        border-radius: 0 !important;
        margin: 20px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        border: none !important;
        box-shadow: none !important;
        
        /* Beautiful typography */
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        color: var(--cream) !important;
        text-align: center !important;
        font-weight: 300;
        font-style: italic;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        
        /* Add elegant spacing */
        padding: 15px 30px !important;
    }
    
    /* Elegant decorative border */
    .page-subtitle::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(212, 175, 55, 0.6) 20%, 
            rgba(212, 175, 55, 0.8) 50%,
            rgba(212, 175, 55, 0.6) 80%, 
            transparent);
    }
    
    .page-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(212, 175, 55, 0.6) 20%, 
            rgba(212, 175, 55, 0.8) 50%,
            rgba(212, 175, 55, 0.6) 80%, 
            transparent);
    }
    
    /* Compress header spacing */
    .page-header {
        margin-bottom: 15px !important;
        padding-top: 80px !important;
    }
    
    .page-title {
        margin-bottom: 8px !important;
        font-size: 2.8rem !important;
    }
    
    /* B-sides section styling */
    .bsides-section .page-subtitle {
        margin-top: 15px !important;
    }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
    .page-subtitle {
        font-size: 1rem !important;
        padding: 18px 25px !important;
        line-height: 1.6 !important;
    }
    
    .page-header {
        padding-top: 70px !important;
        margin-bottom: 10px !important;
    }
    
    .page-title {
        font-size: 2.3rem !important;
        margin-bottom: 5px !important;
    }
}

/* Floating Music Button */
.floating-music-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1999;
    transition: all 0.3s ease;
    border: 2px solid var(--deep-gold);
}

.floating-music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floating-music-btn i {
    font-size: 1.5rem;
    color: var(--deep-gold);
}

.floating-music-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--burgundy);
    color: var(--cream);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.floating-music-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 5px solid transparent;
    border-top-color: var(--burgundy);
}

.floating-music-btn:hover .floating-music-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Track Icon Styles */
.track-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 38, 53, 0.3);
}

.track-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--deep-gold) 0%, var(--soft-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.track-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Playing state styles */
.track-card.playing .track-icon,
.track-item.playing .track-icon {
    background: var(--burgundy);
}

.track-card.playing .track-icon i,
.track-item.playing .track-icon i {
    color: var(--deep-gold);
}

.track-card:hover .track-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
}

.track-card:hover .track-icon::before {
    opacity: 0.2;
}

.track-card:hover .track-icon i {
    /* Only apply transform on hover, keep original colors */
    transform: scale(1.1);
}

.track-item.playing:hover {
    color: var(--deep-gold);
}

/* Play button pulse animation on hover */
.track-card:hover .track-icon i.fa-play {
    animation: playPulse 1.5s infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Track card click feedback */
.track-card:active {
    transform: translateY(-2px) scale(0.98);
}

.track-card:active .track-icon {
    transform: scale(0.95);
}

/* Ensure track card header layout works properly */
.track-card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

/* Add bottom padding to pages when mobile player is visible */
@media (max-width: 768px) {
    body:has(.global-audio-player.show) {
        padding-bottom: 140px;
    }
    
    /* Alternative approach for browsers that don't support :has() */
    .global-audio-player.show ~ * {
        margin-bottom: 140px;
    }
    
    /* Ensure footer doesn't get hidden behind player */
    .footer {
        margin-bottom: 140px;
    }
}

.track-card-header > div:last-child {
    flex: 1;
    min-width: 0; /* Allow text to wrap properly */
}

.track-card-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

/* Enhanced track card hover state */
.track-card {
    position: relative;
    overflow: hidden;
}

/* Ensure mobile player doesn't interfere with page scrolling */
@media (max-width: 768px) {
    .global-audio-player {
        /* Ensure player stays within safe area */
        bottom: max(20px, env(safe-area-inset-bottom));
        left: max(15px, env(safe-area-inset-left));
        right: max(15px, env(safe-area-inset-right));
    }
    
    /* Prevent body scrolling when interacting with player */
    .global-audio-player:active {
        touch-action: none;
    }
    
    /* Ensure proper spacing for track cards */
    .track-card:last-child {
        margin-bottom: 120px;
    }
    
    /* Ensure controls fit properly on very small screens */
    @media (max-width: 480px) {
        .global-player-controls {
            justify-content: center;
            gap: 12px;
        }
        
        .global-control-btn {
            width: 36px;
            height: 36px;
            font-size: 0.85rem;
        }
        
        .global-control-btn.play-pause {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .global-playback-modes {
            margin-left: 8px;
            gap: 5px;
        }
        
        .global-mode-btn {
            width: 30px;
            height: 30px;
            font-size: 0.75rem;
        }
    }
}

/* Responsive styles for new header layouts */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: left;
        padding: 0 var(--space-sm);
    }
    
    .hero-text {
        max-width: 100%;
        margin-bottom: var(--space-xl);
    }
    
    .hero-bg-image {
        object-position: center;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, 
            rgba(44, 44, 44, 0.6) 0%, 
            rgba(90, 26, 26, 0.5) 50%, 
            rgba(139, 38, 53, 0.4) 100%);
    }
    
    .page-header {
        padding: 80px 0 60px;
    }
    
    .header-bg-image {
        object-position: center;
    }
    
    /* Songs and Instrumentals page mobile styles */
    .songs-page,
    .instrumentals-page {
        flex-direction: column;
    }
    
    .sidebar {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        order: 2;
        margin-top: var(--space-xl);
        box-shadow: none !important;
        border-radius: var(--radius-lg);
        margin: var(--space-lg) var(--space-md);
        max-height: 400px;
        overflow-y: auto;
    }
    
    .main-content {
        margin-right: 0 !important;
        padding: 100px var(--space-md) var(--space-xl) !important;
        order: 1;
        width: 100% !important;
    }
    
    .track-list {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .track-item {
        padding: var(--space-md) var(--space-lg);
    }
    
    .sidebar-header {
        padding: var(--space-lg) var(--space-md);
    }
    
    .sidebar-header h2 {
        font-size: 1.5rem;
    }
}

.track-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.track-card:hover::after {
    left: 100%;
}

/* Call to Action Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--deep-gold) 0%, var(--soft-gold) 50%, var(--cream) 100%);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="music-notes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" font-family="serif" font-size="12" fill="rgba(212,175,55,0.1)" text-anchor="middle">♪</text></pattern></defs><rect width="100" height="100" fill="url(%23music-notes)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.cta-text h2 {
    color: var(--dark-burgundy);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-lead {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: var(--space-xl);
    font-weight: 600;
    line-height: 1.6;
}

.cta-features {
    margin-bottom: var(--space-xl);
}

.cta-feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-feature i {
    color: var(--burgundy);
    font-size: 1.5rem;
    margin-right: var(--space-md);
    min-width: 24px;
}

.cta-feature span {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.1rem;
}

.cta-urgency {
    font-size: 1.2rem;
    color: var(--dark-burgundy);
    font-weight: 700;
    font-style: italic;
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 2px solid var(--deep-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.cta-signup,
.cta-community {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.cta-signup:hover,
.cta-community:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.cta-signup h3,
.cta-community h3 {
    color: var(--burgundy);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    text-align: center;
}

.cta-signup p,
.cta-community p {
    color: var(--charcoal);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.newsletter-form {
    margin-bottom: var(--space-md);
}

.form-group {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.form-group input[type="email"] {
    flex: 1;
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--surface);
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--deep-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-primary {
    background: var(--burgundy);
    color: var(--text-light);
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-family: var(--font-primary);
}

.btn-primary:hover {
    background: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
}

.btn-primary i {
    font-size: 1.1rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--vintage-brown);
    text-align: center;
    margin: 0;
    font-style: italic;
}

.community-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-primary);
    text-align: center;
}

.facebook-btn {
    background: #1877f2;
    color: white;
    border: 2px solid #1877f2;
}

.facebook-btn:hover {
    background: #166fe5;
    border-color: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.youtube-btn {
    background: #ff0000;
    color: white;
    border: 2px solid #ff0000;
}

.youtube-btn:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.community-note {
    font-size: 0.9rem;
    color: var(--vintage-brown);
    text-align: center;
    margin: 0;
    font-style: italic;
}

.success-message {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    border-radius: var(--radius-lg);
    color: #2e7d32;
}

.success-message i {
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: var(--space-md);
}

.success-message p {
    margin: 0;
    font-weight: 600;
}

/* Responsive Design for CTA Section */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-feature {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: var(--space-xl) 0;
    }
    
    .cta-content {
        gap: var(--space-lg);
    }
    
    .cta-text h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .cta-lead {
        font-size: 1.1rem;
    }
    
    .cta-signup,
    .cta-community {
        padding: var(--space-lg);
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .btn-primary {
        justify-content: center;
    }
    
    .community-links {
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: var(--space-lg) 0;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-lead {
        font-size: 1rem;
    }
    
    .cta-feature {
        padding: var(--space-sm);
    }
    
    .cta-feature i {
        font-size: 1.2rem;
        margin-right: var(--space-sm);
    }
    
    .cta-feature span {
        font-size: 1rem;
    }
    
    .cta-urgency {
        font-size: 1.1rem;
        padding: var(--space-sm);
    }
}

/* Featured Tracks Section */
.featured-tracks {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
    position: relative;
}

.featured-tracks .section-header h2 {
    color: var(--burgundy);
    margin-bottom: var(--space-sm);
}

.featured-tracks .section-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    align-items: stretch;
}

.track-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.track-card.clicking {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    transition: all 0.2s ease;
}

.track-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.track-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.track-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 38, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.track-card:hover .track-overlay {
    opacity: 1;
}

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

.track-overlay i {
    font-size: 4rem;
    color: var(--deep-gold);
    transition: var(--transition);
}

.track-card:hover .track-overlay i {
    transform: scale(1.1);
}

.track-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.track-content h3 {
    color: var(--burgundy);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
}

.track-type {
    color: var(--deep-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.track-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    flex: 1;
}

.track-card .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: var(--space-md) var(--space-lg);
}

.track-card .btn-primary i {
    margin-right: var(--space-sm);
}

/* Video Section */
.video-section {
    text-align: center;
    margin-top: var(--space-2xl);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Responsive Design for Featured Tracks */
@media (max-width: 768px) {
    .tracks-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .track-image {
        height: 200px;
    }
    
    .track-content {
        padding: var(--space-md);
    }
    
    .track-content h3 {
        font-size: 1.3rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .featured-tracks {
        padding: var(--space-xl) 0;
    }
    
    .tracks-grid {
        gap: var(--space-md);
    }
    
    .track-image {
        height: 180px;
    }
    
    .track-content {
        padding: var(--space-sm);
    }
    
    .track-content h3 {
        font-size: 1.2rem;
    }
    
    .track-description {
        font-size: 0.9rem;
    }
    
    .video-container iframe {
        height: 200px;
    }
}

/* ============================================================================
   BLOG STYLES
   ============================================================================ */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--cream);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-header .header-bg-image {
    object-position: center 60%;
    object-fit: cover;
}

/* Blog Header Description */
.blog-header-description {
    margin-top: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-header-description p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

/* Blog Announcement */
.blog-announcement {
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--deep-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(139, 38, 53, 0.05) 100%);
    opacity: 0.5;
}

.announcement-content {
    text-align: center;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.announcement-icon {
    margin-bottom: var(--space-lg);
}

.announcement-icon i {
    font-size: 3rem;
    color: var(--deep-gold);
    background: linear-gradient(135deg, var(--deep-gold) 0%, var(--soft-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.announcement-content h2 {
    color: var(--burgundy);
    font-size: 2rem;
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

.announcement-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

.announcement-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    min-width: 120px;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--deep-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: var(--space-xs);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
}

.announcement-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.announcement-btn {
    background: var(--burgundy);
    color: var(--cream);
    border: 2px solid var(--burgundy);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    font-family: var(--font-primary);
}

.announcement-btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.3);
}

.announcement-note {
    color: var(--vintage-brown);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Blog Content */
.blog-content {
    padding: var(--space-2xl) 0;
    background: var(--warm-white);
    min-height: 60vh;
}

/* Blog Controls */
.blog-controls {
    margin-bottom: var(--space-2xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-controls::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%, rgba(139, 38, 53, 0.03) 100%);
    opacity: 0.5;
}

.controls-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.controls-header h3 {
    color: var(--burgundy);
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
}

.controls-header p {
    color: var(--charcoal);
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

.controls-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.blog-filters {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 1;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-width: 150px;
}

.filter-group label {
    font-weight: 600;
    color: var(--burgundy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.filter-group label i {
    font-size: 0.8rem;
    color: var(--deep-gold);
}

.filter-select {
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--deep-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Blog Search */
.blog-search {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 300px;
}

.search-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.search-input {
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    flex: 1;
    min-width: 250px;
}

.search-input:focus {
    outline: none;
    border-color: var(--deep-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-btn {
    padding: var(--space-sm) var(--space-md);
    background: var(--burgundy);
    color: var(--cream);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
}

.search-btn:hover {
    background: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
}

.search-suggestions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.suggestion-label {
    font-size: 0.85rem;
    color: var(--vintage-brown);
    font-weight: 600;
    margin-right: var(--space-xs);
}

.suggestion-tag {
    background: rgba(139, 38, 53, 0.1);
    color: var(--burgundy);
    border: 1px solid rgba(139, 38, 53, 0.3);
    padding: 4px var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.suggestion-tag:hover {
    background: var(--burgundy);
    color: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 38, 53, 0.2);
}

/* Blog Posts Grid */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

/* Blog Post Card */
.blog-post {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.blog-post.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
    border: 2px solid var(--deep-gold);
}

.blog-post.featured::before {
    content: 'Featured';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--deep-gold);
    color: var(--burgundy);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Post Image */
.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.blog-post:hover .post-overlay {
    opacity: 1;
}

.post-meta {
    color: var(--cream);
    display: flex;
    gap: var(--space-md);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Post Content */
.post-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-header {
    margin-bottom: var(--space-md);
}

.post-title {
    color: var(--burgundy);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
    line-height: 1.3;
}

.blog-post.featured .post-title {
    font-size: 1.8rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.author-type {
    background: var(--deep-gold);
    color: var(--burgundy);
    padding: 2px var(--space-xs);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-excerpt {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    flex: 1;
}

/* Post Footer */
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.post-tags {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.tag {
    background: var(--surface-alt);
    color: var(--burgundy);
    padding: 2px var(--space-xs);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: lowercase;
}

.post-stats {
    display: flex;
    gap: var(--space-md);
    color: var(--vintage-brown);
    font-size: 0.85rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.stat i {
    font-size: 0.8rem;
}

/* Read More Button */
.read-more-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: var(--space-md) var(--space-lg);
    margin-top: auto;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: var(--space-2xl);
}

.load-more-btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
    min-width: 200px;
}

/* Blog Newsletter Section */
.blog-newsletter {
    margin-top: var(--space-2xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--cream);
}

.newsletter-content h3 {
    color: var(--deep-gold);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

.newsletter-content p {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.blog-newsletter .newsletter-form {
    max-width: 500px;
    margin: 0 auto var(--space-md);
}

.blog-newsletter .form-group {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.blog-newsletter .form-group input[type="email"] {
    flex: 1;
    padding: var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    backdrop-filter: blur(10px);
}

.blog-newsletter .form-group input[type="email"]::placeholder {
    color: rgba(245, 245, 220, 0.7);
}

.blog-newsletter .form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--deep-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.blog-newsletter .btn-primary {
    background: var(--deep-gold);
    color: var(--burgundy);
    border: 2px solid var(--deep-gold);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-family: var(--font-primary);
}

.blog-newsletter .btn-primary:hover {
    background: var(--soft-gold);
    border-color: var(--soft-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.blog-newsletter .form-note {
    color: rgba(245, 245, 220, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--vintage-brown);
}

.no-posts i {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    opacity: 0.5;
}

.no-posts h3 {
    color: var(--burgundy);
    margin-bottom: var(--space-md);
}

.coming-soon-cta {
    margin-top: var(--space-lg);
}

.coming-soon-cta .btn-primary {
    background: var(--burgundy);
    color: var(--cream);
    border: 2px solid var(--burgundy);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    font-family: var(--font-primary);
}

.coming-soon-cta .btn-primary:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.3);
}

/* Post Modal */
.post-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.post-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    width: 90%;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.post-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.7);
    color: var(--cream);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--burgundy);
    transform: scale(1.1);
}

/* Modal Post */
.modal-post {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-post-image {
    height: 300px;
    overflow: hidden;
}

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

.modal-post-content {
    padding: var(--space-xl);
}

.modal-post-header {
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid var(--border);
    padding-bottom: var(--space-lg);
}

.modal-post-title {
    color: var(--burgundy);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    line-height: 1.3;
}

.modal-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.modal-post-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.modal-post-date {
    display: flex;
    gap: var(--space-md);
    color: var(--vintage-brown);
    font-size: 0.9rem;
}

.modal-post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
}

.modal-post-body p {
    margin-bottom: var(--space-lg);
}

.modal-post-footer {
    border-top: 2px solid var(--border);
    padding-top: var(--space-lg);
}

.modal-post-tags {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.modal-post-stats {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    color: var(--vintage-brown);
    font-size: 0.9rem;
}

.modal-post-sharing h4 {
    color: var(--burgundy);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.sharing-buttons {
    display: flex;
    gap: var(--space-sm);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.copy {
    background: var(--burgundy);
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
    .blog-posts {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .blog-post.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .blog-header-description {
        margin-top: var(--space-lg);
        padding: 0 var(--space-md);
    }
    
    .blog-header-description p {
        font-size: 1.1rem;
    }
    
    .blog-controls {
        padding: var(--space-lg);
    }
    
    .controls-content {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .blog-filters {
        justify-content: center;
        gap: var(--space-md);
    }
    
    .blog-search {
        min-width: auto;
        width: 100%;
    }
    
    .search-container {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .search-suggestions {
        justify-content: center;
        text-align: center;
    }
    
    .suggestion-label {
        display: block;
        width: 100%;
        margin-bottom: var(--space-xs);
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .post-image {
        height: 200px;
    }
    
    .blog-post.featured .post-image {
        height: 200px;
    }
    
    .post-content {
        padding: var(--space-md);
    }
    
    .post-title {
        font-size: 1.3rem;
    }
    
    .blog-post.featured .post-title {
        font-size: 1.5rem;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-post-content {
        padding: var(--space-lg);
    }
    
    .modal-post-title {
        font-size: 1.5rem;
    }
    
    .modal-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .modal-post-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .blog-header-description {
        margin-top: var(--space-md);
        padding: 0 var(--space-sm);
    }
    
    .blog-header-description p {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: var(--space-xl) 0;
    }
    
    .blog-controls {
        padding: var(--space-md);
    }
    
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }
    
    .filter-select {
        min-width: auto;
    }
    
    .search-input {
        min-width: 150px;
    }
    
    .announcement-features {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .feature-item {
        min-width: auto;
        width: 100%;
    }
    
    .post-content {
        padding: var(--space-sm);
    }
    
    .post-title {
        font-size: 1.2rem;
    }
    
    .blog-post.featured .post-title {
        font-size: 1.3rem;
    }
    
    .modal-post-content {
        padding: var(--space-md);
    }
    
    .modal-post-title {
        font-size: 1.3rem;
    }
    
    .modal-post-body {
        font-size: 1rem;
    }
    
    .sharing-buttons {
        justify-content: center;
    }
    
    .blog-newsletter {
        padding: var(--space-lg);
        margin-top: var(--space-xl);
    }
    
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .blog-newsletter .form-group {
        flex-direction: column;
    }
    
    .blog-newsletter .btn-primary {
        justify-content: center;
    }
    
    .blog-announcement {
        padding: var(--space-lg);
        margin: var(--space-xl) 0;
    }
    
    .announcement-content h2 {
        font-size: 1.5rem;
    }
    
    .announcement-content p {
        font-size: 1rem;
    }
    
    .announcement-btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1rem;
    }
}
