/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --primary-white: #fafafa;
    --accent-purple: #9b59b6;
    --accent-cyan: #06b6d4;
    --text-gray: #999;
    --border-gray: #2a2a2a;
    --scroll-bg-color: #0a0a0a;
    --scroll-progress: 0;
    --baby-blue: #87CEEB;
    --blue-light: #ADD8E6;
    --blue-accent: #5DADE2;
    
    /* Psychedelic inspired colors */
    --psyche-turquoise: #1eb5c7;
    --psyche-coral: #ff8c69;
    --psyche-pink: #ff6b9d;
    --psyche-purple: #8b4f9f;
    --psyche-orange: #ff9f43;
    --psyche-red: #ff5757;
    --psyche-dark-purple: #6c3483;
    --mushroom-brown: #8B4513;
    --mushroom-cap: #D2691E;
    --spore-purple: #9370DB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--primary-white);
    background-color: var(--scroll-bg-color);
    overflow-x: hidden;
    cursor: none;
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    position: relative;
}

/* Light background mode - adjusts text colors when background is bright */
body.light-bg {
    color: var(--primary-black);
}

body.light-bg .festival-title,
body.light-bg .event-date,
body.light-bg .section-title,
body.light-bg .artist-name,
body.light-bg .tickets-button {
    color: var(--primary-black);
}

body.light-bg .tickets-button {
    border-color: var(--primary-black);
}

body.light-bg .tickets-button:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

body.light-bg .scroll-indicator .scroll-text,
body.light-bg .scroll-indicator .scroll-arrow span {
    color: var(--psyche-purple);
    background: var(--psyche-purple);
}

body.light-bg .logo-mark svg {
    color: var(--primary-black);
}

body.light-bg .cursor-follower {
    border-color: var(--primary-black);
}

body.light-bg .section-title::after {
    background: var(--psyche-purple);
}

.page-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Custom Cursor */
.cursor-follower {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-white);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sun-graphic {
    position: absolute;
    top: 15%;
    right: 50%;
    transform: translateX(50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at center, 
        #ff8c69 0%, 
        #ff9f43 40%, 
        rgba(255, 140, 105, 0.6) 70%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(0px);
    animation: float 8s ease-in-out infinite;
    mix-blend-mode: normal;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes psychedelic {
    0%, 100% { filter: blur(40px) hue-rotate(0deg); }
    25% { filter: blur(35px) hue-rotate(30deg); }
    50% { filter: blur(45px) hue-rotate(-30deg); }
    75% { filter: blur(35px) hue-rotate(15deg); }
}

/* Festival Elements */
.festival-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.umbrella {
    position: absolute;
    width: 40px;
    height: 35px;
}

.umbrella::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: var(--psyche-orange);
    border-radius: 50% 50% 0 0;
    top: 0;
}

.umbrella::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background: #0a0a0a;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.umbrella-1 {
    top: 35%;
    left: 8%;
    transform: rotate(-10deg);
}

.umbrella-2 {
    top: 40%;
    right: 12%;
    transform: rotate(5deg);
}

.crowd-silhouette {
    position: absolute;
    bottom: 100px;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(10, 10, 10, 0.6) 50%,
        transparent 100%);
    clip-path: polygon(
        0 100%, 5% 60%, 10% 70%, 15% 50%, 20% 65%,
        25% 55%, 30% 70%, 35% 60%, 40% 75%, 45% 55%,
        50% 65%, 55% 50%, 60% 70%, 65% 60%, 70% 75%,
        75% 55%, 80% 65%, 85% 50%, 90% 70%, 95% 60%, 100% 100%
    );
}

@keyframes rotate {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* Noise Overlay */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 2;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,.1) 2px, rgba(255,255,255,.1) 4px);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}

/* Logo Mark */
.logo-mark {
    margin-bottom: 40px;
    display: inline-block;
    animation: fadeInDown 1s ease-out;
}

.logo-mark svg {
    color: var(--primary-white);
}

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

.festival-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(8rem, 22vw, 25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    line-height: 0.85;
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Dot matrix effect */
.festival-title::before {
    content: 'KOCHELLA';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    background-image: radial-gradient(circle, var(--text-gray) 25%, transparent 25%);
    background-size: 8px 8px;
    background-position: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.festival-title span {
    position: relative;
    z-index: 2;
    background-image: radial-gradient(circle, var(--primary-white) 25%, transparent 25%);
    background-size: 4px 4px;
    background-position: 0 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.event-date {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 200;
    margin-bottom: 10px;
    letter-spacing: 0.3em;
    color: var(--text-gray);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.event-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.event-tagline {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    color: var(--psyche-turquoise);
    opacity: 0.8;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.55s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.scroll-text {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--psyche-turquoise);
    margin-bottom: 15px;
    opacity: 0.7;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow span {
    display: block;
    width: 2px;
    height: 10px;
    background: var(--psyche-turquoise);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-arrow 2s infinite;
    opacity: 0;
}

.scroll-arrow span:nth-child(1) {
    top: 0;
    animation-delay: 0s;
}

.scroll-arrow span:nth-child(2) {
    top: 10px;
    animation-delay: 0.15s;
}

.scroll-arrow span:nth-child(3) {
    top: 20px;
    animation-delay: 0.3s;
}

@keyframes scroll-arrow {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Title */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-purple);
}

/* Artists Section */
.artists-section {
    padding: 120px 0;
    background: transparent !important;
    position: relative;
    transition: all 0.6s ease;
}

.artists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-gray) 50%, 
        transparent 100%);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.artist-card {
    text-align: center;
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.artist-card:nth-child(1) { animation-delay: 0.1s; }
.artist-card:nth-child(2) { animation-delay: 0.2s; }
.artist-card:nth-child(3) { animation-delay: 0.3s; }
.artist-card:nth-child(4) { animation-delay: 0.4s; }
.artist-card:nth-child(5) { animation-delay: 0.5s; }
.artist-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.artist-time {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.artist-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-image:hover {
    transform: scale(1.05);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.4s ease;
}

.artist-image:hover img {
    filter: grayscale(0%) contrast(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%, 
        transparent 50%,
        rgba(6, 182, 212, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.artist-image:hover .image-overlay {
    opacity: 1;
}

.artist-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-white);
    transition: color 0.3s ease;
}

.artist-card:hover .artist-name {
    color: var(--accent-cyan);
}

/* Location Section */
.location-section {
    padding: 120px 0;
    background: transparent !important;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-gray) 50%, 
        transparent 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin: 40px 0;
    letter-spacing: -0.02em;
    color: var(--accent-purple);
}

.location-address {
    font-size: 15px;
    line-height: 2;
    color: var(--text-gray);
}

.location-address p {
    margin-bottom: 8px;
}

.location-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) contrast(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-image:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.location-image .image-overlay {
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(10, 10, 10, 0.4) 100%);
    opacity: 1;
}

.activities-section {
    padding: 120px 0;
    position: relative;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.activity-card {
    border: 1px solid rgba(250, 250, 250, 0.12);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.activity-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.activity-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.activity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(250, 250, 250, 0.3);
    background: rgba(15, 15, 15, 0.55);
}

/* Tickets Section */
.tickets-section {
    padding: 120px 0;
    background: transparent !important;
    color: var(--primary-white);
    text-align: center;
    position: relative;
}

.tickets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-gray) 50%, 
        transparent 100%);
}

.tickets-section .section-title {
    color: var(--primary-white);
}

.tickets-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.tickets-text {
    font-size: 16px;
    margin-bottom: 50px;
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.tickets-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-white);
    text-decoration: none;
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    border: 1px solid var(--primary-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.tickets-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.tickets-button:hover {
    border-color: transparent;
}

.tickets-button:hover::before {
    left: 0;
}

/* Mushroom Shapes */
.mushroom-shape {
    position: absolute;
    opacity: 0.15;
}

.mushroom-1 {
    bottom: 10%;
    left: 15%;
    width: 120px;
    height: 150px;
    animation: sway 6s ease-in-out infinite;
}

.mushroom-1::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 80px;
    background: radial-gradient(ellipse at center, var(--mushroom-cap) 0%, var(--spore-purple) 50%, transparent 70%);
    border-radius: 50% 50% 10% 10%;
    top: 0;
    left: 10px;
    filter: blur(2px);
}

.mushroom-1::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 70px;
    background: linear-gradient(180deg, var(--mushroom-brown) 0%, rgba(139, 69, 19, 0.5) 100%);
    bottom: 0;
    left: 40px;
    clip-path: polygon(30% 0%, 70% 0%, 80% 100%, 20% 100%);
}

.mushroom-2 {
    top: 35%;
    right: 8%;
    width: 80px;
    height: 100px;
    animation: sway 8s ease-in-out infinite reverse;
}

.mushroom-2::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 60px;
    background: radial-gradient(ellipse at center, var(--spore-purple) 0%, var(--psyche-pink) 40%, transparent 70%);
    border-radius: 50% 50% 20% 20%;
    top: 0;
    left: 5px;
    filter: blur(3px);
}

.mushroom-2::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 50px;
    background: linear-gradient(180deg, rgba(147, 112, 219, 0.6) 0%, transparent 100%);
    bottom: 0;
    left: 27px;
    clip-path: polygon(35% 0%, 65% 0%, 75% 100%, 25% 100%);
}

@keyframes sway {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-10px) rotate(-2deg); }
    75% { transform: translateX(10px) rotate(2deg); }
}

/* Spore Particles */
.spore-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.spore-particles::before,
.spore-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--spore-purple);
    border-radius: 50%;
    opacity: 0.3;
    animation: spore-float 15s linear infinite;
}

.spore-particles::before {
    left: 20%;
    animation-delay: 0s;
}

.spore-particles::after {
    left: 70%;
    animation-delay: 7s;
}

@keyframes spore-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Geometric Buildings and Water Scene */
.geometric-buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    pointer-events: none;
}

.building-left,
.building-right {
    position: absolute;
    bottom: 0;
    background: #0a0a0a;
    overflow: hidden;
}

.building-left {
    left: 0;
    width: 35%;
    height: 280px;
    clip-path: polygon(0 30%, 100% 20%, 100% 100%, 0 100%);
}

.building-right {
    right: 0;
    width: 35%;
    height: 280px;
    clip-path: polygon(0 20%, 100% 30%, 100% 100%, 0 100%);
}

.building-left::before,
.building-right::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 8px,
        var(--psyche-purple) 8px,
        var(--psyche-purple) 10px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 25px,
        var(--psyche-purple) 25px,
        var(--psyche-purple) 27px
    );
    opacity: 0.5;
}

/* Rooftop details */
.building-left::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 60%;
    height: 40px;
    background: #0a0a0a;
    clip-path: polygon(
        0 100%, 10% 0, 20% 100%, 30% 20%, 40% 100%, 
        50% 0, 60% 100%, 70% 30%, 80% 100%, 90% 0, 100% 100%
    );
}

.building-right::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 20%;
    width: 60%;
    height: 40px;
    background: #0a0a0a;
    clip-path: polygon(
        0 100%, 15% 20%, 25% 100%, 35% 0, 45% 100%, 
        55% 30%, 65% 100%, 75% 0, 85% 100%, 95% 20%, 100% 100%
    );
}

/* Water Pool */
.water-pool {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 120px;
    background: linear-gradient(180deg, 
        var(--psyche-turquoise) 0%, 
        rgba(30, 181, 199, 0.8) 50%,
        rgba(6, 182, 212, 0.6) 100%);
    clip-path: polygon(
        20% 0%, 80% 0%, 
        85% 20%, 90% 50%, 85% 80%, 80% 100%,
        20% 100%, 15% 80%, 10% 50%, 15% 20%
    );
    overflow: hidden;
}

.water-pool::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: water-shimmer 8s linear infinite;
}

@keyframes water-shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(33.33%); }
}

/* Canoe Silhouettes */
.canoe-silhouette {
    position: absolute;
    width: 30px;
    height: 10px;
    background: rgba(10, 10, 10, 0.7);
    clip-path: polygon(
        10% 50%, 20% 20%, 80% 20%, 90% 50%,
        80% 80%, 20% 80%
    );
}

.canoe-s1 {
    top: 30%;
    left: 25%;
    transform: rotate(-5deg);
    animation: canoe-bob 4s ease-in-out infinite;
}

.canoe-s2 {
    top: 50%;
    right: 30%;
    transform: rotate(3deg);
    animation: canoe-bob 5s ease-in-out infinite 1s;
}

.canoe-s3 {
    bottom: 20%;
    left: 45%;
    transform: rotate(-2deg);
    animation: canoe-bob 6s ease-in-out infinite 2s;
}

@keyframes canoe-bob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

/* Bio Overlay */
.bio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.bio-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(147, 112, 219, 0.05) 0%, 
        rgba(30, 181, 199, 0.05) 50%, 
        rgba(255, 140, 105, 0.05) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 60px;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 60px rgba(147, 112, 219, 0.1);
}

.bio-overlay.active .bio-container {
    transform: translateY(0);
}

.bio-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-weight: 100;
    line-height: 1;
}

.bio-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.bio-content {
    position: relative;
    z-index: 1;
}

.bio-artist-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    color: var(--primary-white);
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--spore-purple), var(--psyche-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.bio-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.bio-stat-item {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--psyche-turquoise);
    text-transform: uppercase;
}

/* Artist card hover effect for clickability */
.artist-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-card:hover .artist-image {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(147, 112, 219, 0.3);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: transparent;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section-container {
        padding: 0 30px;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }
    
    .artist-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .geometric-buildings {
        height: 250px;
    }
    
    .building-left,
    .building-right {
        height: 200px;
    }
    
    .water-pool {
        width: 60%;
        bottom: 30px;
    }
    
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .tickets-button {
        cursor: pointer;
    }
    
    .festival-title {
        font-size: clamp(3rem, 10vw, 6rem);
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .artist-image {
        width: 150px;
        height: 150px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-image {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .bio-container {
        padding: 40px 30px;
    }
    
    .bio-artist-name {
        font-size: 24px;
    }
    
    .bio-text {
        font-size: 14px;
    }
    
    .bio-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .tickets-button {
        padding: 14px 28px;
        font-size: 12px;
    }
    
    .artists-section,
    .location-section,
    .tickets-section {
        padding: 80px 0;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}