/* Innovative Blog Styles - Techno Festivals 2026 */
:root {
    --accent-glow: rgba(201, 168, 76, 0.4);
    --neon-purple: #9b59b6;
    --neon-blue: #3498db;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.techno-blog-body {
    background: #050505;
    color: #efefef;
}

/* Custom Cursor removed based on user feedback */

/* Immersive Hero */
.immersive-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    background: #000;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content-reveal {
    position: relative;
    z-index: 10;
    /* Ensure on top of video */
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1.2s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    padding-bottom: 100px;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrolling Content Sections */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Festival Grid - Innovative Layout */
.festival-grid {
    display: flex;
    flex-direction: column;
    gap: 15rem;
    padding: 10rem 0;
}

.festival-item {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: relative;
}

.festival-item:nth-child(even) {
    flex-direction: row-reverse;
}

.festival-media {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.festival-media img,
.festival-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.festival-item:hover .festival-media img,
.festival-item:hover .festival-media video {
    transform: scale(1.1);
}

.festival-info-box {
    flex: 0.8;
}

.festival-number {
    font-size: 10rem;
    font-weight: 900;
    color: var(--color-gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: -3rem;
    text-shadow: 0 0 20px var(--accent-glow);
    font-family: 'Playfair Display', serif;
}

.festival-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #fff 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Elements */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
}

/* Magnetic Button Implementation */
.magnetic-btn-wrapper {
    display: inline-block;
}

.magnetic-btn {
    position: relative;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    transition: color 0.4s ease;
}

.magnetic-btn::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    z-index: -1;
}

.magnetic-btn:hover::after {
    transform: translateY(-100%);
}

.magnetic-btn:hover {
    color: #000;
}

/* Progress Indicator */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-gold);
    z-index: 10000;
}

@media (max-width: 991px) {

    .festival-item,
    .festival-item:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }

    .festival-grid {
        gap: 8rem;
    }

    .festival-name {
        font-size: 2.5rem;
    }
}