﻿/* ==========================================================================
   Global Variables & Base Styles
   ========================================================================== */
:root {
    --pink: #101c44;
    --pink-color: #101c44;
    --dark: #2c3e50;
    --dark-color: #333;
    --lightgrey: #f8f9fa;
    --gold: #ffc107;
    --purple: #9c27b0;
    --teal: #009688;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}
.pink {
    color: #410b0b !important;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ==========================================================================
   Common Components
   ========================================================================== */
/* Overlay Styles */
footer .overlay,
.subscribe,
.page-banner .overlay {
    background-image: linear-gradient(180deg, #242441 0%, #2d2d54 100%);
}

.overlay {
    opacity: 2.0;
}

.pink {
    color: var(--pink) !important;
}

.bg-pink {
    background-color: var(--pink);
}

.box-shadow {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.fixed-top {
    background-color: #252651 !important;
}

.navbar-nav {
    gap: 5px;
}

.nav-item {
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.nav-link {
    position: relative;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.3px;
    padding: 12px 18px !important;
    margin: 0 2px !important;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.08);
}

    .nav-link:hover {
        color: #fff !important;
        background: rgb(29 35 47) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgb(23 20 21 / 40%);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .nav-link:active {
        transform: translateY(0);
    }

/* Active state indicator */
.nav-item.active .nav-link {
    background: var(--bs-form-invalid-border-color);
    color: white !important;
    box-shadow: 0 4px 12px rgb(23 24 61 / 50%);
    /* border-color: white; */
    position: relative;
    font-weight: 700 !important;
}

    .nav-item.active .nav-link::after {
        content: '';
        position: absolute;
        bottom: 7px;
        left: 50%;
        transform: translateX(-50%);
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        animation: pulse 2s infinite;
    }

/* Hover effect for non-active items */
.nav-item:not(.active) .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:not(.active) .nav-link:hover::before {
    width: 70%;
}

/* Focus state for accessibility */
.nav-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.3);
}

/* Mobile menu button styling */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.3);
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Stagger animation for menu items */
.nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-item:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-item:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-item:nth-child(5) {
    animation-delay: 0.5s;
}

.nav-item:nth-child(6) {
    animation-delay: 0.6s;
}

.nav-item:nth-child(7) {
    animation-delay: 0.7s;
}

/* ==========================================================================
   Artist Page Styles
   ========================================================================== */
/* Artist Header Section */
.artist-header {
    padding: 40px 0 20px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.artist-header-content {
    text-align: center;
}

.artist-name {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

    .artist-name:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--pink);
        border-radius: 2px;
    }

.artist-tagline {
    color: var(--pink);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.artist-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 150px;
}

.highlight-icon {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 10px;
}

.highlight-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

/* Artist Profile Section */
.artist-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.artist-image-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid white;
    background: #fff;
}

    .artist-image-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

.artist-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.image-caption {
    text-align: center;
    padding: 10px 5px;
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

/* Mobile Media Section */
.mobile-media-section {
    display: none;
    margin-bottom: 30px;
}

.mobile-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-media-item {
    width: 100%;
}

/* ==========================================================================
   Tab Navigation
   ========================================================================== */
.tab-navigation {
    padding: 40px 0;
    background: white;
}

#single-artist-tabs-navigation {
    margin: 0 0 30px 0;
    position: relative;
}

    #single-artist-tabs-navigation .navigation {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        background: #3131360f;
        border-radius: 15px;
        padding: 6px;
        box-shadow: 0 9px 10px rgb(0 0 0 / 8%);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        #single-artist-tabs-navigation .navigation::-webkit-scrollbar {
            display: none;
        }

        #single-artist-tabs-navigation .navigation li {
            flex: 0 0 auto;
            text-align: center;
            margin: 7px 6px;
        }

            #single-artist-tabs-navigation .navigation li a {
                display: block;
                padding: 12px 16px;
                color: #000;
                text-decoration: none;
                border-radius: 8px;
                transition: all 0.3s ease;
                font-weight: 600;
                font-size: 14px;
                position: relative;
                overflow: hidden;
                background: white;
                border: 1px solid transparent;
                white-space: nowrap;
            }

                #single-artist-tabs-navigation .navigation li a:hover {
                    color: var(--pink);
                    background: rgba(233, 30, 99, 0.05);
                    transform: translateY(-2px);
                    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                }
                #single-artist-tabs-navigation .navigation li a.active {
                    color: white;
                    background: linear-gradient(135deg, var(--pink) 0%, #231d20 100%);
                    border-color: var(--pink);
                    box-shadow: 0 4px 12px rgb(43 24 30 / 30%);
                }

                    #single-artist-tabs-navigation .navigation li a.active:after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 30px;
                        height: 3px;
                        background: white;
                        border-radius: 2px;
                    }

/* Alternative Tab Styles */
.tab-navigation .nav-tabs {
    border-bottom: 3px solid #f0f0f0;
    background-color: #f9f9f9;
    border-radius: 10px 10px 0 0;
    padding: 7px 0px 0;
    display: flex;
}

    .tab-navigation .nav-tabs .nav-link {
        color: #555;
        font-weight: 600;
        border: none;
        padding: 15px 25px;
        position: relative;
        margin: 0 5px;
        background-color: transparent;
        border-radius: 8px 8px 0 0;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

        .tab-navigation .nav-tabs .nav-link.active {
            color: #fff;
            background-color: var(--pink-color);
            border: none;
            box-shadow: 0 -3px 10px rgba(232, 62, 140, 0.3);
            transform: translateY(-2px);
        }

        .tab-navigation .nav-tabs .nav-link:not(.active):hover {
            color: var(--pink-color);
            background-color: rgba(232, 62, 140, 0.1);
            border: none;
        }

.tab-content {
    padding: 1px 0;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-pane.active {
        display: block;
    }

/* Artist Tab Content Layout */
#tab-artist .tab-content-wrapper {
    margin-top: 20px;
}

.artist-tab-layout {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.artist-content-column {
    flex: 1;
    min-width: 0;
}

.artist-media-column {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.section-header {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

    .section-header:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--pink);
        border-radius: 2px;
    }

    .section-header h3 {
        color: var(--dark);
        font-size: 24px;
    }

.card {
    background: white;
    border-radius: 12px;
    padding: 10px 5px 10px 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Compact Content Sections */
.compact-section .compact-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.compact-section .compact-columns-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin: 15px 0;
}

.compact-section .compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .compact-section .compact-list li {
        padding: 6px 9px;
        background: #f8f9fa;
        border-radius: 20px;
        font-size: 13px;
        border: 1px solid #e9ecef;
        transition: all 0.2s ease;
        white-space: nowrap;
        color: #060606;
        font-size: smaller;
    }

        .compact-section .compact-list li:hover {
            background: var(--pink);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
        }

.compact-section .styled-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .compact-section .styled-list li {
        padding: 8px 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.08);
        border-left: 3px solid var(--pink);
        border-right: 1px solid;
        border-bottom: 1px solid;
        border-top: 1px solid;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        font-size: 14px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

        .compact-section .styled-list li:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.12);
        }

    .compact-section .styled-list.checkmark-list li:before {
        content: "✓";
        color: var(--teal);
        font-weight: bold;
        margin-right: 8px;
        flex-shrink: 0;
    }

    .compact-section .styled-list.number-list li:before {
        content: "•";
        color: var(--pink);
        font-weight: bold;
        margin-right: 8px;
        flex-shrink: 0;
    }

.compact-section p {
    line-height: 1.6;
}

    .compact-section p .keyword {
        font-weight: 600;
        padding: 2px 6px;
        border-radius: 4px;
        position: relative;
    }

        .compact-section p .keyword::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--pink);
            opacity: 0.3;
        }

.compact-title {
    color: var(--pink);
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px;
}

/* Biography Content */
.biography-content {
    line-height: 1.8;
    font-size: 16px;
}

    .biography-content p {
        margin-bottom: 20px;
    }

.highlight-section {
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid var(--pink);
}

.vision-statement {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(233, 30, 99, 0.02) 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid var(--pink);
    position: relative;
}

    .vision-statement:before {
        content: "✨";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
    }

    .vision-statement p {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark);
        margin: 0;
    }

/* Performance Grid */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.performance-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .performance-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    }

    .performance-item:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--pink);
    }

    .performance-item h5 {
        color: var(--pink);
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: 600;
    }

    .performance-item .year {
        color: #6c757d;
        font-size: 14px;
        font-weight: 500;
    }

/* Career Timeline */
.timeline {
    position: relative;
    margin: 30px 0;
}

    .timeline:before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--pink);
    }

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 50px;
}

    .timeline-item:before {
        content: '';
        position: absolute;
        left: 15px;
        top: 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--pink);
        border: 3px solid white;
        box-shadow: 0 0 0 3px var(--pink);
    }

.timeline-year {
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 5px;
}

.timeline-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Achievement Timeline */
.achievement-timeline {
    position: relative;
    margin: 30px 0;
    padding-left: 30px;
}

    .achievement-timeline:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--pink);
        border-radius: 2px;
    }

.achievement-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 20px;
}

    .achievement-item:before {
        content: '';
        position: absolute;
        left: -8px;
        top: 5px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--pink);
        border: 3px solid white;
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.3);
    }

.achievement-year {
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 5px;
    font-size: 16px;
}

.achievement-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 3px solid var(--pink);
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #ff9800 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin: 10px 0;
}

/* Music Catalogue */
.music-catalogue {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.music-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .music-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .music-item h4 {
        color: var(--pink);
        margin-bottom: 10px;
        font-size: 18px;
    }

    .music-item p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

/* Discography */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.album-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .album-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.album-cover {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    position: relative;
}

.album-year {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--pink);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.album-info {
    padding: 15px;
}

.album-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.album-producer {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.album-chart {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: var(--pink);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Filmography */
.film-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .film-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.film-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.film-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 18px;
}

.film-year {
    background: var(--pink);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.film-details {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Instrument Skills */
.instrument-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.skill-badge {
    background: rgba(233, 30, 99, 0.1);
    color: var(--pink);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

    .skill-badge:hover {
        background: var(--pink);
        color: white;
        transform: translateY(-2px);
    }

/* Community Section */
.community-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid var(--teal);
}

/* Digital Presence */
.digital-presence {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.digital-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .digital-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    }

    .digital-badge i {
        color: var(--pink);
        font-size: 20px;
    }

    .digital-badge span {
        font-weight: 500;
        color: var(--dark);
    }

/* Social Links */
.social-links-artist {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

    .social-links-artist a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--pink);
        color: white;
        border-radius: 50%;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .social-links-artist a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
        }

/* ==========================================================================
   Media Elements
   ========================================================================== */
/* Video Styling */
.video-preview {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 5px solid white;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16/9;
}

    .video-preview:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease;
}

.video-preview:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 99, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 3px solid white;
}

    .video-play-icon i {
        font-size: 24px;
        color: white;
        margin-left: 5px;
    }

.video-preview:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(233, 30, 99, 1);
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.5);
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--pink);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .video-badge i {
        margin-right: 6px;
    }

.video-info {
    text-align: center;
    padding: 10px 5px 5px;
    margin-top: 8px;
}

    .video-info p {
        color: #666;
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

.video-duration {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: var(--pink);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .video-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    .video-item iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 12px;
    }

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #f8f9fa;
    min-height: 200px;
    cursor: pointer;
}

    .gallery-item.loading {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: all 0.5s ease;
        display: block;
    }

        .gallery-item img.loading {
            opacity: 0;
        }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item.error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    min-height: 250px;
}

.image-error {
    text-align: center;
    padding: 20px;
}

    .image-error i {
        font-size: 2rem;
        color: #dee2e6;
        margin-bottom: 10px;
        display: block;
    }

    .image-error span {
        font-size: 0.9rem;
        color: #6c757d;
    }

/* Gallery Filters */
.gallery-filters {
    padding: 20px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--pink);
    background: white;
    color: var(--pink);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--pink);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgb(20 27 50 / 30%);
    }

/* Media List Styles */
.media-list {
    list-style: none;
    padding: 0;
}

    .media-list li {
        margin-bottom: 10px;
    }

        .media-list li a {
            color: #000;
            padding: 10px 15px;
            display: block;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

            .media-list li a:hover {
                background: rgba(233, 30, 99, 0.05);
                border-color: var(--pink);
                transform: translateX(5px);
            }

            .media-list li a i {
                padding: 10px;
                color: var(--pink);
                width: 40px;
                text-align: center;
            }

/* Technical Specification Table */
.tech-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .tech-spec-table th,
    .tech-spec-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e9ecef;
        font-size: 14px;
    }

    .tech-spec-table th {
        background: linear-gradient(135deg, var(--pink) 0%, #1b3a51 100%);
        color: white;
        font-weight: 600;
        width: 30%;
    }

    .tech-spec-table tr:nth-child(even) {
        background-color: #f8f9fa;
    }

    .tech-spec-table tr:hover {
        background-color: rgba(233, 30, 99, 0.05);
    }

/* ==========================================================================
   Modal & Lightbox Styles
   ========================================================================== */
/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fffffff2;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

    .video-modal.active {
        display: flex;
        opacity: 1;
    }

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding-top: 10px;
    animation: modalSlideIn 0.4s ease-out;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgb(12 12 12);
    border: none;
    color: white;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

    .video-modal-close:hover {
        background: var(--pink);
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
    }

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

    .video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 12px;
    }

.modal-video-info {
    text-align: center;
    color: white;
    margin-top: 20px;
    padding: 0 20px;
}

    .modal-video-info h4 {
        color: #666;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .modal-video-info p {
        opacity: 0.8;
        font-size: 1rem;
        line-height: 1.5;
    }

.modal-video-duration {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #ddd;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

    .lightbox-overlay.active {
        opacity: 1;
    }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    margin-top: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.image-counter {
    font-size: 0.9rem;
    opacity: 0.7;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

    .lightbox-close:hover {
        background: var(--pink);
        transform: scale(1.1);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-nav:hover {
    background: var(--pink);
    transform: translateY(-50%) scale(1.1);
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking-section {
    background: #ffffff;
    position: relative;
}

.booking-tag {
    display: inline-block;
}

.tag {
    background: var(--pink);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.booking-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.booking-wrapper {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

.contact-side, .performance-side {
    flex: 1;
}

.contact-card,
.performance-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .contact-card:hover,
    .performance-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

.card-header {
    background: var(--lightgrey);
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    font-size: 1.2rem;
}

/* Contact Information */
.contact-info {
    padding: 20px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f3f4;
}

.person-avatar {
    width: 48px;
    height: 48px;
    background: var(--pink);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.person-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px 0;
}

.person-role {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
}

.contact-label {
    color: #666;
    font-weight: 500;
    min-width: 60px;
    flex-shrink: 0;
}

.contact-value {
    color: var(--dark);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgb(61 43 49);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    flex: 1;
    line-height: 1.4;
    position: relative;
    transition: all 0.3s ease;
    padding: 2px 0;
}

    .contact-value:hover {
        color: var(--pink);
    }

/* Action Button with Flashing Effect */
.contact-action {
    padding: 0 20px 20px;
    text-align: center;
}

.overlay {
    background-image: linear-gradient(180deg, #242441 0%, #2d2d54 100%);
}

.feature .overlay {
    background-image: linear-gradient(180deg, #262650 0%, #36365d 100%);
}
.feature-lists a:hover i {
    background-color: #f1f1f4;
}
.feature-box i {
    background-color: #000;
}
.btn, .btn1, .btn2 {
    background-color: #1d2330;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pink);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(70 53 119 / 30%);
}

    .book-btn:hover {
        background: #d81b60;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
        color: white;
    }

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.pulse-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #ffeb3b;
    border-radius: 50%;
    animation: blink 1.5s infinite;
    z-index: 3;
    box-shadow: 0 0 10px #ffeb3b;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.book-btn:hover::before {
    left: 100%;
}

.response-time {
    font-size: 0.85rem;
    color: var(--teal);
    margin: 12px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.time-icon {
    font-size: 0.9rem;
}

/* Performance Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 3px;
    border-bottom: 1px solid #f1f3f4;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

    .feature-text strong {
        color: var(--dark);
        font-size: 0.95rem;
    }

    .feature-text span {
        color: #666;
        font-size: 0.85rem;
    }

/* Music Styles */
.music-styles, .event-types {
    padding: 0 20px;
    margin-bottom: 20px;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.style-tag {
    background: #f0f7ff;
    color: var(--pink);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

/* Event Types */
.event-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

    .event-card:hover {
        background: #f1f3f4;
        transform: translateY(-1px);
    }

.event-icon {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.event-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

/* Technical Note */
.tech-note {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin: 20px;
    border: 1px solid #e9ecef;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--dark);
}

.note-icon {
    font-size: 1.1rem;
}

.note-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners {
    padding: 120px 0;
    background-color: #fff;
}

.partner-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
}

.partner-img-box {
    transition: all 0.3s ease;
    height: 100%;
}

    .partner-img-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .partner-img-box img {
        transition: all 0.3s ease;
        border-radius: 8px;
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 1 / 1;
    }

    .partner-img-box:hover img {
        opacity: 1 !important;
    }

.partner-button .btn {
    background-color: var(--pink-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .partner-button .btn:hover {
        background-color: #d81b7e;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
    }

/* ==========================================================================
   Artists Page Specific Styles
   ========================================================================== */
.artists-hero {
    background: linear-gradient(rgba(37, 38, 81, 0.9), rgba(37, 38, 81, 0.8)), url('images/artists/hero-bg.jpg') center/cover no-repeat;
    padding: 100px 0 60px;
    color: white;
    position: relative;
}

.artists-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.artists-grid-section {
    padding: 20px 0;
    background: white;
}

/* Artist Card Styles */
.artist-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

    .artist-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(232, 62, 140, 0.15);
    }

.artist-image {
    height: 450px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .artist-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-image::after {
    content: 'View Artist';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 62, 140, 0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-image::after {
    opacity: 1;
    background: rgba(232, 62, 140, 0.8);
}

.artist-info {
    padding: 25px;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.artist-category {
    color: #101c44;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.artist-link {
    display: inline-block;
    padding: 8px 25px;
    background: #101c44;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #101c44;
}

    .artist-link:hover {
        background: transparent;
        color: #101c44;
    }

/* Filter Styles */
.filter-section {
    padding: 30px 0 0px;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: #101c44;
        color: white;
        border-color: #101c44;
    }

/* CTA Section */
.artists-cta {
    padding: 80px 0;
    background: #36365d;
    color: white;
    text-align: center;
}

    .artists-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color:#fff
    }

.cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: #101c44;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #101c44;
}

    .cta-button:hover {
        background: transparent;
        color: #101c44;
        transform: translateY(-3px);
    }

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    color: #101c44;
    border: 1px solid #dee2e6;
}

    .page-link:hover {
        color: #101c44;
        background-color: #f8f9fa;
        border-color: #dee2e6;
    }

.page-item.active .page-link {
    background-color: #101c44;
    border-color: #101c44;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #101c44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .contact-icon i {
        color: white;
        font-size: 1.5rem;
    }

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 17px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 11px;
}

.contact-person {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .contact-person:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

/* Form Controls */
input[type=text], input[type=email], input[type=number], input[type=search], input[type=password],
input[type=tel], input[type=date], input[type=time], textarea, select {
    background-color: #e0e0ee;
    border: 1px;
    border-radius: 25px;
    padding: 15px 25px;
    color: #000;
    margin-bottom: 14px;
    width: 100%;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
}

    .form-control:focus {
        border-color: #101c44;
        box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25);
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* CAPTCHA styling */
.g-recaptcha {
    margin: 20px 0;
    transform: scale(0.85);
    transform-origin: 0 0;
}

.captcha-error {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
    display: none;
}

.form-check {
    margin: 20px 0;
    padding-left: 35px;
}

.form-check-input {
    margin-left: -35px;
    margin-top: 0.3rem;
}

.form-check-label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ==========================================================================
   Loading and Status Styles
   ========================================================================== */
.loading-text {
    grid-column: 1 / -1;
    padding: 40px;
    color: var(--pink);
    text-align: center;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

.completion-message {
    color: var(--teal);
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.gallery-status {
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
}

/* Placeholder Content */
.placeholder-content {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

    .placeholder-content i {
        font-size: 48px;
        margin-bottom: 20px;
        color: var(--pink);
        opacity: 0.5;
    }

/* ==========================================================================
   Event Detail Styles
   ========================================================================== */
.event-detail {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.event-schedule {
    background-color: #fff;
    border-left: 4px solid #101c44;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sponsor-list {
    list-style-type: none;
    padding-left: 0;
}

    .sponsor-list li {
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
    }

        .sponsor-list li:before {
            content: "•";
            color: #101c44;
            position: absolute;
            left: 0;
        }

.event-gallery {
    margin-top: 30px;
}

.gallery-caption {
    padding: 15px;
    background: white;
}

.event-hero-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

    .event-hero-image .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        border-radius: 10px;
        display: flex;
        align-items: flex-end;
        padding: 30px;
    }

    .event-hero-image h3 {
        color: white;
        font-size: 2.5rem;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .artist-media-column {
        flex: 0 0 280px;
    }
}

@media (max-width: 1100px) {
    .slicknav_nav {
        border-radius: 7px !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 992px) {
    .page-banner .page-title {
        padding: 16px 0 !important;
    }

    .artist-media-column {
        display: none;
    }

    .mobile-media-section {
        display: block;
    }

    .artist-tab-layout {
        flex-direction: column;
        gap: 20px;
    }

    .artist-highlights {
        flex-wrap: wrap;
    }

    .highlight-item {
        min-width: 120px;
        flex: 1;
    }

    .artist-image {
        height: auto;
    }

    .booking-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .booking-title {
        font-size: 1.6rem;
    }

    .partner-img-box img {
        height: 400px;
        aspect-ratio: 1 / 1;
    }

    .navbar-nav {
        padding: 10px 0;
        background: rgba(44, 62, 80, 0.95);
        border-radius: 10px;
        margin-top: 10px;
    }

    .nav-link {
        padding: 10px 15px !important;
        margin: 2px 0 !important;
        text-align: center;
        display: block;
        border-radius: 6px;
    }

    .nav-item.active .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    #single-artist-tabs-navigation .navigation {
        padding: 6px;
    }

        #single-artist-tabs-navigation .navigation li a {
            padding: 10px 14px;
            font-size: 13px;
        }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .compact-section .compact-list {
        gap: 6px;
    }

        .compact-section .compact-list li {
            padding: 4px 4px;
            font-size: 12px;
        }

    .compact-section .styled-list {
        gap: 8px;
    }

        .compact-section .styled-list li {
            padding: 6px 12px;
            font-size: 13px;
        }

    .video-modal-content {
        width: 100%;
        padding-top: 10px;
    }

    .video-play-icon {
        width: 50px;
        height: 50px;
    }

        .video-play-icon i {
            font-size: 20px;
        }

    .video-modal-close {
        top: -40px;
        right: 10px;
    }

    .modal-video-info h4 {
        font-size: 1.3rem;
    }

    .lightbox-nav {
        position: fixed;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .booking-section {
        padding: 2rem 0;
    }

    .booking-title {
        font-size: 1.4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-title h2 {
        font-size: 2rem;
    }

    .partners {
        padding: 60px 0;
    }

    .border-sm-0 {
        border-right: none !important;
    }

    .w-40 {
        width: 70% !important;
    }

    .tab-navigation .nav-tabs {
        flex-direction: row;
        padding: 10px;
    }

        .tab-navigation .nav-tabs .nav-link {
            margin: 5px 0;
            border-radius: 8px;
            text-align: center;
        }

            .tab-navigation .nav-tabs .nav-link.active {
                border-radius: 8px;
            }

    .tab-content {
        padding: 0px 6px;
    }

    .partner-img-box img {
        height: 400px;
        aspect-ratio: 1 / 1;
    }

    .artists-hero {
        padding: 80px 0 40px;
    }

    .filter-buttons {
        gap: 5px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .artist-card {
        margin-bottom: 20px;
    }

    .artist-image {
        height: auto;
    }

    /* Compact section responsive */
    .compact-section .compact-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 10px;
    }

        .compact-section .compact-list li {
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
            font-size: 13px;
            padding: 8px 10px;
            text-align: center;
            border-radius: 12px;
        }

    .compact-section .compact-columns,
    .compact-section .compact-columns-alt {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .artist-media-column {
        max-width: 100%;
    }

    .navbar-brand img {
        width: 81% !important;
        align-items: start;
    }

    .artist-name {
        font-size: 2rem;
    }

    .artist-tagline {
        font-size: 1.1rem;
    }

    .artist-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        width: 100%;
        max-width: 250px;
    }

    .mobile-media-grid {
        gap: 20px;
    }

    .contact-line {
        flex-direction: column;
        gap: 2px;
    }

    .contact-label {
        min-width: auto;
    }

    .features-grid {
        gap: 10px;
    }

    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-header {
        padding: 14px 16px;
    }

    .contact-info, .features-grid {
        padding: 16px;
    }

    .compact-section .compact-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

        .compact-section .compact-list li {
            font-size: 12.5px;
            padding: 7px 9px;
            line-height: 1.3;
        }

    .compact-section .compact-columns,
    .compact-section .compact-columns-alt {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }

    .artist-image {
        height: auto;
    }

    .artist-info {
        padding: 12px;
    }

    .artist-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #single-artist-tabs-navigation .navigation li a {
        padding: 8px 14px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .gallery-item img {
        height: 300px;
    }

    .compact-section .compact-columns {
        grid-template-columns: 1fr;
    }

    .compact-section .compact-list {
        justify-content: flex-start;
    }

    .compact-section .styled-list {
        flex-direction: column;
        gap: 6px;
    }

        .compact-section .styled-list li {
            width: 100%;
        }

    .video-play-icon {
        width: 45px;
        height: 45px;
    }

        .video-play-icon i {
            font-size: 18px;
        }

    .video-badge {
        font-size: 11px;
        padding: 6px 10px;
        top: 10px;
        right: 10px;
    }

    .mobile-media-section {
        margin-bottom: 20px;
    }

    .booking-title {
        font-size: 1.3rem;
    }

    .person-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .person-name {
        font-size: 1rem;
    }

    .event-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .style-tags {
        gap: 6px;
    }

    .style-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .partner-title h2 {
        font-size: 1.75rem;
    }

    .w-40 {
        width: 80% !important;
    }

    .partner-img-box img {
        height: 350px;
        aspect-ratio: 1 / 1;
    }

    .navbar-brand img {
        width: 148% !important;
        align-items: start;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .artist-image {
        height: auto;
    }

    .artist-info {
        padding: 15px;
    }

    .artist-name {
        font-size: 1.2rem;
    }

    .artist-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .artist-link {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .artist-category {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
}

/* For very small screens, switch to 1 column */
@media (max-width: 360px) {
    .compact-section .compact-list,
    .compact-section .compact-columns,
    .compact-section .compact-columns-alt {
        grid-template-columns: 1fr;
    }
}

/* Section padding */
section {
    padding: 74px 0;
}