/* Faith Meets Fate - Main Styles */

:root {
    --gold: #d4af37;
    --warm-gold: #f0c674;
    --deep-blue: #2c3e50;
    --soft-neutral: #f5f5f0;
    --text-dark: #333;
    --text-light: #666;
    --accent-purple: #667eea;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, #0a0e27 0%, #1a1f3a 30%, #2d3561 60%, #4a5a8a 100%);
    min-height: 100vh;
    color: var(--text-dark);
    position: relative;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Page Content */
.page-content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.page-content h1 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.page-content h2 {
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.page-content h3 {
    color: var(--deep-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.tagline {
    font-size: 1.3rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Team Bios */
.team-member {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.team-member:last-child {
    border-bottom: none;
}

/* Episode List */
.episode {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--soft-neutral);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.episode h3 {
    margin-top: 0;
}

.episode-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--warm-gold);
}

.btn-secondary {
    background: var(--deep-blue);
}

.btn-secondary:hover {
    background: #34495e;
}

/* Constellation stars for pages */
.page-constellation-star {
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
    animation: twinkle 3s infinite ease-in-out;
    z-index: 0;
}

.page-constellation-line {
    position: fixed;
    background: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    transform-origin: left center;
    height: 1px;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.4;
    }
}

nav, .page-content {
    position: relative;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .page-content {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .page-content h1 {
        font-size: 2rem;
    }
}
