﻿/* wwwroot/css/press-kit.css */

/* --- Ensure CSS variables from site.css (:root) are available --- */

.presskit-page-container {
    padding: 2em 1em 4em 1em;
    /* Uses global body background gradient */
    color: var(--light-text);
}

/* Header Banner */
.presskit-header {
    text-align: center;
    margin-bottom: 3em;
    padding: 2em 1em;
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.presskit-logo {
    max-height: 80px; /* Adjust size */
    width: auto;
    margin-bottom: 1em;
}

.presskit-header h1 {
    color: var(--primary-orange);
    font-family: 'Bebas Neue', 'Oswald', Arial, sans-serif;
    font-size: clamp(3.8em, 10vw, 7.5em);
    margin: 0;
    text-shadow: 0 0 5px var(--primary-orange), 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

/* Main Content Grid */
.presskit-content-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first - single column */
    gap: 2.5em;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop Layout: 2 columns */
@media (min-width: 992px) { /* Adjust breakpoint if needed */
    .presskit-content-grid {
        grid-template-columns: 2fr 1fr; /* Main content takes 2/3, sidebar 1/3 */
        gap: 3em;
    }
}

/* Styling for each EPK section */
.epk-section {
    background-color: var(--content-bg);
    padding: 1.5em;
    border-radius: 8px;
    margin-bottom: 2.5em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

    .epk-section:last-child {
        margin-bottom: 0;
    }

    .epk-section h2 {
        color: var(--primary-purple);
        font-size: clamp(1.4em, 4vw, 1.7em);
        margin: 0 0 1em 0;
        padding-bottom: 0.4em;
        border-bottom: 2px solid var(--primary-purple);
        font-weight: 600;
    }

/* Bio Section */
.bio-pitch {
    font-style: italic;
    color: var(--medium-text);
    margin-bottom: 1em;
    font-size: 1.05em;
}

/* Vocalist Search Section Styles for EPK */
.epk-section.vocalist-search-epk {
    border-left: 4px solid var(--vibrant-pink); /* Accent border */
    background-color: rgba(60, 45, 75, 0.7); /* Slightly more purple tint */
    padding-top: 1.8em;
    padding-bottom: 1.8em;
}

.vocalist-search-epk h2 {
    color: var(--vibrant-pink);
    border-bottom-color: var(--vibrant-pink);
}

.vocalist-search-epk p {
    color: var(--medium-text);
    line-height: 1.6;
    font-size: 0.95em;
    margin-bottom: 1em;
}

    .vocalist-search-epk p:last-of-type {
        margin-bottom: 0;
    }

/* Links within EPK */
.epk-link {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.8em;
    margin-right: 1em;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .epk-link:hover {
        color: var(--light-text);
        transform: translateX(3px);
    }

    .epk-link i { /* Font awesome arrow */
        margin-left: 0.3em;
        font-size: 0.9em;
    }

/* Music Section */
.epk-music-player-wrapper .epk-song-item {
    margin-bottom: 1.5em;
}

    .epk-music-player-wrapper .epk-song-item:last-child {
        margin-bottom: 0.5em; /* Reduce margin below last player */
    }

.epk-music-player-wrapper h5 {
    color: var(--medium-text);
    font-size: 1em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.epk-audio-player {
    width: 100%;
    filter: invert(90%) sepia(10%) saturate(1000%) hue-rotate(180deg) contrast(0.9) brightness(1.1);
    border-radius: 5px;
    min-height: 40px;
}

/* Video Section */
.epk-video-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* Default single column */
    gap: 1.5em;
}
/* If more than one video, make them smaller side-by-side on desktop */
@media (min-width: 768px) {
    /* Only apply 2 columns if parent is .presskit-main-column (desktop layout) */
    .presskit-main-column .epk-video-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.epk-video-item {
    /* Container relies on Bootstrap .ratio class for aspect */
    margin-bottom: 0.5em; /* Space below video title */
    background-color: #000; /* Black background for ratio box */
    border-radius: 5px;
    overflow: hidden;
    /* NO position or z-index that would cause issues */
}

    .epk-video-item video {
        /* Video element itself */
        border-radius: 5px;
        display: block;
        /* Let Bootstrap .ratio handle internal positioning/sizing */
    }

.epk-video-title {
    /* Title appears AFTER video div in HTML */
    position: static; /* Ensure normal flow */
    text-align: center;
    font-size: 0.9em;
    color: var(--medium-text);
    margin-top: 0.5em; /* Positions below video container */
    padding: 0 0.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* No rules here to cause overlay */
}

/* Photos Section */
.epk-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1em;
    margin-bottom: 1em;
}

.epk-photo-item {
    text-align: center;
}

    .epk-photo-item img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1; /* Make thumbnails square */
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 0.5em;
        border: 1px solid var(--border-color);
        /* No rules to prevent display */
    }

.epk-download-link {
    display: block; /* Make link take full width */
    font-size: 0.8em;
    color: var(--medium-text);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.3em;
}

    .epk-download-link i {
        margin-right: 0.4em;
    }

    .epk-download-link:hover {
        color: var(--primary-orange);
    }


/* Highlights & Press Lists */
.epk-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .epk-list li {
        margin-bottom: 1em;
        padding-left: 1.2em;
        position: relative;
        color: var(--medium-text);
        font-size: 0.95em;
    }

        .epk-list li::before { /* Custom bullet */
            content: "\f0da"; /* Font Awesome chevron-right */
            font-family: "Font Awesome 6 Free"; /* Match Font Awesome version */
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.1em;
            color: var(--primary-orange);
        }

.epk-section blockquote {
    margin: 0 0 0.3em 0;
    padding: 0;
    font-style: italic;
    color: var(--light-text);
}

.epk-section cite {
    font-style: normal;
    font-size: 0.9em;
    color: var(--medium-text);
}

/* Social Links */
.epk-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em;
}

.epk-social-link {
    color: var(--medium-text);
    text-decoration: none;
    background-color: rgba(var(--card-bg), 0.8); /* Check --card-bg defined or use literal */
    padding: 0.4em 0.8em;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-size: 0.9em;
}

    .epk-social-link:hover {
        background-color: var(--primary-orange);
        color: #000;
        border-color: var(--primary-orange);
    }

/* Contact Section */
#epk-contact p {
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95em;
}

#epk-contact a {
    color: var(--primary-orange);
    text-decoration: none;
}

    #epk-contact a:hover {
        text-decoration: underline;
    }

/* --- Responsive Adjustments for Press Kit --- */
@media (max-width: 576px) {
    .presskit-page-container {
        padding: 1.5em 0.5em 3em 0.5em;
    }

    .presskit-header {
        padding: 1.5em 1em;
        margin-bottom: 2em;
    }

    .presskit-logo {
        max-height: 60px;
    }

    .epk-section {
        padding: 1.2em;
        margin-bottom: 1.8em;
    }

    .epk-photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}
