/* monopole.style - Avant-Garde Physics Editorial */
/* Colors: #1C1820, #D08040, #40B8C0, #141018, #B0A898, #8090A0, #8060B0, #F0E8E0 */
/* Fonts: Space Grotesk, Newsreader, IBM Plex Mono */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #141018;
    color: #F0E8E0;
    font-family: 'Newsreader', serif;
    overflow-x: hidden;
}

/* Cover */
#cover {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.cover-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: -0.02em;
    color: #F0E8E0;
    line-height: 1;
    opacity: 0;
    filter: blur(10px);
    animation: coverReveal 1.5s ease forwards;
}

@keyframes coverReveal {
    to { opacity: 1; filter: blur(0); }
}

.cover-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 2rem);
    color: #40B8C0;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.cover-issue {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: #8090A0;
    letter-spacing: 0.08em;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Editorial Spreads */
.editorial-spread {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    opacity: 0;
    filter: blur(6px);
    transform: translateY(20px);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.editorial-spread.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Content Flows */
.spread-content {
    flex: 1;
}

.left-flow {
    padding-right: 2rem;
}

.right-flow {
    padding-left: 2rem;
}

.center-flow {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.spread-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D08040;
    display: block;
    margin-bottom: 1rem;
}

.spread-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    color: #F0E8E0;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.spread-body {
    font-family: 'Newsreader', serif;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    color: #B0A898;
    max-width: 500px;
}

.center-flow .spread-body {
    margin: 0 auto;
    max-width: 600px;
}

/* Icons */
.spread-icon {
    flex-shrink: 0;
}

.editorial-icon {
    width: 120px;
    height: 120px;
}

.left-float {
    margin-left: -5vw;
}

.right-float {
    margin-right: -5vw;
}

/* Chapter Break */
.chapter-break {
    min-height: 60vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.chapter-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #F0E8E0;
    letter-spacing: -0.02em;
    line-height: 1;
}

.chapter-caption {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    color: #8060B0;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

/* Closing */
.closing-spread {
    padding-bottom: 10rem;
}

/* Vertical line accent */
.editorial-spread::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #1C1820);
}

/* Responsive */
@media (max-width: 768px) {
    .editorial-spread {
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 1.5rem;
    }

    .left-float, .right-float {
        margin: 0;
    }

    .spread-icon {
        order: -1;
    }

    .left-flow, .right-flow {
        padding: 0;
    }

    .spread-body {
        max-width: 100%;
    }
}
