/* ===== CSS Variables ===== */
:root {
    --primary: #FF6B35;
    --secondary: #1A1A2E;
    --accent: #FFD166;
    --light: #F8F9FA;
    --dark: #0F0F1E;
    --text: #333333;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
    padding-top: 76px; /* For fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comic Neue', cursive;
    font-weight: 900;
    color: var(--secondary);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ===== Navbar ===== */
.navbar {
    background-color: var(--secondary);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent) !important;
    display: flex;
    align-items: center;
}

.brand-text {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--accent) !important;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.9)), 
                url('https://images.unsplash.com/photo-1492684223066-e9e2a9ddea98?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero-image {
    position: relative;
    height: 300px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: var(--shadow);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 0.5s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 1s;
}

.floating-icon:nth-child(4) {
    top: 30%;
    right: 40%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

/* ===== Category Cards ===== */
.category-card {
    display: block;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text);
    opacity: 0.8;
}

/* ===== Artist Spotlight ===== */
.spotlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.spotlight-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.artist-title {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.artist-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.artist-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
}

/* ===== Update Cards ===== */
.update-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 5px solid var(--primary);
}

.update-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-content h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.update-content p {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.update-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.update-link:hover {
    color: var(--secondary);
    gap: 1rem;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a4a 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Artist Cards ===== */
.artist-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.artist-image {
    height: 250px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-info {
    padding: 1.5rem;
}

.artist-name {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.artist-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.artist-bio {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.artist-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== Join CTA ===== */
.join-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c66 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 2rem;
}

.cta-info p {
    margin: 0;
    font-size: 1.1rem;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

/* ===== FAQ ===== */
.faq {
    background: var(--light);
}

.accordion-button {
    font-weight: 600;
    background: white;
    border: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-heading {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-about {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.artist-contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.artist-contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===== Showcase Pages ===== */
.showcase-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a4a 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.showcase-content {
    padding: 4rem 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.media-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.media-preview {
    width: 100%;
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.media-info {
    padding: 1.5rem;
}

.media-title {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.media-artist {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.media-description {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.media-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.media-link:hover {
    gap: 1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .artist-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    body {
        padding-top: 66px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}
/* ===== New Feature Cards ===== */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    color: var(--primary);
}

/* ===== Quote Cards ===== */
.quote-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--primary);
}

.quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.quote-author {
    font-weight: 600;
    color: var(--primary);
    text-align: right;
}

/* ===== Section Subtitles ===== */
.section-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

/* ===== Why Choose Section ===== */
.why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ===== More Floating Icons ===== */
.floating-icon:nth-child(5) {
    bottom: 40%;
    right: 10%;
    animation-delay: 0.2s;
    background: var(--accent);
}

.floating-icon:nth-child(6) {
    top: 10%;
    right: 30%;
    animation-delay: 0.8s;
    background: #2D46B9;
}

/* ===== Responsive Grid for Categories ===== */
@media (max-width: 768px) {
    .category-card {
        margin-bottom: 1.5rem;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== Statistics Section ===== */
.statistics {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a4a 100%);
    color: white;
}

.stat-circle {
    padding: 2rem;
    margin: 1rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive adjustments for statistics */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-circle {
        padding: 1.5rem;
    }
}
/* ===== Origin Cards ===== */
.origin-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.origin-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a4a 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.origin-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.origin-content {
    padding: 1.5rem;
}

.origin-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.origin-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.origin-content li:before {
    content: "🎵";
    position: absolute;
    left: 0;
}

.origin-content li:last-child {
    border-bottom: none;
}

/* ===== Horizontal Artist Cards ===== */
.artist-card .row {
    height: 100%;
}

.artist-card .artist-image {
    height: 100%;
    min-height: 200px;
}

.artist-card .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card .artist-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== Custom Icon Colors ===== */
.category-icon[style*="background: linear-gradient(45deg, #F4B400, #FFD700)"] {
    color: white !important;
}

.category-icon[style*="background: linear-gradient(45deg, #0F9D58, #34A853)"] {
    color: white !important;
}

/* ===== Music Page Specific ===== */
.media-preview[style*="background: linear-gradient(45deg, #F4B400, #FFD700)"] i {
    color: white;
}

.media-preview[style*="background: linear-gradient(45deg, #0F9D58, #34A853)"] i {
    color: white;
}

/* Active navigation styles */
.navbar .nav-link.active,
.navbar .dropdown-item.active {
    color: #ffd700 !important; /* Gold color for active state */
    font-weight: bold;
    position: relative;
}

/* Add underline effect for nav links */
.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #ffd700;
    border-radius: 2px;
}

/* Style for dropdown items */
.navbar .dropdown-item.active {
    background-color: rgba(255, 215, 0, 0.1);
}

/* Hover effects */
.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
    color: #ffd700 !important;
    transition: color 0.3s ease;
}

/* Ensure dropdown toggle shows active state */
.navbar .nav-link.dropdown-toggle.active {
    color: #ffd700 !important;
}

/* Brand icon styling */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    color: #ffd700; /* Gold color */
}

/* Fallback if Font Awesome fails */
.brand-icon i:before {
    content: "👑"; /* Emoji crown as fallback */
    font-family: "Segoe UI", "Arial", sans-serif;
    font-style: normal;
}

/* If Font Awesome loads, override the fallback */
.wf-loading .brand-icon i:before,
.wf-active .brand-icon i:before {
    content: "\f521"; /* Font Awesome crown unicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Audio Links Styling */
.audio-links .btn {
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
}

.audio-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Platform-specific hover effects */
.audio-links .btn-outline-warning:hover {
    background: linear-gradient(135deg, #FF8C00, #FF4500);
    color: white;
    border-color: transparent;
}

.audio-links .btn-outline-danger:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.audio-links .btn-outline-info:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}
