/* === THE VOICEOVER SHAMAN === */
/* Dark, warm, atmospheric. The campfire in digital form. */

:root {
    --bg-deep: #0a0a0f;
    --bg-dark: #111118;
    --bg-card: #1a1a24;
    --bg-card-hover: #222233;
    --amber: #d4943a;
    --amber-light: #e8b86d;
    --amber-glow: rgba(212, 148, 58, 0.15);
    --amber-glow-strong: rgba(212, 148, 58, 0.3);
    --silver: #c0c0cc;
    --text: #e8e8f0;
    --text-dim: #8888a0;
    --text-bright: #ffffff;
    --fire-red: #c44420;
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Crimson Text', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Particle canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 148, 58, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wolf-sigil {
    font-size: 1.5rem;
}

.nav-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--amber);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--amber);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-content {
    max-width: 700px;
}

.hero-sigil {
    margin-bottom: 2rem;
}

.wolf-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 30px var(--amber-glow), inset 0 0 20px var(--amber-glow);
    animation: pulse-glow 4s ease-in-out infinite;
}

.wolf-icon {
    font-size: 2.5rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px var(--amber-glow), inset 0 0 20px var(--amber-glow); }
    50% { box-shadow: 0 0 50px var(--amber-glow-strong), inset 0 0 30px var(--amber-glow-strong); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.accent {
    color: var(--amber);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

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

.btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--amber);
    color: var(--bg-deep);
}

.btn-primary:hover {
    background: var(--amber-light);
    box-shadow: 0 0 20px var(--amber-glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--amber);
    border: 1px solid var(--amber);
}

.btn-secondary:hover {
    background: var(--amber-glow);
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(transparent, var(--bg-deep));
}

/* === SECTIONS === */
.section {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-dark {
    max-width: 100%;
    background: var(--bg-dark);
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-dark > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--amber);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-dim);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* === REEL === */
.reel-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(212, 148, 58, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

.reel-visual {
    height: 60px;
    background: linear-gradient(90deg, var(--amber-glow) 0%, var(--bg-card) 50%, var(--amber-glow) 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reel-waveform {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        var(--amber) 0px,
        var(--amber) 2px,
        transparent 2px,
        transparent 6px
    );
    opacity: 0.3;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40'%3E%3Cpath d='M0,20 Q10,5 20,20 Q30,35 40,20 Q50,8 60,20 Q70,32 80,20 Q90,10 100,20 Q110,30 120,20 Q130,12 140,20 Q150,28 160,20 Q170,15 180,20 Q190,25 200,20' fill='none' stroke='white' stroke-width='20'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40'%3E%3Cpath d='M0,20 Q10,5 20,20 Q30,35 40,20 Q50,8 60,20 Q70,32 80,20 Q90,10 100,20 Q110,30 120,20 Q130,12 140,20 Q150,28 160,20 Q170,15 180,20 Q190,25 200,20' fill='none' stroke='white' stroke-width='20'/%3E%3C/svg%3E");
}

.reel-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--amber);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.play-btn:hover {
    background: var(--amber-light);
    box-shadow: 0 0 20px var(--amber-glow-strong);
}

.play-icon {
    color: var(--bg-deep);
    font-size: 1.2rem;
    margin-left: 3px;
}

.reel-info {
    flex: 1;
    min-width: 150px;
}

.reel-title {
    display: block;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.reel-duration {
    display: block;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 0.75rem;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--amber);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s;
}

/* === CHARACTERS === */
.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.character-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 148, 58, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.character-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--amber);
    box-shadow: 0 0 20px var(--amber-glow);
    transform: translateY(-2px);
}

.character-card.playing {
    border-color: var(--amber);
    box-shadow: 0 0 30px var(--amber-glow-strong);
}

.character-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.character-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.character-desc {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.character-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.2rem 0.6rem;
    background: var(--amber-glow);
    color: var(--amber);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.character-play {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--amber);
    font-size: 0.85rem;
}

.play-small {
    font-size: 0.7rem;
}

.character-note {
    text-align: center;
    color: var(--text-dim);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
}

/* === ABOUT === */
.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.about-lead {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--amber-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--silver);
    font-size: 0.95rem;
}

.about-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--amber-glow);
    border-radius: 8px;
    border-left: 3px solid var(--amber);
}

.about-photo-placeholder {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(212, 148, 58, 0.15);
    padding: 3rem;
    text-align: center;
    position: sticky;
    top: 100px;
}

.wolf-sigil-large {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.photo-note {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-style: italic;
}

/* === CONTACT === */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(212, 148, 58, 0.1);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--amber);
    box-shadow: 0 0 15px var(--amber-glow);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-value {
    display: block;
    color: var(--amber);
    font-size: 1rem;
}

/* === FOOTER === */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 148, 58, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-quote {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--amber);
    margin-top: 1rem !important;
    font-size: 0.95rem !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-photo-placeholder {
        position: static;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-title {
        font-size: 0.9rem;
    }

    .character-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-links {
        display: none;
    }

    .section {
        padding: 4rem 1rem;
    }
}
