/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

h1, h2, h3 {
    text-align: center;
    color: #FFD700; /* Gold text for headings */
}

/* Header Styles */
header {
    background-color: #111; /* Dark gray for header background */
    padding: 1.5rem 5rem;
    display: flex;
    justify-content: space-between; /* Space between logo and links */
    align-items: center;
}

.header-center h1 {
    margin: 0;
    color: #FFD700; /* Gold color for header text */
    text-align: center;
}

.header-right a {
    margin-left: 10px;
    color: #FFD700; /* Gold color for links */
    text-decoration: none;
    font-size: 1rem;
}

.header-right a:hover {
    color: #367EFF; /* Light blue on hover */
}

#vibes {
    padding: 2rem;
    margin: 2rem auto;
    width: 80%;
    max-width: 900px;
    background-color: #111;
    border-radius: 10px;
    text-align: left; /* Left-align the text */
}

#vibes h2 {
    color: #FFD700; /* Gold for heading */
}

#vibes p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff; /* White text for paragraph */
}

/* Image Container */
.image-container {
    display: flex;
    justify-content: space-between; /* Spaces the images */
    margin-top: 1.5rem;
}

.image-container img {
    width: 48%; /* Each image takes up 48% of the width with space between */
    border-radius: 10px;
}

#story {
    padding: 2rem;
    margin: 2rem auto;
    width: 80%;
    max-width: 900px;
    background-color: #111;
    border-radius: 10px;
    text-align: Left; /* Left-align the text */
}

#story h2 {
    color: #FFD700; /* Gold for heading */
}

#story p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff; /* White text for paragraph */
}

#dj {
    padding: 2rem;
    margin: 2rem auto;
    width: 80%;
    max-width: 900px;
    background-color: #111;
    border-radius: 10px;
    text-align: Right; /* Right-align the text */
}

#dj h2 {
    color: #FFD700; /* Gold for heading */
}

#dj h3 {
	color: #367EFF; /* Light blue for sub heading*/
}

#dj p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff; /* White text for paragraph */
}

/* Section Styles */
section {
    padding: 2rem;
    margin: 2rem auto;
    width: 80%;
    max-width: 900px;
    background-color: #111; /* Dark gray for section background */
    border-radius: 10px;
}

#about p, #donate p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff; /* White text in paragraphs */
}

#playlist ul {
    list-style-type: none;
    padding: 0;
}

#playlist li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    color: #fff; /* White text for playlist */
}

/* Button Styles */
a {
    text-decoration: none;
    color: #FFD700; /* Gold text for links */
}

#donate a {
    background-color: #FFD700; /* Gold button background */
    color: #000; /* Black text on button */
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

/* Center the button */
#donate {
    text-align: center; /* Center the button container */
}

/* Button hover effect */
#donate a:hover {
    background-color: #f4c20d;
    transition: 0.3s;
}

/* Footer Styles */
footer {
    background-color: #111; /* Dark gray footer background */
    padding: 1rem;
    display: flex;
    justify-content: space-between; /* Space items evenly */
    align-items: center; /* Vertically align items */
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
}

.footer-left {
    text-align: left; /* Align logo to the left */
}

.footer-center {
    text-align: center; /* Center image */
}

.footer-right {
    text-align: right; /* Align follow us to the right */
}

.footer-left img.logo {
    width: 150px; /* Adjust logo size */
}

.footer-right img.center-image {
    width: 300px; /* Adjust center image size */
    border-radius: 10px;
}

.footer-center {
    text-align: center;
}

.footer-center h3 {
    margin-bottom: 0.5rem;
    color: #FFD700; /* Gold text for "Follow Us" heading */
}

.footer-center a {
    display: inline-block; /* Keep links on the same line */
    margin: 0 5px;
    color: #FFD700; /* Gold text for links */
    text-decoration: none;
}

.footer-center a:hover {
    color: #367EFF; /* Light blue on hover */
}

.footer-center div {
    text-align: center;
    margin-top: 0.5rem;
}

}
