/* Universal styles for both main page and bio pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
    background: url('heroimage.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
}

/* Header Styling */
header {
    background-color: transparent;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo img {
    max-width: 150px;
    border-radius: 50%; /* Circle crop the logo */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #f5e0c5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f0a500;
}

/* Main Page Specific Styles */
#welcome {
    background-color: transparent;
    margin-bottom: 150px; /* Increased spacing */
    text-align: center;
}

.welcome h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    margin-bottom: 20px;
    color: #f0a500;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.8);
}

.welcome p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f5e0c5;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.6);
}

.cta-button {
    background-color: #f0a500;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ffb84d;
}

/* Artists Section */
.artist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 150px; /* Increased spacing */
}

.artist-card {
    position: relative;
    width: 300px;
    overflow: hidden;
    border-radius: 15px;
    margin: 20px;
    background-color: black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.artist-card img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.artist-card:hover img {
    transform: scale(1.1);
}

.artist-info {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.6);
}

.artist-card:hover .artist-info {
    opacity: 1;
}

/* Embeds Section */
.embeds-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 150px; /* Increased spacing */
}

.embeds-container iframe {
    width: 48%;
    border-radius: 10px;
}

/* Testimonials Section */
#testimonials {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 50px;
    overflow: hidden;
    position: relative;
    margin-bottom: -50px; /* Increased spacing */
}

.testimonial-slider {
    height: 100px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.testimonial {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    animation: scroll 20s linear infinite;
    opacity: 0;
    transform: translateY(100%);
}

.testimonial:nth-child(1) {
    animation-delay: 0s;
    opacity: 1;
}

.testimonial:nth-child(2) {
    animation-delay: 5s;
    opacity: 1;
}

.testimonial:nth-child(3) {
    animation-delay: 10s;
    opacity: 1;
}

.testimonial:nth-child(4) {
    animation-delay: 15s;
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateY(0%);
        opacity: 0;
    }
    10% {
        transform: translateY(0%);
        opacity: 1;
    }
    40% {
        transform: translateY(0%);
        opacity: 1;
    }
    50% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Footer Styles */
footer {
    background-color: transparent;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 0.9rem;
}

/* Bio Pages Specific Styles */
.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 50px 20px;
}

.artist-title {
    font-size: 3rem;
    color: #f0a500;
    margin-bottom: 20px;
}

.artist-image {
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.artist-bio {
    font-size: 1.2rem;
    color: #f5e0c5;
    margin-bottom: 40px;
    max-width: 700px;
}

.releases {
    list-style-type: none;
    padding: 0;
}

.releases li {
    font-size: 1.2rem;
    color: #f5e0c5;
    margin-bottom: 10px;
}

/* Ensure footer is centered on all pages */
footer {
    text-align: center;
    margin-top: 50px;
}

/* Email Style (for contact section) */
.email {
    color: #f5e0c5;
    text-decoration: none;
}

.email:hover {
    color: #f0a500;
}
