/* === FONT IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700;900&display=swap');

/* === BASE & TYPOGRAPHY === */
body {
  background-color: #000000;
  color: #FED606; /* Yellow Ochre */
  font-family: 'Arial', sans-serif;
  margin: 0; /* Remove default body margin */
  padding: 1rem; /* Padding around the content on mobile */
  font-size: 100%; /* Base font size (adjusts with user settings) */
  line-height: 1.6; /* Improved readability */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Red Hat Display', sans-serif;
  color: #FF2390; /* Magenta */
  margin-top: 2em; /* Space above headings */
  margin-bottom: 0.8em; /* Space below headings */
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
  margin-top: 0.5em; /* Less space above main title */
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
  color: #FF6400; /* Orange for variation */
}

p {
  margin-top: 0;
  margin-bottom: 1em; /* Default space after paragraphs */
}

a {
  color: #01ADD3; /* Cyan */
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #FF6400; /* Orange */
  text-decoration: underline; /* Provide hover feedback */
}

ul {
    list-style-type: disc;
    margin-left: 20px; /* Indent list */
    margin-bottom: 1.5em; /* Space after lists */
    padding-left: 1em;
}

li {
    margin-bottom: 0.5em; /* Space between list items */
}

hr {
    border: none;
    height: 1px;
    background-color: #FF2390; /* Magenta line */
    margin: 3em 0; /* Generous spacing around horizontal rules */
}

/* === LAYOUT & SPACING === */

/* Center content on larger screens */
@media (min-width: 992px) { /* Adjust breakpoint as needed */
    body {
        max-width: 960px; /* Max content width */
        margin-left: auto;
        margin-right: auto;
        padding: 2rem; /* More padding on larger screens */
    }
}

/* Spacing for specific sections */
.social-icons,
.contact-info {
    text-align: center;
    margin-bottom: 1.5em;
}

.contact-info p {
    margin-bottom: 0; /* Remove bottom margin if it's just one block */
}

.main-content {
    /* Styles for potential two-column layout on desktop */
}

.album-details,
.sidebar,
.bio-section,
.band-section,
.media-section {
    margin-bottom: 2em; /* Space below major sections */
}

/* --- Two Column Layout (Desktop Example - uncomment and adjust if desired) --- */
/*
@media (min-width: 768px) {
    .main-content {
        display: flex;
        gap: 2rem; // Space between columns
    }
    .album-details {
        flex: 2; // Takes up 2/3rds of space
        order: 1;
    }
    .sidebar {
        flex: 1; // Takes up 1/3rd of space
        order: 2;
    }
}
*/


/* === IMAGES === */
img {
  max-width: 100%; /* Make all images responsive */
  height: auto;    /* Maintain aspect ratio */
  display: block;  /* Remove extra space below images */
  margin-left: auto; /* Center block images by default */
  margin-right: auto;
}

.icons {
  width: 30px;
  height: 30px; /* Use fixed height for uniform icon size */
  display: inline-block; /* Allow icons side-by-side */
  vertical-align: middle;
  margin: 0 5px; /* Space around icons */
}

.album-cover-main {
    max-width: 350px; /* Limit size, but allows shrinking */
    margin-bottom: 1.5em;
}

.album-cover-audio {
    max-width: 200px;
     margin-bottom: 1em;
}

.reels-container {
    text-align: center; /* Center the inline-block reels */
    margin-bottom: 2em;
}

.reel {
  max-width: 180px; /* Smaller max width for reels */
  width: 45%; /* Allow two side-by-side on smaller screens */
  display: inline-block; /* Allow side-by-side */
  vertical-align: top;
  margin: 5px;
  border: 1px solid #333; /* Optional subtle border */
  object-fit: cover; /* Ensure image covers the area */
}

@media (min-width: 576px) {
    .reel {
        width: 30%; /* Allow three side-by-side */
    }
}
@media (min-width: 992px) {
    .reel {
        width: 20%; /* Allow more side-by-side on desktop */
        max-width: 220px;
    }
}

.video-container {
    margin-bottom: 2em;
}

.long-video-thumb {
    max-width: 600px; /* Adjust as needed */
    border: 1px solid #333;
}


/* === COMPONENTS === */

button, .cta-button {
  background-color: #FF2390; /* Magenta */
  color: #000000;
  border: none;
  padding: 12px 24px;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.1rem; /* Slightly smaller */
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block; /* Make button take available width */
  width: 100%; /* Full width */
  max-width: 350px; /* Limit max width */
  margin: 1.5em auto; /* Center button and add space */
  text-align: center;
}

button:hover, .cta-button:hover,
button:focus, .cta-button:focus {
  background-color: #8629AE; /* Purple */
  color: #ffffff;
  transform: scale(1.02); /* Slight grow effect */
}

/* Make the link containing the button behave like a block for centering */
.download-button-link {
    display: block;
    text-align: center;
    text-decoration: none; /* Remove underline from link */
}


.audio-player {
    margin-top: 2em;
    border: 1px solid #444;
    padding: 1em;
    border-radius: 8px;
    background-color: #111; /* Slightly lighter background */
}

.audio-player div { /* Style the labels */
  margin-top: 0.8em;
  margin-bottom: 0.2em;
  font-weight: bold;
  font-size: 0.9rem;
  color: #eee;
}
.audio-player div:first-of-type {
    margin-top: 0; /* No top margin for the first label */
}

.audio-player audio {
  width: 100%; /* Make audio controls take full width */
  margin-bottom: 0.5em;
  display: block;
}

/* === REMOVED UNUSED STYLES === */
/* .container, .section, .card, .fun, @keyframes float, .white-space */