/* ================================
   PRESSKIT PAGE STYLES
   Page-specific CSS — loaded after styles.css
   ================================ */

/* --- Column Title (IM Fell DW Pica, uppercase) --- */
.presskit-column-title {
    font-family: 'IM Fell DW Pica', serif;
    font-weight: 400;
    font-size: 20px;
    color: #3A6493;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin: -15px 0 25px;
}

/* --- Two-Column Layout --- */
.presskit-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 40px;
    position: relative;
}

.presskit-column {
    text-align: center;
}

/* Vertical divider between columns (desktop only).
   Starts at roughly the bottom edge of the first mini-headline boxes
   (~110px down from top of grid) and runs to the bottom. */
.presskit-columns::before {
    content: '';
    position: absolute;
    top: 110px;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #ddd;
}

/* Override content-section paragraph margins for presskit */
.presskit-content .presskit-links p {
    margin-bottom: 8px;
    text-align: center;
    font-size: 13px;
}

.presskit-content .presskit-links a {
    font-family: 'Rosario', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.presskit-links {
    margin-bottom: 25px;
}

/* --- Intro text above bio links --- */
.presskit-content .presskit-column > p.centered {
    font-size: 14px;
    text-align: center;
    margin-bottom: 18px;
    padding: 0 10px;
    color: #444;
}

/* --- Press Photo Groups --- */
.presskit-photo-group {
    margin-bottom: 28px;
    text-align: center;
}

.presskit-thumb {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
    transition: opacity 0.3s ease;
}

.presskit-thumb:hover {
    opacity: 0.8;
}

.photo-options {
    font-family: 'Rosario', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 3px;
}

.photo-options a {
    text-decoration: underline;
}

.photo-credit {
    font-family: 'Rosario', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

.photo-credit a {
    color: rgb(58, 100, 147);
    text-decoration: underline;
}

/* --- Email note for more photos --- */
.presskit-content .presskit-email-note {
    font-size: 14px;
    color: #444;
    margin-bottom: 25px;
}

/* --- Poster Groups --- */
.presskit-poster-group {
    margin-bottom: 30px;
    text-align: center;
}

.presskit-poster-thumb {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
    transition: opacity 0.3s ease;
}

.presskit-poster-thumb:hover {
    opacity: 0.8;
}

.poster-caption {
    font-family: 'Rosario', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

/* Presskit mini-headline override — compress text horizontally and widen box to fit longer titles */
.presskit-column .mini-headline {
    transform: scaleX(0.95);
    width: 250px;
}

/* --- Mobile Toggle Switch --- */
.presskit-toggle {
    display: none; /* Hidden on desktop */
    justify-content: center;
    gap: 0;
    margin: 5px auto 20px;
    background: #f0f0f0;
    border-radius: 6px;
    padding: 3px;
    max-width: 300px;
}

.toggle-btn {
    font-family: 'Cabin Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #3A6493;
    background: transparent;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    flex: 1;
    text-align: center;
    letter-spacing: 0.3px;
}

.toggle-btn.active {
    background: white;
    color: #3A6493;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.toggle-btn:not(.active) {
    color: #888;
}

.toggle-btn:not(.active):hover {
    color: #3A6493;
}


/* ================================
   RESPONSIVE — MOBILE (≤768px)
   ================================ */
@media (max-width: 768px) {

    /* Show toggle on mobile */
    .presskit-toggle {
        display: flex;
    }

    /* Stack columns, hide inactive one */
    .presskit-columns {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 0 30px;
    }

    .presskit-column {
        display: none;
    }

    /* Remove vertical divider on mobile */
    .presskit-columns::before {
        display: none;
    }

    .presskit-column.active {
        display: block;
    }

    /* Slightly smaller column titles on mobile */
    .presskit-column-title {
        font-size: 17px;
        margin: 5px 0 20px;
    }

    /* Override site-wide max-width: 200px so presskit mini-headlines stay at 250px */
    .presskit-column .mini-headline {
        max-width: 250px;
    }

    /* Wider thumbs on mobile */
    .presskit-thumb {
        max-width: 90%;
    }

    .presskit-poster-thumb {
        max-width: 65%;
    }
}


/* ================================
   PRESSKIT SUB-PAGES
   Styles for bio pages, quote sheets, timelines, etc.
   that live inside presskitmaterials/
   ================================ */

/* Content wrapper for sub-pages */
.presskit-sub-content {
    max-width: 42rem;
    overflow: visible;
}

/* Sub-page section title — IM Fell, same size as page-headline (25px) */
.presskit-sub-heading {
    font-family: 'IM Fell DW Pica', serif;
    font-weight: 400;
    font-size: 25px;
    color: #3A6493;
    text-align: center;
    text-transform: none; /* lowercase as written in HTML */
    margin: 5px 0 25px;
}

/* Horizontal rule dividers — wider than the text column */
.presskit-sub-content .presskit-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 5px -4rem 30px;
}

/* Section labels (FULL PRESSKIT BIO:, SHORTER BIO:, etc.) */
.presskit-sub-content .presskit-bio-label {
    font-family: 'Rosario', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: #545454;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px calc(-4rem + 3px);
    letter-spacing: 0.03em;
}

/* Bio text paragraphs — inherits site-wide body font (Rosario) */
.presskit-bio-text p {
    margin-bottom: 18px;
}

/* Jump links row — compound selector beats .content-section p */
.content-section.presskit-sub-content p.presskit-jump-links {
    font-family: 'Rosario', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    padding-bottom: 0;
}

.presskit-jump-links a {
    text-decoration: underline;
    text-transform: uppercase;
}

/* Duo bio page — centered header block */
.presskit-duo-header {
    text-align: center;
    font-family: 'Rosario', sans-serif;
    font-size: 14px;
    color: #545454;
    margin-bottom: 25px;
    line-height: 1.6;
}

.presskit-duo-header strong {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Indented bio blocks (About Danny / On Carrie) */
.presskit-bio-indented {
    padding-left: 2rem;
    padding-right: 1rem;
}

/* Smaller bio label variant (used on duo page) */
.presskit-sub-content .presskit-bio-label-sm {
    font-family: 'Rosario', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #545454;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px calc(-4rem + 3px);
    letter-spacing: 0.03em;
}

/* --- Press Quotes (quote sheet pages) --- */
.presskit-quotes {
    margin-bottom: 0;
}

.presskit-quote {
    text-align: justify;
    margin-bottom: 18px;
}

.presskit-quote em {
    font-style: italic;
}

.presskit-quote em strong {
    font-weight: 800;
}

/* Sign-off at bottom of quote sheet */
.presskit-signoff {
    text-align: center;
    padding: 0 2rem;
}

/* --- Timeline (career timeline pages) --- */
.presskit-timeline {
    max-width: 500px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.timeline-entry {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    align-items: baseline;
}

.timeline-date {
    font-family: 'Rosario', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #545454;
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
    flex-shrink: 0;
}

/* Timeline text inherits site-wide body style */
.timeline-text {
    line-height: 1.6;
    text-align: left;
}

.timeline-text em strong {
    font-weight: 700;
}

/* Carrie's entries in the duo timeline — lighter color to distinguish */
.timeline-carrie .timeline-date,
.timeline-carrie .timeline-text {
    color: #888;
}

/* Cross-links at bottom of quote sheet pages */
.content-section.presskit-sub-content .presskit-cross-links p {
    text-align: center;
    font-size: 12px;
    margin-bottom: 5px;
}

.presskit-cross-links a {
    font-family: 'Rosario', sans-serif;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* --- Guitar Page (martinguitar.html) --- */

/* Top photo layout: large main + two stacked side photos.
   Overhangs the text column to let the large photo breathe. */
.guitar-photos-top {
    display: flex;
    gap: 4px;
    margin: 0 -4rem 5px;
}

.guitar-photo-main {
    flex: 3;
}

.guitar-photo-main img {
    width: 100%;
    height: auto;
    display: block;
}

.guitar-photo-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guitar-photo-side img {
    width: 100%;
    height: auto;
    display: block;
}

.guitar-photo-side img:hover,
.guitar-photo-main img:hover,
.guitar-photo-bottom img:hover {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.content-section.presskit-sub-content p.guitar-caption {
    font-size: 10px;
    color: #888;
    margin-bottom: 30px;
}

/* Sub-section headings within the guitar details */
.guitar-sub-heading {
    font-family: 'Rosario', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #545454;
    font-style: italic;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Extra breathing room above section labels on guitar page */
.presskit-sub-content .guitar-section-spacer {
    margin-top: 35px;
}

/* Bottom photo */
.guitar-photo-bottom {
    text-align: center;
    margin: 20px 0 10px;
}

.guitar-photo-bottom img {
    max-width: 80%;
    height: auto;
    display: inline-block;
}

/* --- Mobile adjustments for sub-pages --- */
@media (max-width: 768px) {
    .presskit-sub-content {
        padding: 1.5rem 1rem;
    }

    /* Contain dividers within the screen on mobile */
    .presskit-sub-content .presskit-divider {
        margin-left: 0;
        margin-right: 0;
    }

    /* Re-center bio labels on mobile */
    .presskit-sub-content .presskit-bio-label,
    .presskit-sub-content .presskit-bio-label-sm {
        text-align: center;
        margin-left: 0;
    }

    /* Reduce indentation on mobile */
    .presskit-bio-indented {
        padding-left: 1rem;
        padding-right: 0.5rem;
    }

    /* Timeline adjustments for mobile */
    .timeline-entry {
        gap: 10px;
        padding: 10px 0;
    }

    .timeline-date {
        font-size: 16px;
        min-width: 52px;
    }

    /* Guitar page: stack photos vertically on mobile */
    .guitar-photos-top {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .guitar-photo-side {
        flex-direction: row;
    }

    .guitar-photo-bottom img {
        max-width: 100%;
    }
}
