/* Ocean Deep with Neon Accents Theme */
:root {
    /* Ocean Deep colors */
    --ocean-primary: #0066cc;
    --ocean-dark: #1e3a8a;
    --ocean-light: #06b6d4;

    /* Neon Accent colors */
    --neon-purple: #8b5cf6;
    --neon-violet: #6366f1;
    --neon-pink: #ec4899;

    /* Gradients */
    --ocean-gradient: linear-gradient(135deg, #0066cc, #1e3a8a);
    --neon-gradient: linear-gradient(135deg, #8b5cf6, #6366f1);
    --hybrid-gradient: linear-gradient(-45deg, #0066cc, #1e3a8a, #8b5cf6, #06b6d4, #6366f1);

    /* Shadows with neon glow */
    --neon-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    --neon-glow-hover: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* ============================================
   HERO SECTION - Animated Background
   ============================================ */
.hero-artistic {
    position: relative;
    min-height: auto;  /* Changed from 100vh */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--hybrid-gradient);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 80px 0 40px;  /* Add specific padding instead */
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating abstract shapes */
.shape {
    position: absolute;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.3));
    border-radius: 45% 55% 60% 40%;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(0, 102, 204, 0.3));
    border-radius: 60% 40% 50% 50%;
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3));
    border-radius: 40% 60% 55% 45%;
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Hero content glassmorphism */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 40px;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), var(--neon-glow);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--neon-glow);
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--neon-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4), var(--neon-glow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5), var(--neon-glow-hover);
    color: white;
}

.btn-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--neon-glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, white, var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: white;
    opacity: 0.7;
    filter: drop-shadow(var(--neon-glow));
}

/* ============================================
   SITE-WIDE ACCENT COLORS
   ============================================ */

/* Update primary buttons throughout site */
.btn-success, .btn-primary:not(.hero-artistic .btn-primary) {
    background: var(--neon-gradient) !important;
    border: none !important;
}

.btn-success:hover, .btn-primary:hover:not(.hero-artistic .btn-primary) {
    box-shadow: var(--neon-glow-hover) !important;
    transform: translateY(-2px);
}

/* Card hover effects with neon accent */
.card:hover, .section-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1), var(--neon-glow);
}

/* Badges with neon accent */
.badge.bg-primary {
    background: var(--neon-gradient) !important;
}

/* Links with neon accent on hover */
a:hover {
    color: var(--neon-purple);
}

/* Form focus states */
.form-control:focus, .form-select:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}

/* Admin navbar keep original gradient */
.admin-navbar {
    background: var(--hybrid-gradient) !important;
}

/* Section headers with gradient text */
.section-title:hover {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Event cards with neon border on hover */
.event-card:hover {
    border-left-color: var(--neon-purple) !important;
    box-shadow: -3px 0 0 var(--neon-purple), var(--neon-glow);
}

/* Stat boxes with neon gradients */
.stat-box {
    background: var(--ocean-gradient);
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--neon-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    pointer-events: none;
}

.stat-box:hover::after {
    opacity: 0.3;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 25px;
        margin: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .shape-1, .shape-2, .shape-3 {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Global Background Color - Add this to the END of your base.css file */

/* Purple gradient background for all pages */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    min-height: 100vh;
}

/* Make hero sections extend and blend with body */
.hero-section {
    background: transparent !important;
    color: white !important;
    padding: 100px 0 50px;
}

/* White text in hero areas */
.hero-section .page-title,
.hero-section .page-subtitle,
.hero-section h1,
.hero-section h2,
.hero-section p,
.hero-section .lead,
.hero-section .breadcrumb-item a,
.hero-section .breadcrumb-item.active {
    color: white !important;
}

/* Keep content sections transparent so purple shows through */
.content-section,
.stats-section {
    background-color: transparent !important;
}

/* Keep cards white for contrast */
.band-card,
.event-card,
.venue-card,
.section-card,
.musician-card,
.compact-event-card {
    background: white !important;
}

/* Stats bar on venues page - dark text on white cards */
.stats-bar .stat-item {
    background: white;
    color: #333 !important;
}

.stats-bar .stat-number {
    color: #667eea !important;
}

.stats-bar .stat-label {
    color: #6c757d !important;
}