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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #8b7355;
    --text-color: #333;
    --text-light: #666;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    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 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300" stroke="%238b7355" stroke-width="2" fill="none" opacity="0.1"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: white;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-link {
    display: inline-block;
    margin: 0 var(--spacing-md);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

/* Music Section */
.music-section {
    background: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.video-card {
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* lite-youtube-embed styling */
.video-card lite-youtube {
    border-radius: 8px 8px 0 0;
}

.video-info {
    padding: var(--spacing-sm);
}

.video-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.video-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background: var(--primary-color);
    color: white;
}

.about-section .section-title {
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.about-content p {
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.streaming-links,
.support-links {
    margin-top: var(--spacing-lg);
}

.streaming-title {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: var(--accent-color);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-sm);
    max-width: 800px;
    margin: 0 auto;
}

.platform-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.platform-link.support {
    background: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 500;
}

.platform-link.support:hover {
    background: #a08768;
    border-color: #a08768;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-content {
    text-align: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-link .icon {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: var(--spacing-md);
    font-size: 0.9rem;
}

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

/* Loading State */
.loading {
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--text-light);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero {
        min-height: 400px;
    }

    .nav-link {
        margin: 0 var(--spacing-sm);
        font-size: 0.85rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .about-content {
        font-size: 1rem;
    }

    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: var(--spacing-xs);
    }

    .platform-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }

    .nav {
        padding: var(--spacing-xs) 0;
    }

    .nav-link {
        margin: 0 var(--spacing-xs);
        font-size: 0.75rem;
    }
}
