/* 
   RiotOnRoad - EPK (Electronic Press Kit) Styles - Single Column Layout
   These styles are specific to artist EPK pages
*/

/* EPK Hero Section - Contained Width */
section.epk-hero {
    width: 100%;
    position: relative;
    margin-bottom: 0;
}

.epk-hero .container {
    padding: 0;

}

.epk-hero-image {
    
    margin: 0 auto;
    position: relative;
    border-radius: 4px; /* Optional: adds slight rounding to the image corners */
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9; /* This ensures 16:9 aspect ratio */
    object-fit: cover;
    border-radius: 4px;
}

/* EPK Grid Layout - Single Column */
.epk-grid {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.epk-main-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.epk-sidebar {
    max-width: 900px;
    margin: 3rem auto 0;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

/* Sidebar Layout for Single Column */
.sidebar-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.sidebar-flex-container {
    display: flex;
    gap: 2rem;
}

.sidebar-left {
    flex: 1;
}

.sidebar-right {
    flex: 0 0 35%;
}

.sidebar-section {
    flex: 1;
    min-width: 250px;
}

.epk-music-embed {
    width: 100%;
    margin-top: 2rem;
}

/* EPK Sections */
.epk-section {
    margin-bottom: 4rem;
}

.epk-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.epk-section p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Similar Artists */
.similar-artists {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.similar-artist {
    background-color: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Image Gallery */
.epk-image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Discography */
.discography-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.discography-list li {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    align-items: flex-start;
}

.release-artwork {
    width: 100px;
    height: 100px;
    margin-right: 1.5rem;
    flex-shrink: 0;
    /* Removed border-radius to eliminate rounded corners */
    overflow: hidden;
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.release-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.release-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.1rem;
}

.release-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.release-additional-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.release-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.release-type, .release-year-pill {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    line-height: 1;
}

.release-year-pill {
    background-color: #e0e0e0;
}

.release-type {
    background-color: #f0f0f0;
}

.release-format, .release-label {
    font-size: 0.9rem;
    color: #666;
}

.release-label {
    font-style: italic;
}

/* Press Quotes */
.press-quotes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.press-quote {
    border-left: 4px solid #f0117d;
    padding-left: 1.5rem;
    margin: 0;
}

.press-quote p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.press-quote cite {
    font-style: normal;
    font-size: 0.9rem;
}

.press-quote cite a {
    color: #f0117d;
    text-decoration: none;
}

.press-quote cite a:hover {
    text-decoration: underline;
}

/* Sidebar Styles - Now horizontal sections */
.epk-sidebar h2 {
    margin-bottom: 2rem;
    font-size: 2.25rem;
}

.epk-sidebar h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.epk-contact-info, 
.epk-social-links, 
.epk-assets {
    margin-bottom: 2rem;
}

.contact-list, 
.social-list, 
.assets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li, 
.social-list li, 
.assets-list li {
    margin-bottom: 0.75rem;
}

.epk-sidebar a {
    color: #000;
    text-decoration: underline;
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
}

.epk-sidebar a:hover {
    color: #ff69b4;
}

.epk-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.epk-sidebar li {
    margin-bottom: 0.5rem;
}

/* Remove any conflicting styles */
.social-link, 
.asset-link {
    display: inline;
    padding: 0;
    font-weight: normal;
    border: none;
}

.social-link:hover, 
.asset-link:hover {
    padding: 0;
    border: none;
}

/* Artist Name Styling */
.epk-artist-name {
    color: #191919;
    font-size: 3.5rem;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    font-weight: 900;
}

/* Downloads Section */
.epk-downloads {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 4px;
}

.downloads-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.downloads-list li {
    margin-bottom: 1rem;
}

.downloads-list li:last-child {
    margin-bottom: 0;
}

.download-link {
    display: block;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.download-link:hover {
    color: #666;
}

/* Update spacing for stacked sections in left column */
.sidebar-left .sidebar-section + .sidebar-section {
    margin-top: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .epk-artist-name {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .sidebar-flex-container {
        gap: 1.5rem;
    }
    
    .epk-artist-name {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    section.epk-hero {
        padding-bottom: 0;
    }
    section.epk-content {
        padding-top: 0;
    }
    .epk-image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stack sidebar sections vertically */
    .sidebar-flex-container {
        flex-direction: column;
    }
    
    .sidebar-left, .sidebar-right {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .discography-list li {
        flex-wrap: wrap;
    }
    
    .release-artwork {
        margin-bottom: 1rem;
    }
    
    .release-details {
        width: 100%;
    }
    
    .release-title-container {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .release-info {
        flex-wrap: wrap;
    }
    
    .epk-section h2,
    .epk-sidebar h2 {
        font-size: 1.75rem;
    }
    
    .epk-artist-name {
        font-size: 2.5rem;
    }
    
    /* Make sidebar links full width */
    .epk-sidebar a {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
    }

    .epk-sidebar li {
        margin-bottom: 0;
    }

    .epk-downloads .downloads-list li {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .epk-image-gallery {
        grid-template-columns: 1fr;
    }
    
    .epk-section h2 {
        font-size: 1.8rem;
    }
    
    .release-year {
        min-width: 50px;
        margin-right: 1rem;
    }
    
    .epk-artist-name {
        font-size: 2.25rem;
    }
}
