/* ========================================
   MUSICIAN ONE-PAGE WEBSITE STYLES
   Dark Theme with Elegant Typography
   ======================================== */

:root {
    --primary-color: #c9a962;
    --primary-hover: #b8973f;
    --bg-dark: #1a1a1a;
    --bg-darker: #121212;
    --bg-black: #0a0a0a;
    --bg-light: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #9a9a9a;
    --text-muted-dark: #666666;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    
    /* Section background variants - alternating for visual distinction */
    --section-bg-primary: #0a0a0a;  /* Near black */
    --section-bg-alt: #12121a;      /* Slightly lighter with subtle purple tint */
    --section-bg-accent: #1a1a28;
}

/* ========================================
   BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* ========================================
   CONTACT TOP BAR
   ======================================== */
.contact-top-bar {
    background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: var(--primary-color);
}

.top-bar-item i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

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

.top-bar-social-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.top-bar-social-link:hover {
    color: var(--primary-color);
}

/* Adjust navbar position when top bar is present */
body.has-top-bar #mainNav {
    top: 36px;
}

body.has-top-bar #mainNav.navbar-scrolled {
    top: 0;
}

body.has-top-bar.scrolled .contact-top-bar {
    transform: translateY(-100%);
}

/* Mobile responsiveness for top bar */
@media (max-width: 768px) {
    .contact-top-bar {
        padding: 6px 0;
        font-size: 0.7rem;
    }
    
    .top-bar-contact {
        gap: 0.75rem;
    }
    
    .top-bar-item span {
        display: none;
    }
    
    .top-bar-item i {
        font-size: 0.9rem;
    }
    
    .top-bar-social {
        gap: 0.75rem;
    }
    
    body.has-top-bar #mainNav {
        top: 32px;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
#mainNav {
    background: rgba(10, 10, 10, 0.9);
    transition: all 0.3s ease;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

#mainNav.navbar-scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Desktop navbar content */
.navbar-content {
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light) !important;
    padding: 0 20px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Secondary Left Logo - Pinned far left, synced with navbar via JS */
.navbar-left-logo {
    position: fixed;
    left: 15px;
    z-index: 1031;
    display: flex;
    align-items: center;
    transition: top 0.3s ease, height 0.3s ease;
}

.navbar-left-logo .left-logo-img {
    width: auto;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
}

.navbar-left-logo:hover .left-logo-img {
    opacity: 0.85;
}

.navbar-logo {
    max-height: var(--logo-max-height, 50px);
    width: auto;
    transition: max-height 0.3s ease;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
}

#mainNav.navbar-scrolled .navbar-logo {
    max-height: calc(var(--logo-max-height, 50px) * 0.7);
}

.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left {
    justify-content: flex-end;
    flex: 1;
}

.nav-right {
    justify-content: flex-start;
    flex: 1;
}

/* Left Layout (Logo on left, menu on right) */
#mainNav[data-layout="left"] .navbar-brand {
    padding-left: 0;
    margin-right: 150px;
}

#mainNav[data-layout="left"] .navbar-content {
    justify-content: flex-end;
}

#mainNav[data-layout="left"] .nav-right {
    flex: none;
    gap: 5px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 15px !important;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Desktop dropdown hover - show on hover instead of click */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        border-radius: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        padding: 0.5rem 0;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: var(--primary-color);
        color: #fff;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    #mainNav {
        padding: 10px 0;
    }
    
    #mainNav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    /* Ensure logo comes first visually */
    #mainNav .navbar-brand {
        order: 1 !important;
        flex: 1 1 auto;
        margin: 0;
    }
    
    .navbar-toggler {
        border: none;
        padding: 8px 12px;
        z-index: 1001;
        order: 2 !important;
        margin-left: auto;
        flex: 0 0 auto;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    /* Limit logo size on mobile so hamburger fits */
    #mainNav .navbar-logo {
        max-height: 40px !important;
    }
    
    .mobile-navbar-brand {
        flex: 0 0 auto;
        text-align: left;
        order: 1;
    }
    
    .mobile-navbar-brand .navbar-logo {
        max-height: 40px;
    }
    
    /* Left layout on mobile - logo on left, hamburger on right */
    #mainNav[data-layout="left"] .navbar-brand {
        order: 1;
        margin-left: 0;
        flex: 0 0 auto;
    }
}

/* ========================================
   MOBILE DRAWER NAVIGATION
   ======================================== */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: var(--bg-black);
    z-index: 1050;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-logo {
    max-height: 60px;
    max-width: 200px;
    width: auto;
}

.drawer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.drawer-close:hover {
    opacity: 1;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.drawer-link {
    display: block;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--primary-color);
    background: rgba(201, 169, 98, 0.1);
    border-left-color: var(--primary-color);
}

/* ========================================
   HERO SECTION
   ======================================== */
/* Offset for pages starting with non-hero sections */
body > section:first-of-type:not(.hero-section),
main > section:first-of-type:not(.hero-section),
.section-padding:first-of-type:not(.hero-section ~ .section-padding) {
    padding-top: 120px; /* Account for fixed navbar */
}

.hero-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 500px;
    max-height: 900px;
    height: 80vh;
    background-color: var(--bg-darker);
    overflow: hidden;
}

/* Hero Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Individual Hero Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Zoom Effect - applied when zoom is enabled */
.hero-zoom-enabled .hero-slide {
    transition: opacity 1.5s ease-in-out, transform 22.5s ease-out;
    transform-origin: center center;
}

.hero-zoom-enabled .hero-slide.active {
    /* Active slide visible, zoom controlled by .zooming class */
}

.hero-zoom-enabled .hero-slide.zooming {
    transform: scale(1.15);
}

/* Legacy hero-bg support */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    transition: opacity 0.3s ease;
}

.hero-content.content-transitioning {
    opacity: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    border: 2px solid var(--primary-color, #c9a962);
    background: transparent;
    color: var(--primary-color, #c9a962);
    padding: 12px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm, 8px);
}

.btn-hero:hover {
    background: var(--primary-color, #c9a962);
    border-color: var(--primary-color, #c9a962);
    color: var(--bg-dark, #1a1a1a);
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        max-height: 600px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding-bottom: 50px;
    }
}

/* ========================================
   HERO VIDEO SECTION
   ======================================== */
.hero-video-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
    max-height: none;
    height: 100vh;
    background-color: var(--bg-darker);
    overflow: hidden;
}

/* Poster Image - shows while video loads */
.hero-video-poster {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 0.8s ease-out;
}

.hero-video-poster.video-loaded {
    opacity: 0;
    pointer-events: none;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* Content */
.hero-video-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.hero-video-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
    color: var(--text-primary, #ffffff);
    line-height: 1.2;
}

.hero-video-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.9;
    color: var(--text-secondary, #e0e0e0);
}

.text-left .hero-video-subtitle {
    margin-left: 0;
}

.text-right .hero-video-subtitle {
    margin-right: 0;
}

.btn-hero-video {
    display: inline-block;
    border: 2px solid var(--primary-color, #c9a962);
    background: transparent;
    color: var(--primary-color, #c9a962);
    padding: 15px 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm, 8px);
}

.btn-hero-video:hover {
    background: var(--primary-color, #c9a962);
    border-color: var(--primary-color, #c9a962);
    color: var(--bg-dark, #1a1a1a);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3);
}

/* Scroll Indicator */
.hero-video-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-primary, #ffffff);
    opacity: 0.7;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-video-scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Mobile Responsive - Video hero takes top half on mobile */
@media (max-width: 768px) {
    .hero-video-section {
        min-height: 50vh;
        height: 56.25vw; /* 16:9 aspect ratio */
        max-height: 60vh;
    }
    
    .hero-video-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .hero-video-subtitle {
        font-size: 1rem;
    }
    
    .hero-video-content {
        padding: 15px;
    }
    
    .btn-hero-video {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
    
    .hero-video-scroll-indicator {
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-video-section {
        min-height: 45vh;
    }
    
    .hero-video-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .hero-video-subtitle {
        font-size: 0.9rem;
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-padding {
    padding: 100px 0;
}

/* Section with background image */
.section-has-bg {
    position: relative;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-bg-image.bg-pos-top {
    background-position: center top;
}

.section-bg-image.bg-pos-center {
    background-position: center center;
}

.section-bg-image.bg-pos-bottom {
    background-position: center bottom;
}

.section-bg-image.bg-size-cover {
    background-size: cover;
}

.section-bg-image.bg-size-contain {
    background-size: contain;
}

.section-bg-image.bg-size-auto {
    background-size: auto;
}

.section-bg-image.bg-attach-scroll {
    background-attachment: scroll;
}

.section-bg-image.bg-attach-fixed {
    background-attachment: fixed;
}

/* Disable parallax on mobile (causes issues) */
@media (max-width: 768px) {
    .section-bg-image.bg-attach-fixed {
        background-attachment: scroll;
    }
}

.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Sections with background images should have transparent bg to show the image */
.section-has-bg {
    background-color: transparent !important;
}

.section-has-bg > .container,
.section-has-bg > .container-fluid {
    position: relative;
    z-index: 2;
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.bg-black {
    background-color: var(--bg-black) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 30px;
}

/* Section background alternating variants */
.section-bg-primary {
    background-color: var(--section-bg-primary) !important;
}

.section-bg-alt {
    background-color: var(--section-bg-alt) !important;
}

.section-bg-accent {
    background-color: var(--section-bg-accent) !important;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.about-content-box {
    padding-left: 20px;
}

.about-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 0.5em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text ul,
.about-text ol {
    margin: 0.5em 0;
    padding-left: 1.5em;
}

.about-text li {
    margin-bottom: 0.25em;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-masonry {
    column-count: 5;
    column-gap: 4px;
}

.gallery-item-wrapper {
    break-inside: avoid;
    margin-bottom: 4px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: #fff;
    padding: 10px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6);
}

/* Gallery responsive */
@media (max-width: 1400px) {
    .gallery-masonry {
        column-count: 4;
    }
}

@media (max-width: 1200px) {
    .gallery-masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        column-count: 2;
        column-gap: 2px;
    }
    .gallery-item-wrapper {
        margin-bottom: 2px;
    }
    .gallery-caption {
        font-size: 0.6rem;
        padding: 8px 10px;
    }
}

/* ========================================
   PACKAGES/SERVICES SECTION
   ======================================== */
.packages-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
    color: var(--text-light);
}

.packages-header {
    margin-bottom: 20px;
}

.packages-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.packages-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: var(--bg-dark);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.package-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.05) 100%);
}

.package-icon-wrapper i {
    font-size: 4rem;
    color: var(--accent);
    transition: transform 0.4s ease, color 0.3s ease;
}

.package-card:hover .package-icon-wrapper i {
    transform: scale(1.15);
}

.package-card.no-image .package-image {
    height: 180px;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-content {
    padding: 30px 25px;
    text-align: left;
}

.package-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

.package-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.package-price {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .packages-title {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-image {
        height: 200px;
    }
    
    .package-content {
        padding: 25px 20px;
    }
}

/* ========================================
   BAND MEMBERS SECTION
   ======================================== */
.band-member-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.band-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.member-photo-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.band-member-card:hover .member-photo {
    transform: scale(1.1);
}

.member-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-muted);
}

.member-info {
    padding-top: 10px;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.member-role {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.member-bio {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.member-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .member-photo-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
}

/* ========================================
   PACKAGES - PRICING TABLE STYLE
   ======================================== */
.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-featured {
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    padding: 30px 25px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-amount {
    margin-top: 10px;
}

.pricing-amount .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-body {
    padding: 25px;
    flex-grow: 1;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

.pricing-footer {
    padding: 20px 25px 30px;
}

/* ========================================
   PACKAGES - LIST/ACCORDION STYLE
   ======================================== */
.packages-list-header {
    padding-right: 30px;
}

.packages-list-intro {
    color: var(--text-muted);
    line-height: 1.8;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-list-item {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.package-list-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.package-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.package-list-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.package-list-title {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.package-list-title h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.package-list-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.package-list-toggle {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.package-list-header[aria-expanded="true"] .package-list-toggle {
    transform: rotate(180deg);
}

.package-list-content {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

.package-list-content p {
    margin-bottom: 15px;
}

.package-list-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.package-list-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.package-list-features li i {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .packages-list-header {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .package-list-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .package-list-features {
        grid-template-columns: 1fr;
    }
}

/* Legacy service card styles (for admin/other uses) */
.service-card {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-darker);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.85);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-card:hover .service-description {
    opacity: 1;
    transform: translateY(0);
}
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-playlist {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
}

.video-playlist::-webkit-scrollbar {
    width: 6px;
}

.video-playlist::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.video-playlist::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.video-thumbnail {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    margin-bottom: 10px;
    background: #1a1a1a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover,
.video-thumbnail.active {
    background: #0a0a0a;
    transform: translateX(5px);
}

.video-thumbnail.active {
    border-left: 3px solid var(--primary-color);
}

.video-thumbnail img {
    width: 120px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
}

.video-thumbnail-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 120px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .video-thumbnail-overlay {
    opacity: 1;
}

.video-thumbnail-overlay i {
    color: #ffffff;
    font-size: 1.5rem;
}

.video-thumbnail-title {
    font-size: 0.9rem;
    color: #ffffff;
    flex: 1;
}

/* ========================================
   KIND WORDS / REVIEWS SECTION
   ======================================== */
.kind-words-section {
    background-color: var(--bg-darker);
    color: var(--text-light);
}

.kind-words-header {
    margin-bottom: 20px;
}

.kind-words-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.kind-words-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 15px;
}

.kind-words-divider {
    background: var(--primary-color);
}

.kind-words-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.review-slide {
    padding: 40px 60px;
}

.review-quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.review-quote-text {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 30px;
}

.review-author-info {
    margin-bottom: 15px;
}

.review-author-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
}

.review-author-event {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.review-stars-display {
    color: var(--primary-color);
    font-size: 1rem;
}

.review-stars-display i {
    margin: 0 2px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    opacity: 1;
}

.carousel-arrow {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.kind-words-indicators {
    position: relative;
    bottom: -20px;
    margin-bottom: 0;
}

.kind-words-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
    opacity: 1;
}

.kind-words-indicators button.active {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .review-slide {
        padding: 20px 20px;
    }
    
    .review-quote-text {
        font-size: 1.1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Legacy review card styles (keeping for admin/other uses) */
.review-card {
    background: var(--bg-darker);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.review-stars {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.review-stars i {
    margin-right: 3px;
}

.review-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    color: var(--text-light);
    font-size: 1.1rem;
}

.review-title {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-info {
    padding-right: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

#contactForm .form-control {
    background: var(--bg-dark);
    border: 1px solid #333;
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

#contactForm .form-control:focus {
    background: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--text-light);
}

#contactForm .form-control::placeholder {
    color: #666;
}

#contactForm .btn-primary {
    background: var(--primary-color, #c9a962);
    border-color: var(--primary-color, #c9a962);
    color: var(--bg-dark, #1a1a1a);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 12px 30px;
}

#contactForm .btn-primary:hover {
    background: var(--primary-hover, #b8973f);
    border-color: var(--primary-hover, #b8973f);
    color: var(--bg-dark, #1a1a1a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 201, 169, 98), 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-black);
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    max-height: 120px;
    max-width: 300px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-link {
    width: 42px;
    height: 42px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: var(--primary-color);
    color: #000;
}

.footer-email {
    color: #999;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: #333;
    margin: 40px 0 25px;
}

.footer-copyright {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.footer-admin-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #444;
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-admin-link:hover {
    color: var(--primary-color, #c9a962);
    opacity: 1;
}

@media (max-width: 991px) {
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto 15px;
    }
    .footer-tagline {
        text-align: center;
    }
    .footer-heading {
        margin-top: 10px;
    }
}

/* ========================================
   AUDIO PLAYER SECTION
   ======================================== */
.audio-player-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(20, 20, 25, 0.95);
    border-radius: var(--border-radius, 12px);
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.audio-now-playing {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(30, 30, 38, 1) 0%, rgba(22, 22, 28, 1) 100%);
}

.audio-cover {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.audio-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.audio-info {
    flex: 1;
}

.audio-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 5px;
}

.audio-artist {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.audio-controls {
    padding: 20px 30px;
    background: rgba(25, 25, 32, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.audio-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.audio-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audio-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 3px;
}

.audio-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 40px;
}

.audio-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.audio-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.audio-btn:hover {
    opacity: 1;
    color: var(--primary-color);
}

.audio-btn-play {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 1.4rem;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-btn-play:hover {
    transform: scale(1.1);
    color: var(--text-light);
}

.audio-btn-play i {
    margin-left: 3px;
}

.audio-playlist {
    background: rgba(18, 18, 22, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    max-height: 350px;
    overflow-y: auto;
}

.audio-playlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-playlist-item:hover,
.audio-playlist-item.active {
    background: rgba(255, 255, 255, 0.05);
}

.audio-playlist-item.active .playlist-item-title {
    color: var(--primary-color);
}

.playlist-item-num {
    width: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.audio-playlist-item.active .playlist-item-num {
    color: var(--primary-color);
}

.playlist-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.playlist-item-title {
    color: var(--text-light);
    font-size: 0.95rem;
}

.playlist-item-artist {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.playlist-item-play {
    opacity: 0;
    color: var(--primary-color);
    transition: opacity 0.3s ease;
}

.audio-playlist-item:hover .playlist-item-play,
.audio-playlist-item.active .playlist-item-play {
    opacity: 1;
}

/* Audio Genre Groups */
.audio-genre-group {
    margin-bottom: 20px;
}

.audio-genre-group:last-child {
    margin-bottom: 0;
}

.audio-genre-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    .audio-player-wrapper {
        padding: 20px;
    }
    .audio-now-playing {
        flex-direction: column;
        text-align: center;
    }
    .audio-cover {
        width: 120px;
        height: 120px;
    }
    .audio-btn-play {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 1.1rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 992px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .service-card {
        height: 220px;
    }
    
    .video-thumbnail {
        flex-direction: row;
        align-items: center;
        padding: 8px;
        margin-bottom: 8px;
        gap: 10px;
    }
    
    .video-thumbnail img {
        width: 80px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .video-thumbnail-overlay {
        width: 80px;
        height: 45px;
        top: 8px;
        left: 8px;
    }
    
    .video-thumbnail-title {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .video-playlist {
        max-height: 300px;
    }
}
