:root {
            /* New primary color inspired by DRC (blue), Tanzania (green), Uganda (yellow), Kenya (red) */
            --primary: #1e5f8c;  /* Rich blue-green with red/yellow undertones */
            --secondary: #2d3748;
            --accent: #e8b923;  /* Gold accent from Uganda flag */
            --light: #f8f9fa;
            --dark: #212529;
            --energy: #e63946;   /* Vibrant red from Kenya for highlights */
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--secondary);
            overflow-x: hidden;
            background-color: #fafafa;
            font-size: 0.95rem;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .navbar {
            transition: all 0.3s ease;
            padding: 12px 0;
            background-color: rgba(33, 37, 41, 0.9);
        }
        
        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.98) !important;
            padding: 8px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--accent) !important;
            font-size: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            color: white !important;
            font-size: 0.9rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .hero-section {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/king_willie.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            padding-top: 70px;
        }
        
        .hero-content {
            z-index: 2;
            padding: 0 15px;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            color: var(--accent);
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 25px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
            font-weight: 300;
            line-height: 1.4;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .btn-primary:hover {
            background-color: #164770;
            border-color: #164770;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: var(--dark);
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .btn-accent:hover {
            background-color: #d6a920;
            border-color: #d6a920;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: var(--dark);
        }
        
        .section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            color: var(--primary);
            line-height: 1.3;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: var(--accent);
            bottom: -8px;
            left: 0;
        }
        
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            border-top: 4px solid var(--accent);
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .card-img-top {
            height: 160px;
            object-fit: cover;
        }
        
        .card-body {
            padding: 20px;
        }
        
        .card-title {
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .card-text {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .service-icon {
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .about-img {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            max-width: 100%;
            height: auto;
            border: 4px solid var(--accent);
            margin-bottom: 25px;
        }
        
        .testimonial-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            border-left: 4px solid var(--accent);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        .contact-info {
            margin-bottom: 25px;
            text-align: center;
        }
        
        .contact-icon {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        
        .form-control {
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            font-size: 0.9rem;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(30, 95, 140, 0.25);
        }
        
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0 15px;
            background: linear-gradient(to right, var(--primary), var(--dark));
            font-size: 0.9rem;
        }
        
        .social-icon {
            font-size: 1.3rem;
            color: white;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            color: var(--accent);
            transform: translateY(-5px);
        }
        
        .music-player {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            border-top: 4px solid var(--accent);
        }
        
        .track {
            display: flex;
            align-items: center;
            padding: 12px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .track:hover {
            background-color: #f9f9f9;
            transform: translateX(3px);
        }
        
        .track-info {
            flex: 1;
            padding-left: 12px;
        }
        
        .track-title {
            font-weight: 600;
            margin-bottom: 3px;
            font-size: 0.95rem;
        }
        
        .track-duration {
            color: #777;
            font-size: 0.85rem;
        }
        
        .play-btn {
            background-color: var(--primary);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .play-btn:hover {
            background-color: var(--energy);
            transform: scale(1.1);
        }
        
        .progress-container {
            width: 100%;
            height: 5px;
            background: #eee;
            border-radius: 3px;
            margin: 15px 0;
            cursor: pointer;
        }
        
        .progress-bar {
            height: 100%;
            background: var(--primary);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        .player-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 15px;
        }
        
        .control-btn {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--secondary);
            margin: 0 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .control-btn:hover {
            color: var(--energy);
            transform: scale(1.1);
        }
        
        .main-play-btn {
            font-size: 1.7rem;
        }
        
        .current-time, .total-time {
            font-size: 0.85rem;
            color: #777;
        }
        
        .flag-colors {
            height: 6px;
            background: linear-gradient(to right, #007fff, #1e5f8c, #00a651, #fcd116, #ce1126);
            margin-bottom: 20px;
            border-radius: 3px;
        }
        
        .energy-spot {
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: var(--energy);
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.3;
            z-index: 1;
        }
        
        .artist-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--energy);
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .performance-highlight {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        
        .performance-highlight:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
            z-index: 1;
        }
        
        .performance-text {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 15px;
            color: white;
            z-index: 2;
            width: 100%;
        }
        
        .performance-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .performance-text p {
            font-size: 0.85rem;
            margin-bottom: 0;
        }
        
        /* Mobile-specific adjustments */
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section {
                padding: 50px 0;
            }
            
            .section-title {
                font-size: 1.7rem;
                margin-bottom: 25px;
            }
            
            .btn-primary, .btn-accent {
                padding: 8px 16px;
                font-size: 0.85rem;
                display: block;
                width: 100%;
                margin-bottom: 10px;
            }
            
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .music-player {
                padding: 15px;
            }
            
            .track {
                padding: 10px;
            }
            
            .player-controls {
                margin-top: 12px;
            }
            
            .control-btn {
                margin: 0 10px;
                font-size: 1.1rem;
            }
            
            .main-play-btn {
                font-size: 1.5rem;
            }
            
            .about-img {
                margin-bottom: 20px;
            }
            
            .footer {
                padding: 30px 0 10px;
            }
            
            .social-icon {
                font-size: 1.1rem;
                margin: 0 6px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 80vh;
                text-align: center;
            }
            
            .hero-content {
                padding-top: 30px;
            }
            
            .flag-colors {
                margin-left: auto;
                margin-right: auto;
                width: 80%;
            }
            
            .btn-primary, .btn-accent {
                display: inline-block;
                width: auto;
                margin-right: 10px;
                margin-bottom: 10px;
            }
            
            .thumbnail-link {
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.3s;
}
.thumbnail-link:hover {
  transform: scale(1.02);
}
.play-icon {
  pointer-events: none;
}

        }
        
        /* Shop Styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.offcanvas {
    width: 400px;
    max-width: 90%;
}

.cart-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-count {
    font-size: 0.7rem;
}

.empty-cart-message {
    opacity: 0.6;
}

/* Checkout Styles */
.checkout-items .list-group-item {
    padding: 0.75rem 0;
}

.payment-details {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .product-card .card-img-top {
        height: 200px;
    }
    
    .offcanvas {
        width: 350px;
    }
}

/* About Section Styles */
#about .card {
    transition: transform 0.3s ease;
    border-radius: 0.5rem !important;
}

#about .card:hover {
    transform: translateY(-5px);
}

#about .object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    #about .card img {
        height: 250px;
    }
    
    #about .card-body {
        padding: 1.5rem !important;
    }
    
    #about .mission-img {
        margin-bottom: 1.5rem;
    }
}

/* Creative About Section Styles */
#about .section-title {
    letter-spacing: 1px;
}

.mt-6 {
    margin-top: 5rem;
}

/* Animation for founder cards */
[data-aos="fade-right"] .rounded-4,
[data-aos="fade-left"] .rounded-4 {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

[data-aos="fade-right"].aos-animate .rounded-4 {
    transform: perspective(1000px) rotateY(-10deg);
}

[data-aos="fade-left"].aos-animate .rounded-4 {
    transform: perspective(1000px) rotateY(10deg);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #about .position-absolute.start-0.w-100 {
        display: none;
    }
    
    #about .col-lg-5.pe-lg-5 {
        padding-right: 1rem !important;
        text-align: left !important;
    }
    
    #about .col-lg-5.ps-lg-5 {
        padding-left: 1rem !important;
    }
    
    #about .bg-white.position-relative {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}
/* Artist Spotlight Styles */
.artist-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .artist-card img {
        border-radius: 0.3rem 0.3rem 0 0 !important;
        height: 250px;
    }
    
    .artist-card .col-md-7 {
        padding: 1.5rem !important;
    }
}

/* Full-Page Hero Styles */
.event-hero {
  position: relative;
  min-height: 100vh;
}

.vh-100 {
  height: 100vh;
}

.z-index-1 {
  z-index: 1;
}

/* Animation for scroll arrow */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-20px);}
  60% {transform: translateY(-10px);}
}

/* Ensure content is centered properly */
.event-hero .container {
  padding-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .event-hero h1 {
    font-size: 2.5rem;
  }
  
  .event-hero .lead {
    font-size: 1.25rem;
  }
}