/* Colorful Updates for 25-40 Age Group */

/* Updated Hero Section with Vibrant Gradients */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f2e 25%, #2d1b69 50%, #1a0f2e 75%, #0a0a0a 100%) !important;
}

.hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(181, 55, 242, 0.15) 0%,
        rgba(255, 0, 110, 0.1) 50%,
        rgba(0, 0, 0, 0.5) 100%
    ) !important;
}

/* Colorful Section Titles */
.section-title {
    background: linear-gradient(135deg, #8b5cf6 0%, #ff006e 50%, #ff9f1c 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

/* Vibrant Call-to-Action Buttons */
.cta-neon {
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.2), rgba(255, 0, 110, 0.2)) !important;
    color: #ffffff !important;
    border: 2px solid transparent !important;
    border-image: linear-gradient(135deg, #b537f2, #ff006e) !important;
    border-image-slice: 1 !important;
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
}

.cta-neon::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: left 0.5s;
}

.cta-neon:hover::before {
    left: 100%;
}

.cta-neon:hover {
    background: linear-gradient(135deg, #b537f2, #ff006e) !important;
    box-shadow: 0 0 30px #b537f2, 0 0 60px #ff006e !important;
    transform: translateY(-3px) scale(1.05) !important;
}

.cta-outline {
    color: #4ecdc4 !important;
    border: 2px solid #4ecdc4 !important;
    background: rgba(78, 205, 196, 0.1) !important;
    font-weight: 600 !important;
}

.cta-outline:hover {
    background: #4ecdc4 !important;
    color: #000000 !important;
    box-shadow: 0 0 30px #4ecdc4 !important;
    transform: translateY(-3px) scale(1.05) !important;
}

/* Colorful Newsletter Button */
.newsletter-btn {
    background: linear-gradient(135deg, #8b5cf6, #ff006e) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(181, 55, 242, 0.3) !important;
    font-weight: 600 !important;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #ff006e, #ff9f1c) !important;
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5) !important;
}

/* Vibrant Event Section */
.upcoming-events {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0a1f 50%, #0a0a0a 100%) !important;
    position: relative;
    overflow: hidden;
}

.upcoming-events::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.event-spotlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(255, 0, 110, 0.05)) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    padding: 60px !important;
    border-radius: 20px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 60px !important;
}

.event-spotlight:hover {
    border-color: rgba(255, 0, 110, 0.5) !important;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2) !important;
}

.spotlight-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.newsletter-section {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 40px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 15px !important;
    border-left: 3px solid var(--gradient-vibrant) !important;
}

@media (max-width: 768px) {
    .event-spotlight {
        flex-direction: column !important;
        padding: 40px 20px !important;
        gap: 40px !important;
    }
    
    .newsletter-section {
        border-left: none !important;
        border-top: 3px solid transparent !important;
        border-image: var(--gradient-vibrant) !important;
        border-image-slice: 1 !important;
    }
}

.event-name {
    background: linear-gradient(90deg, #4ecdc4, #44a3aa, #667eea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-date-large .date {
    color: #ff9f1c !important;
    text-shadow: 0 0 30px rgba(255, 159, 28, 0.5);
}

/* Colorful Contact Section */
.contact {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0f2e 100%) !important;
}

.contact-modern {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.03), rgba(139, 92, 246, 0.03)) !important;
    border: 1px solid rgba(78, 205, 196, 0.2) !important;
}

.submit-modern {
    background: linear-gradient(135deg, #4ecdc4, #667eea) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

.submit-modern:hover {
    background: linear-gradient(135deg, #667eea, #b537f2) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
}

/* Accent Colors Throughout */
.neon-glow {
    color: #ff006e !important;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.title-line {
    background: linear-gradient(90deg, transparent, #8b5cf6, #ff006e, #ff9f1c, transparent) !important;
}

/* Navbar with Subtle Color */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2) !important;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3) !important;
}

.nav-link:hover {
    color: #4ecdc4 !important;
}

.logo-ring {
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.logo-ring.ring-2 {
    border-color: rgba(255, 0, 110, 0.2) !important;
}

.logo-ring.ring-3 {
    border-color: rgba(78, 205, 196, 0.1) !important;
}

/* Footer Accent Colors */
.footer {
    background: linear-gradient(180deg, #0a0a0a, #0f0a1f) !important;
    border-top: 1px solid rgba(139, 92, 246, 0.2) !important;
}

.footer-links a:hover {
    color: #4ecdc4 !important;
}

/* Sound Bars Animation with Colors */
.sound-bars span {
    background: linear-gradient(to top, #8b5cf6, #ff006e) !important;
}

/* Form Field Focus States */
.field-line {
    background: linear-gradient(90deg, #4ecdc4, #667eea) !important;
}

.form-field input:focus + label,
.form-field textarea:focus + label {
    color: #4ecdc4 !important;
}

/* Status Badge Colors */
.status-badge {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.2), rgba(255, 0, 110, 0.2)) !important;
    border: 1px solid #ff9f1c !important;
    color: #ff9f1c !important;
}

/* Particle Colors Update */
#particles {
    filter: hue-rotate(280deg) saturate(1.5);
}

/* Mobile Menu Colors */
.mobile-menu {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(26, 15, 46, 0.98)) !important;
}

.mobile-nav-link:hover {
    color: #4ecdc4 !important;
    border-bottom-color: #4ecdc4 !important;
}

/* Typography Updates for 25-40 Age Group */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    text-transform: uppercase !important;
}

/* Main Section Titles */
.section-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    font-size: 4rem !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    line-height: 0.9 !important;
}

/* Event Name */
.event-name {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    letter-spacing: -0.02em !important;
}

/* Hero Title - Large and Bold */
.hero-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(4rem, 12vw, 8rem) !important;
    letter-spacing: -0.02em !important;
    line-height: 0.9 !important;
    margin: 0 0 30px 0 !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, #ffffff 0%, #c9a961 50%, #ffffff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: title-glow 3s ease-in-out infinite !important;
    text-align: center !important;
}

@keyframes title-glow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(201, 169, 97, 0.5));
    }
}

.title-main {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

/* Navigation Logo Text */
.nav-brand-text {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
}

/* Contact Section Headers */
.contact-intro h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    letter-spacing: -0.02em !important;
}

/* Newsletter Section Headers */
.newsletter-section h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
}

/* Footer Headers */
.footer h3, .footer h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
}

p {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Sophisticated but Energetic Elements */
.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.3rem) !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
    color: #4ecdc4 !important;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    margin-bottom: 50px !important;
    font-family: 'Inter', sans-serif !important;
    text-align: center !important;
}

/* Age-Appropriate Content Updates */
.event-teaser {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Refined Professional Loading Screen */
.loader {
    background: #0a0a0a !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.refined-loader {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 50px !important;
    width: 100% !important;
    max-width: 400px !important;
}

.loader-logo-container {
    position: relative !important;
    width: 150px !important;
    height: 150px !important;
}

.loader-logo-modern {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    animation: float-rotate 4s ease-in-out infinite !important;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5)) !important;
}

@keyframes float-rotate {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-10px) rotate(5deg) scale(1.05); }
    50% { transform: translateY(0) rotate(0deg) scale(1); }
    75% { transform: translateY(-10px) rotate(-5deg) scale(1.05); }
}

.logo-pulse {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    border: 2px solid #8b5cf6 !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    animation: pulse-expand 2s ease-out infinite !important;
}

.logo-pulse.pulse-2 {
    animation-delay: 1s !important;
    border-color: #ff006e !important;
}

@keyframes pulse-expand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Loading Dots */
.loading-elements {
    display: flex !important;
    gap: 15px !important;
}

.loading-dot {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #4ecdc4, #667eea) !important;
    animation: dot-bounce 1.4s ease-in-out infinite !important;
}

.loading-dot:nth-child(1) {
    animation-delay: 0s !important;
    background: linear-gradient(135deg, #4ecdc4, #44a3aa) !important;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s !important;
    background: linear-gradient(135deg, #667eea, #8b5cf6) !important;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s !important;
    background: linear-gradient(135deg, #ff006e, #ff9f1c) !important;
}

@keyframes dot-bounce {
    0%, 80%, 100% {
        transform: scale(0.8) translateY(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2) translateY(-20px);
        opacity: 1;
    }
}

/* Loading Text */
.loader-text-modern {
    display: flex !important;
    gap: 10px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    letter-spacing: 0.1em !important;
}

.loading-word {
    display: inline-block !important;
    background: linear-gradient(90deg, #4ecdc4, #667eea, #b537f2, #ff006e) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: text-shimmer 3s linear infinite, word-appear 0.5s ease forwards !important;
    opacity: 0 !important;
}

.loading-word:nth-child(1) { animation-delay: 0s, 0.1s !important; }
.loading-word:nth-child(2) { animation-delay: 0s, 0.3s !important; }
.loading-word:nth-child(3) { animation-delay: 0s, 0.5s !important; }

@keyframes word-appear {
    to { opacity: 1; }
}

@keyframes text-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Progress Bar */
.loading-progress-modern {
    width: 300px !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    position: relative !important;
}

.progress-bar-modern {
    height: 100% !important;
    background: linear-gradient(90deg, #4ecdc4, #667eea, #b537f2, #ff006e) !important;
    animation: progress-fill 3s ease-out forwards !important;
    border-radius: 10px !important;
}

.progress-glow {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    height: 20px !important;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.5), transparent) !important;
    transform: translateY(-50%) !important;
    animation: glow-move 2s linear infinite !important;
}

@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes glow-move {
    0% { transform: translateY(-50%) translateX(-100%); }
    100% { transform: translateY(-50%) translateX(100%); }
}

/* Scroll Indicator Colors */
.scroll-indicator {
    border-color: #4ecdc4 !important;
}

.wheel {
    background: #4ecdc4 !important;
}

/* Mobile Typography Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem) !important;
        margin-bottom: 20px !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 30px !important;
    }
    
    .section-title {
        font-size: 2.5rem !important;
    }
    
    .event-name {
        font-size: 1.8rem !important;
    }
    
    .contact-intro h3 {
        font-size: 1.5rem !important;
    }
    
    h1, h2, h3 {
        letter-spacing: -0.01em !important;
    }
}

/* Date Display Typography */
.event-date-large {
    font-family: 'Montserrat', sans-serif !important;
}

.event-date-large .month,
.event-date-large .year {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.event-date-large .date {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900 !important;
}

/* Navigation Typography */
.nav-link {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
}

/* Button Typography */
.cta-neon, .cta-outline, .newsletter-btn, .submit-modern {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
}