/* ================================
   BUNNY LAKE FESTIVAL STYLES
   Glassmorphism theme with neon accents
   ================================ */

/* Custom Fonts */
@font-face {
    font-family: 'Punk';
    src: url('../assets/fonts/1_Punk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    unicode-range: U+0041-005A, U+0061-007A, U+0020;
    /* Only letters (A-Z, a-z) and space - excludes numbers and special characters */
}
@font-face {
    font-family: 'Punktype';
    src: url('../assets/fonts/Punktype.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MetalMania';
    src: url('../assets/fonts/MetalMania-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'PieceEight';
    src: url('../assets/fonts/Pieces_of_Eight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'PirateOne';
    src: url('../assets/fonts/PirataOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Hero section with festival branding */
.festival-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 20px 60px;
    position: relative;
    overflow: hidden;
}

.festival-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/bg-hero.jpg');
    background-size: 1800px auto;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    mask-image:
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        radial-gradient(ellipse 70% 55% at 50% 35%, black 30%, transparent 90%);
    mask-size: 1800px 100%, 1800px 100%;
    mask-position: center, center;
    mask-repeat: no-repeat, no-repeat;
    mask-composite: intersect;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 15%, black 80%, transparent 100%),
        radial-gradient(ellipse 65% 55% at 50% 45%, black 60%, transparent 95%);
    -webkit-mask-size: 1800px 100%, 1800px 100%;
    -webkit-mask-position: center, center;
    -webkit-mask-repeat: no-repeat, no-repeat;
    -webkit-mask-composite: source-in;
    z-index: 0;
}

.flame-right {
    content: '';
    position: absolute;
    background-image: url('../assets/flame_r.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 379px;
    height: 756px;
    left: calc(50% - 900px + 1175px);
    top: calc(50% - 378px - 220px);
    filter: url(#flame-morph) drop-shadow(0 0 var(--flame-glow, 20px) rgba(255, 120, 30, 0.8));
    opacity: var(--flame-opacity, 1);
    z-index: 1;
}

.flame-left {
    position: absolute;
    background-image: url('../assets/flame_l.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 425px;
    height: 661px;
    left: calc(50% - 900px + 160px);
    top: calc(50% - 331px - 200px);
    filter: url(#flame-morph) drop-shadow(0 0 var(--flame-l-glow, 20px) rgba(255, 120, 30, 0.8));
    opacity: var(--flame-l-opacity, 1);
    z-index: 1;
}

.festival-hero > * {
    position: relative;
    z-index: 2;
}

.festival-hero > .flame-right,
.festival-hero > .flame-left {
    position: absolute;
    z-index: 1;
}

.festival-hero-logo {
    max-width: 500px;
    width: 100%;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.8));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

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

.punk-rock-metal {
    font-family: 'Punktype', 'Oswald', sans-serif;
    /* color: rgba(255, 255, 255, 0.7); */
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-top: -90px;
    position: relative;
    z-index: 2;
}

.festival-subtitle {
    font-family: 'MetalMania', 'Anton', sans-serif;
    font-size: 8.0rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF);
    /* background: linear-gradient(0deg, #ff0080, #7928ca, #00d9ff); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 60px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.festival-subtitle-small {
    font-family: 'MetalMania', 'Anton', sans-serif;
    font-size: 5.0rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF);
    /* background: linear-gradient(0deg, #ff0080, #7928ca, #00d9ff); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 5px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.festival-year {
    font-family: 'MetalMania', sans-serif;
    font-size: 6.0rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.6;
    background: linear-gradient(0deg, #FF3891, #FF3891, #3DCFD1, #10F8FF);
    /* background: linear-gradient(90deg, #ff0080, #7928ca, #00d9ff); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -35px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}

.festival-date-location {
    font-family: 'Anton', 'Oswald', sans-serif;
    /* color: rgba(255, 255, 255, 0.7); */
    color: #ffffffbc;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 120px;
}

/* Line Up Grid - Vertical timeline style */
.lineup-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.lineup-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.lineup-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
    border-color: rgba(255, 0, 255, 0.5);
}

.lineup-time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    /* background: linear-gradient(45deg, #FF3891, #F3D40F); */
    /* background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF); */
    background: #FF3891;
    background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.lineup-time-odd {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    background: #6DB4DF;
    background: linear-gradient(0deg, #6DB4DF, #6DB4DF, #FF3891);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.lineup-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lineup-band-name {
    font-family: 'MetalMania', 'Punk', 'Anton', 'Impact', sans-serif;
    font-size: 3.0rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* background: linear-gradient(90deg, #ff0080, #7928ca, #00d9ff); */
    /* background: linear-gradient(45deg, #FF3891, #F3D40F);*/
    /* background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF); */
    background: #FF3891;
    background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lineup-band-name-odd {
    font-family: 'MetalMania', 'Punk', 'Anton', 'Impact', sans-serif;
    font-size: 3.0rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* background: linear-gradient(90deg, #ff0080, #7928ca, #00d9ff); */
    /* background: linear-gradient(45deg, #FF3891, #F3D40F);*/
    /* background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF); */
    background: #6DB4DF;
    background: linear-gradient(0deg, #6DB4DF, #6DB4DF, #FF3891);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lineup-band-text {
    font-family: 'MetalMania', 'Punk', 'Anton', 'Impact', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff0080, #7928ca, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lineup-band-number {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 2.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* background: linear-gradient(90deg, #ff0080, #7928ca, #00d9ff); */
    background: #ff0080;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lineup-genre {
    font-family: 'Punktype', 'Oswald', sans-serif;
    /* color: rgba(255, 255, 255, 0.6); */
    color: #ffffffcf;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Music Section - Band blocks with audio players */
.festival-music-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.band-music-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.band-music-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.4);
}

.band-name {
    font-family: 'MetalMania', 'Punk', 'Anton', 'Impact', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    /* background: linear-gradient(90deg, #00d9ff, #7928ca, #ff0080); */
    /* background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF); */
    background: #FF3891;
    background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.band-name-odd {
    font-family: 'MetalMania', 'Punk', 'Anton', 'Impact', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    /* background: linear-gradient(90deg, #00d9ff, #7928ca, #ff0080); */
    background: #6DB4DF;
    background: linear-gradient(0deg, #6DB4DF, #6DB4DF, #FF3891);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.band-text {
    font-family: 'Punk', 'Anton', 'Impact', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00d9ff, #7928ca, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.band-number {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* background: linear-gradient(90deg, #00d9ff, #7928ca, #ff0080); */
    background: #00d9ff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.audio-players {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audio-player-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-title {
    font-family: 'Oswald', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.audio-player {
    width: 100%;
    height: 40px;
    filter: brightness(0.9) saturate(1.2);
}

.audio-player::-webkit-media-controls-panel {
    background: linear-gradient(90deg, rgba(139, 0, 139, 0.3), rgba(0, 217, 255, 0.3));
    border-radius: 10px;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    background: linear-gradient(0deg, #FF3891, #FF3891, #10F8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.location-info p {
    font-family: 'Oswald', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.location-address {
    font-size: 1.1rem;
    color: #fff !important;
    margin-bottom: 10px;
}

.location-sign-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.location-sign-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(255, 0, 128, 0.3);
}

.location-map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 450px;
    background: rgba(0, 0, 0, 0.3);
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(0.8) saturate(1.2);
}

/* Placeholder map if image needed */
.placeholder-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.2), rgba(0, 217, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px;
}

/* Footer */
.festival-footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    text-align: center;
    margin-top: 80px;
}

.festival-footer p {
    font-family: 'Oswald', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.festival-footer a {
    color: #00d9ff;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.festival-footer a:hover {
    color: #ff0080;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .festival-hero::before {
        background-size: 900px auto;
        mask-size: 900px 100%, 900px 100%;
        -webkit-mask-size: 900px 100%, 900px 100%;
    }

    .flame-right {
        width: 190px;
        height: 378px;
        left: calc(50% - 450px + 588px);
        top: calc(50% - 189px - 110px);
    }

    .flame-left {
        width: 213px;
        height: 331px;
        left: calc(50% - 450px + 80px);
        top: calc(50% - 166px - 100px);
    }

    .lineup-item {
        grid-template-columns: 80px 1fr;
        padding: 20px;
    }

    .lineup-time,
    .lineup-time-odd {
        font-size: 1.8rem;
    }

    .lineup-band-name,
    .lineup-band-name-odd {
        font-size: 2.0rem;
    }

    .lineup-band-text {
        font-size: 1.5rem;
    }
    .lineup-band-number {
        font-size: 1.9rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .festival-hero-logo {
        max-width: 280px;
    }

    .festival-subtitle {
        font-size: 3.2rem;
    }
    .festival-subtitle-small {
        font-size: 1.8rem;
    }

    .festival-year {
        font-size: 2.3rem;
    }

    .festival-date-location {
        font-size: 0.7rem;
    }

    .punk-rock-metal {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .festival-hero::before {
        background-size: 600px auto;
        mask-size: 600px 100%, 600px 100%;
        -webkit-mask-size: 600px 100%, 600px 100%;
    }

    .flame-right {
        width: 126px;
        height: 252px;
        left: calc(50% - 300px + 392px);
        top: calc(50% - 126px - 73px);
    }

    .flame-left {
        width: 142px;
        height: 220px;
        left: calc(50% - 300px + 53px);
        top: calc(50% - 110px - 67px);
    }

    .lineup-item {
        grid-template-columns: 70px 1fr;
        text-align: left;
        gap: 10px;
    }

    .lineup-time,
    .lineup-time-odd {
        font-size: 1.5rem;
    }

    .lineup-band-name,
    .lineup-band-name-odd {
        font-size: 1.4rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .band-name,
    .band-name-odd {
        font-size: 1.7rem;
    }

    .band-text {
        font-size: 1.0rem;
    }
    .band-number {
        font-size: 1.2rem;
    }

    .band-music-block {
        padding: 20px;
    }

    .location-map-container {
        height: 300px;
    }
}
