/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #0b0c10; /* Dark space background */
    color: #c5c6c7; /* Light grey text */
    line-height: 1.6;
    padding: 20px;
}

/* Add vertical spacing to all paragraph elements */
p {
    margin-bottom: 20px; /* Adds space below each paragraph */
}

/* Fix for paragraphs inside sections so the last one doesn't create extra space */
.epk-section p:last-child {
    margin-bottom: 0;
}

/* Header & Hero Image Styling */
.epk-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.header-image-container {
    width: 100%;
    max-height: 450px; /* Limits height so it doesn't take up the whole screen */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Soft shadow around photo */
}

.band-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image from looking stretched or squished */
    display: block;
}

.header-text h1 {
    font-size: 3rem;
    color: #66fcf1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-text .tagline {
    font-size: 1.2rem;
    color: #45f3ff;
    font-style: italic;
}


/* Header styling */
.epk-header {
    text-align: center;
}

.epk-header h1 {
    font-size: 3rem;
    color: #66fcf1; /* Bright neon blue/teal accent */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.epk-header .tagline {
    font-size: 1.2rem;
    color: #45f3ff;
    font-style: italic;
}

/* Layout Container */
.epk-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Box Styling */
.epk-section {
    background-color: #1f2833; /* Dark slate card background */
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #66fcf1;
}

.epk-section h2 {
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.epk-section ul {
    margin-left: 20px;
}

/* Buttons and Links */
.music-links {
    display: flex;
    gap: 10px; /* Slightly tighter gap so they fit better on small screens */
    flex-wrap: nowrap; /* Forces all 5 buttons to stay on the exact same line */
    margin-top: 15px;
    width: 100%;
}

.btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #66fcf1;
    color: #0b0c10;
    text-decoration: none;
    
    /* Responsive sizing rules */
    width: 100%; /* Lets them stretch to fill the available space evenly */
    max-width: 60px; /* Ensures they don't get giant on a laptop screen */
    aspect-ratio: 1 / 1; /* Forces the box to stay a perfect square as it shrinks */
    
    font-size: 1.5rem; 
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.1s ease;
}

/* Clear the old right-margin rule since we no longer have text */
.btn-link i {
    margin-right: 0;
    font-size: 1.5rem;
    vertical-align: middle;
}

/* Optional: Slight hover effect when you mouse over the icon */
.btn-link:hover {
    background-color: #45f3ff;
    transform: scale(1.05); /* Tightly zooms the button out slightly */
}

.contact-section a {
    color: #66fcf1;
    text-decoration: none;
}

/* Quotes Section Styling */
.press-quotes-section .quote-text {
    font-size: 1.3rem; /* Makes the main quote text larger than normal body text */
    font-style: italic; /* Gives it a classic review look */
    color: #ffffff; /* Bright white text to make it pop */
    margin-bottom: 8px;
    line-height: 1.4;
}

.press-quotes-section .quote-source {
    font-size: 1rem;
    color: #66fcf1; /* Uses your bright blue/teal color for the credit line */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Adds vertical separation between multiple quote items */
.quote-item {
    margin-bottom: 30px; /* Pushes the next quote down */
    position: relative;
}

/* Clean up the very last quote item so it doesn't add extra space at the bottom */
.quote-item:last-child {
    margin-bottom: 0;
}

/* Keeps the link looking exactly like the original text */
.quote-source a {
    color: inherit; /* Forces the link to use the exact teal color of its parent */
    text-decoration: none; /* Removes the default browser underline */
}

/* Optional: Subtle effect when a user hovers their mouse over the link */
.quote-source a:hover {
    color: #45f3ff; /* Brightens the teal slightly on hover */
    text-decoration: underline; /* Shows an underline ONLY when hovering */
}

.download-resource a {
    color: #66fcf1;
    text-decoration: none; /* Removes the default browser underline */
}

/* Optional: Subtle effect when a user hovers their mouse over the link */
.download-resource a:hover {
    color: #45f3ff; /* Brightens the teal slightly on hover */
    text-decoration: underline; /* Shows an underline ONLY when hovering */
}

/* Mobile responsive tweak */
@media (max-width: 600px) {
    .epk-header h1 {
        font-size: 2.2rem;
    }
    .epk-section {
        padding: 20px;
    }
}
