* {
    box-sizing: border-box;
}

/* ----------------------------------------------------
   GLOBAL BASE (inherits from home.css)
---------------------------------------------------- */

body {
    background: #111;
    color: #eee;
    font-family: "Space Grotesk", sans-serif;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 4rem;
}

/* ----------------------------------------------------
   NAVIGATION (shared with home.css)
---------------------------------------------------- */

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 0.6rem;
    padding: 1.2rem 1.5rem;
    background: #000;
    border-bottom: 1px solid #222;
}

.site-nav__mark {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.site-nav__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 1.4rem;
    row-gap: 0.5rem;
}

.site-nav__links a {
    text-decoration: none;
    color: #ccc;
    font-size: 1rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-nav__links a:hover,
.site-nav__links .is-active {
    color: #fff;
}

@media (max-width: 600px) {
    .site-nav {
        justify-content: center;
        text-align: center;
        padding: 1rem;
    }

    .site-nav__mark {
        width: 100%;
        margin-bottom: 0.2rem;
    }

    .site-nav__links a {
        font-size: 0.9rem;
    }
}

/* ----------------------------------------------------
   PAGE HEADER
---------------------------------------------------- */

.history-header {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.history-header .eyebrow {
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    color: #ccc;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.history-header h1 {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 0.4rem;
}

.history-header .subhead {
    font-size: 1.1rem;
    color: #bbb;
    margin-top: 0.6rem;
}

/* ----------------------------------------------------
   HISTORY CONTENT
---------------------------------------------------- */

.history-wrapper {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 2rem;
}

@media (max-width: 600px) {
    .history-wrapper {
        padding: 0 1.2rem;
    }
}

.history-section {
    margin-bottom: 3rem;
}

.history-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.history-section p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.4rem;
    text-align: center;
}

/* ----------------------------------------------------
   TIMELINE DIVIDERS
---------------------------------------------------- */

.history-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 0, 120, 0) 0%,
        rgba(255, 0, 120, 0.5) 50%,
        rgba(255, 0, 120, 0) 100%
    );
    margin: 2.5rem 0;
}

/* ----------------------------------------------------
   PHOTO / POSTER BLOCKS
---------------------------------------------------- */

.history-media {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.history-media img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    border: 1px solid #222;
    background: #000;
    box-shadow: 0 0 25px rgba(255, 0, 120, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.history-media img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 0, 120, 0.55);
}

/* ----------------------------------------------------
   QUOTES / HIGHLIGHTS
---------------------------------------------------- */

.history-quote {
    font-family: var(--font-mono, monospace);
    font-size: 1rem;
    color: #e91e63;
    text-align: center;
    margin: 2rem 0;
    padding: 1rem 1.4rem;
    border-left: 3px solid #e91e63;
    border-right: 3px solid #e91e63;
}

/* ----------------------------------------------------
   BACK LINK
---------------------------------------------------- */

.history-back {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.history-back a {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: #eee;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;

    border: 1px solid #222;
    border-radius: 6px;
    background: #1a1a1a;

    transition: background 0.2s ease, transform 0.2s ease;
}

.history-back a:hover {
    background: #222;
    transform: translateY(-3px);
}

/* ----------------------------------------------------
   FOOTER (shared with home.css)
---------------------------------------------------- */

.sleeve__footer {
    text-align: center;
    padding: 2rem 0;
    color: #777;
    font-size: 0.9rem;
}
