/* Reset & Base */
body {
    background-color: #e50914; /* Dominant rose red */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.85); /* Light black overlay */
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
}
header h1 {
    font-weight: bold;
    color: #fff;
}
header nav a {
    color: #f8f9fa;
    transition: color 0.3s ease;
}
header nav a:hover {
    color: #ffe2e2; /* Soft red-pink hover */
}

/* Hero Section */
section.bg-primary {
    background: linear-gradient(145deg, #e50914, #c4000e); /* Rose-red gradient */
    padding: 6rem 1rem;
    background-size: cover;
    background-position: center;
}
section.bg-primary h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}
section.bg-primary .btn {
    font-weight: 600;
    border-radius: 25px;
    background-color: #fff;
    color: #e50914;
    padding: 12px 28px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
section.bg-primary .btn:hover {
    background-color: #ffe2e2;
    color: #c4000e;
}

/* About Section */
section.p-5 {
    background-color: #fdd2d2; /* Light rose background */
    color: #111;
}

/* Artist Showcase */
section.bg-light {
    background-color: #ffeaea; /* Soft warm background */
    padding: 4rem 1rem;
}
.card {
    background-color: #fff;
    border: 2px solid #e50914;
    color: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}
.card img {
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #e50914;
}

/* Cultural Section */
section.text-center {
    background-color: #fce6e6; /* Lighter red background */
    padding: 4rem 1rem;
    color: #111;
}

/* Footer */
footer {
    background-color: #c4000e; /* Deeper red */
    font-size: 0.9rem;
    color: #ffe2e2;
}

/* Netflix-style Horizontal Scroll */
.artist-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
}
.artist-carousel::-webkit-scrollbar {
    height: 8px;
}
.artist-carousel::-webkit-scrollbar-thumb {
    background: #c4000e;
    border-radius: 10px;
}
