/**
 * IFBF Festival - Frontend Styles
 * Version 1.3.0 - Neon Menu, Fullscreen Hero
 */

:root {
    --ifbf-electric-blue: #00d4ff;
    --ifbf-gold: #d4a853;
    --ifbf-gold-light: #e8c97a;
    --ifbf-deep-navy: #0a1525;
    --ifbf-darker-navy: #060d18;
    --ifbf-black: #030508;
    --ifbf-white: #fefefe;
    --ifbf-grey: #a0a8b0;
}

/* Reset */
.ifbf-landing {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--ifbf-black);
    color: var(--ifbf-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.ifbf-landing *,
.ifbf-landing *::before,
.ifbf-landing *::after {
    box-sizing: border-box;
}

/* Force full width on WordPress themes */
.ifbf-landing,
.ifbf-landing .ifbf-hero,
.ifbf-landing .ifbf-hero-bg-slideshow,
.ifbf-landing .ifbf-hero-bg-slide {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

body.ifbf-menu-open {
    overflow: hidden;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.ifbf-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--ifbf-black) 0%, var(--ifbf-deep-navy) 100%);
}

/* Sparkles */
.ifbf-sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ifbf-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ifbf-gold);
    border-radius: 50%;
    animation: ifbfSparkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--ifbf-gold), 0 0 20px var(--ifbf-gold-light);
}

@keyframes ifbfSparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* ============================================
   GLAMOUR FLASH EFFECT
   ============================================ */
.ifbf-glamour-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    background: radial-gradient(
        ellipse at 50% 30%,
        rgba(212, 168, 83, 0.4) 0%,
        rgba(0, 212, 255, 0.1) 30%,
        transparent 70%
    );
    transition: opacity 0.3s ease-out;
}

.ifbf-glamour-flash.active {
    opacity: 1;
    animation: ifbfGlamourPulse 0.6s ease-out;
}

@keyframes ifbfGlamourPulse {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1); }
}

/* ============================================
   NEON HEADER
   ============================================ */
.ifbf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(3, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.ifbf-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ifbf-header-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ifbf-gold);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(212, 168, 83, 0.4);
    transition: all 0.3s ease;
}

.ifbf-header-logo:hover {
    text-shadow: 0 0 30px rgba(212, 168, 83, 0.8);
}

/* Desktop Nav - Neon Links */
.ifbf-header-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.ifbf-nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--ifbf-electric-blue);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.ifbf-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ifbf-electric-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--ifbf-electric-blue);
}

.ifbf-nav-link:hover {
    color: var(--ifbf-white);
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.5),
        0 0 30px rgba(0, 212, 255, 0.3);
}

.ifbf-nav-link:hover::before {
    width: 100%;
}

/* Header Social */
.ifbf-header-social {
    display: none;
    gap: 1rem;
}

.ifbf-header-social a {
    color: var(--ifbf-electric-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ifbf-header-social a:hover {
    color: var(--ifbf-white);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
    transform: translateY(-2px);
}

.ifbf-header-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Language Switcher */
.ifbf-lang-switcher {
    display: none;
    gap: 0.5rem;
    margin-left: 1rem;
}

.ifbf-lang-flag {
    font-size: 1.3rem;
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(50%);
}

.ifbf-lang-flag:hover,
.ifbf-lang-flag.active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Mobile Language */
.ifbf-mobile-lang {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ifbf-mobile-lang .ifbf-lang-flag {
    font-size: 2rem;
}

/* Mobile Menu Toggle */
.ifbf-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 101;
}

.ifbf-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--ifbf-electric-blue);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.ifbf-menu-toggle.active span {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.ifbf-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ifbf-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ifbf-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.ifbf-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ifbf-mobile-menu.active {
    transform: translateX(0);
}

.ifbf-mobile-link {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--ifbf-electric-blue);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.ifbf-mobile-link:hover {
    color: var(--ifbf-white);
    text-shadow: 
        0 0 20px rgba(0, 212, 255, 1),
        0 0 40px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.4);
}

.ifbf-mobile-social {
    margin-top: 2rem;
}

.ifbf-mobile-social-links {
    display: flex;
    gap: 1.5rem;
}

.ifbf-mobile-social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ifbf-electric-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ifbf-mobile-social-links a:hover {
    background: var(--ifbf-electric-blue);
    color: var(--ifbf-black);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.ifbf-mobile-social-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ============================================
   HERO SECTION - TRUE FULLSCREEN
   ============================================ */
.ifbf-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align to left */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Background slideshow - ABSOLUTE FULLSCREEN */
.ifbf-hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ifbf-hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.ifbf-hero-bg-slide.active {
    opacity: 1;
}

/* Dark overlay - gradient from left */
.ifbf-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(3, 5, 8, 0.85) 0%,
        rgba(3, 5, 8, 0.7) 30%,
        rgba(3, 5, 8, 0.3) 60%,
        rgba(3, 5, 8, 0.1) 100%
    );
}

/* Hero Content - LEFT ALIGNED */
.ifbf-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1.5rem 2rem 5%;
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.ifbf-hero-title {
    margin-bottom: 1.5rem;
}

.ifbf-title-international {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ifbf-white);
    display: block;
    margin-bottom: 0.2rem;
    animation: ifbfSlideIn 1s ease-out 0.2s both;
}

.ifbf-title-fringe {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(4rem, 20vw, 12rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--ifbf-gold) 0%, var(--ifbf-gold-light) 50%, var(--ifbf-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    padding-bottom: 0.1em;
    display: block;
    animation: ifbfSlideIn 1s ease-out 0.4s both;
    filter: drop-shadow(0 0 40px rgba(212, 168, 83, 0.5));
}

.ifbf-title-burlesque {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 6vw, 3.5rem);
    font-weight: 600;
    color: var(--ifbf-electric-blue);
    display: block;
    margin-top: 0.3rem;
    animation: ifbfSlideIn 1s ease-out 0.6s both;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.3),
        0 0 40px rgba(0, 212, 255, 0.2);
}

.ifbf-title-festival {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.7rem, 1.8vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.5em;
    color: var(--ifbf-white);
    opacity: 0.7;
    display: block;
    margin-top: 0.6rem;
    animation: ifbfSlideIn 1s ease-out 0.8s both;
}

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

/* Decorative line */
.ifbf-decorative-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--ifbf-gold), var(--ifbf-electric-blue));
    margin: 0 auto 1.5rem;
    position: relative;
    animation: ifbfExpandLine 1s ease-out 1s both;
}

.ifbf-decorative-line::before,
.ifbf-decorative-line::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ifbf-gold);
    font-size: 0.7rem;
}

.ifbf-decorative-line::before { left: -18px; }
.ifbf-decorative-line::after { right: -18px; }

@keyframes ifbfExpandLine {
    from { width: 0; opacity: 0; }
    to { width: 100px; opacity: 1; }
}

/* ============================================
   DATES BANNER - DARK TRANSPARENT
   ============================================ */
.ifbf-hero-dates {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 1.2rem 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: ifbfFadeIn 0.8s ease-out 1.2s both;
}

.ifbf-hero-dates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ifbf-gold), transparent);
}

.ifbf-hero-dates::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.1), transparent);
    animation: ifbfShine 4s ease-in-out infinite;
}

@keyframes ifbfShine {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

.ifbf-hero-dates-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
}

.ifbf-hero-dates-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--ifbf-electric-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.ifbf-hero-dates-main {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--ifbf-gold);
    text-shadow: 0 0 15px rgba(212, 168, 83, 0.4);
}

.ifbf-hero-dates-location {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ifbf-white);
    opacity: 0.8;
}

@keyframes ifbfFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ifbf-hero-description {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 0 2rem 0;
    line-height: 1.7;
    animation: ifbfFadeIn 0.8s ease-out 1.4s both;
}

.ifbf-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: ifbfFadeIn 0.8s ease-out 1.6s both;
}

.ifbf-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ifbf-black);
    background: linear-gradient(135deg, var(--ifbf-gold) 0%, var(--ifbf-gold-light) 100%);
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ifbf-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

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

.ifbf-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

.ifbf-cta-primary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ifbf-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ifbf-electric-blue);
    background: transparent;
    border: 1px solid var(--ifbf-electric-blue);
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.ifbf-cta-secondary:hover {
    background: var(--ifbf-electric-blue);
    color: var(--ifbf-black);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.ifbf-cta-secondary svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ============================================
   QUICK ACCESS SLIDER
   ============================================ */
.ifbf-shows-nav {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: 0;
    border-top: 1px solid rgba(212, 168, 83, 0.3);
}

.ifbf-shows-nav-header {
    text-align: center;
    padding: 3rem 1.5rem 2rem;
    background: linear-gradient(180deg, rgba(10, 21, 37, 0.8) 0%, transparent 100%);
}

.ifbf-shows-nav-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--ifbf-electric-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.ifbf-shows-nav-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--ifbf-gold);
    margin: 0;
}

.ifbf-slider-container {
    position: relative;
    overflow: hidden;
}

.ifbf-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.ifbf-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 350px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    color: var(--ifbf-white);
}

.ifbf-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s ease;
}

.ifbf-slide:hover .ifbf-slide-bg {
    transform: scale(1.05);
}

.ifbf-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(3, 5, 8, 0.2) 0%,
        rgba(3, 5, 8, 0.5) 50%,
        rgba(3, 5, 8, 0.9) 100%
    );
    z-index: 1;
}

.ifbf-slide-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    z-index: 2;
    transition: left 0.8s ease;
}

.ifbf-slide:hover .ifbf-slide-shine {
    left: 100%;
}

.ifbf-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
}

.ifbf-slide-time {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ifbf-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(212, 168, 83, 0.5);
}

.ifbf-slide-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ifbf-white);
    margin: 0 0 0.5rem 0;
}

.ifbf-slide-venue {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ifbf-electric-blue);
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Corners */
.ifbf-slide::before,
.ifbf-slide::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid var(--ifbf-gold);
    opacity: 0.4;
    z-index: 4;
    transition: all 0.3s ease;
}

.ifbf-slide::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.ifbf-slide::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.ifbf-slide:hover::before,
.ifbf-slide:hover::after {
    opacity: 1;
    width: 70px;
    height: 70px;
}

/* Navigation */
.ifbf-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(3, 5, 8, 0.8);
    border: 1px solid var(--ifbf-gold);
    color: var(--ifbf-gold);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ifbf-slider-nav:hover {
    background: var(--ifbf-gold);
    color: var(--ifbf-black);
}

.ifbf-slider-prev { left: 15px; }
.ifbf-slider-next { right: 15px; }

.ifbf-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ifbf-slider-dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--ifbf-gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ifbf-slider-dot.active,
.ifbf-slider-dot:hover {
    background: var(--ifbf-gold);
}

/* ============================================
   PROGRAMME SECTION
   ============================================ */
.ifbf-programme-section {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.ifbf-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ifbf-section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--ifbf-electric-blue);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.ifbf-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 600;
    color: var(--ifbf-gold);
    margin: 0;
}

/* Show Cards - Without blue frame on hover */
.ifbf-shows-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ifbf-show-card {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    border: 1px solid rgba(212, 168, 83, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ifbf-show-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.ifbf-show-card:hover {
    border-color: rgba(212, 168, 83, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Golden corners on hover */
.ifbf-show-card-corners {
    position: absolute;
    inset: 10px;
    pointer-events: none;
    z-index: 21;
}

.ifbf-show-card-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--ifbf-gold);
    opacity: 0;
    transition: all 0.4s ease;
}

.ifbf-show-card-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.ifbf-show-card-corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.ifbf-show-card-corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.ifbf-show-card-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.ifbf-show-card:hover .ifbf-show-card-corner {
    opacity: 0.6;
    width: 50px;
    height: 50px;
}

/* Image */
.ifbf-show-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.ifbf-show-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s ease, filter 0.3s ease;
}

.ifbf-show-card:hover .ifbf-show-card-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.ifbf-show-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 5, 8, 0.95) 100%);
    pointer-events: none;
}

/* Shine */
.ifbf-show-card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(212, 168, 83, 0.15) 50%,
        transparent 60%,
        transparent 100%
    );
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 5;
}

.ifbf-show-card:hover .ifbf-show-card-shine {
    left: 150%;
}

/* TIME BADGE */
.ifbf-show-card-time-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--ifbf-gold) 0%, var(--ifbf-gold-light) 100%);
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
}

.ifbf-show-card:hover .ifbf-show-card-time-badge {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 168, 83, 0.5);
}

.ifbf-show-card-time {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ifbf-black);
    line-height: 1;
}

.ifbf-show-card-time-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 2px;
}

.ifbf-show-card-content {
    padding: 2rem;
}

.ifbf-show-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ifbf-gold);
    margin: 0 0 0.5rem 0;
    transition: all 0.3s ease;
}

.ifbf-show-card:hover .ifbf-show-card-title {
    text-shadow: 0 0 20px rgba(212, 168, 83, 0.4);
}

.ifbf-show-card-venue {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ifbf-electric-blue);
    margin-bottom: 1.2rem;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.ifbf-show-card-description {
    font-size: 1rem;
    color: var(--ifbf-grey);
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.ifbf-show-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ifbf-gold);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--ifbf-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ifbf-show-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ifbf-gold) 0%, var(--ifbf-gold-light) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.ifbf-show-card-link:hover::before {
    left: 0;
}

.ifbf-show-card-link:hover {
    color: var(--ifbf-black);
}

.ifbf-show-card-link.ifbf-coming-soon {
    color: var(--ifbf-electric-blue);
    border-color: var(--ifbf-electric-blue);
}

.ifbf-show-card-link.ifbf-coming-soon::before {
    background: var(--ifbf-electric-blue);
}

.ifbf-show-card-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.ifbf-about-section {
    padding: 5rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    position: relative;
    z-index: 1;
}

.ifbf-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ifbf-gold), transparent);
}

.ifbf-about-content {
    max-width: 700px;
    margin: 0 auto;
}

.ifbf-about-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--ifbf-gold);
    margin: 0 0 1.5rem 0;
}

.ifbf-about-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

.ifbf-about-text strong {
    color: var(--ifbf-white);
}

.ifbf-about-highlight {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ifbf-electric-blue);
    margin-top: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.ifbf-contact-section {
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    position: relative;
    z-index: 1;
}

.ifbf-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.ifbf-contact-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--ifbf-gold);
    text-align: center;
    margin: 0 0 2rem 0;
}

/* Contact Form 7 */
.ifbf-contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ifbf-contact-form .wpcf7-form p {
    margin: 0;
}

.ifbf-contact-form .wpcf7-form-control:not([type="submit"]) {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.2);
    color: var(--ifbf-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.ifbf-contact-form .wpcf7-form-control:not([type="submit"]):focus {
    outline: none;
    border-color: var(--ifbf-electric-blue);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.ifbf-contact-form .wpcf7-form-control::placeholder {
    color: var(--ifbf-grey);
    font-style: italic;
}

.ifbf-contact-form textarea.wpcf7-form-control {
    min-height: 150px;
    resize: vertical;
}

.ifbf-contact-form .wpcf7-submit {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ifbf-black);
    background: linear-gradient(135deg, var(--ifbf-gold) 0%, var(--ifbf-gold-light) 100%);
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.ifbf-contact-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.ifbf-footer {
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(212, 168, 83, 0.15);
    text-align: center;
    position: relative;
    z-index: 1;
}

.ifbf-footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ifbf-footer-social a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ifbf-electric-blue);
    transition: all 0.3s ease;
    text-decoration: none;
}

.ifbf-footer-social a:hover {
    background: var(--ifbf-electric-blue);
    color: var(--ifbf-black);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.ifbf-footer-social svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.ifbf-footer-contact {
    margin-bottom: 2rem;
}

.ifbf-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ifbf-gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ifbf-footer-contact a:hover {
    color: var(--ifbf-gold-light);
}

.ifbf-footer-contact svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ifbf-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Footer Legal Links */
.ifbf-footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.ifbf-legal-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ifbf-grey);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ifbf-legal-link:hover {
    color: var(--ifbf-electric-blue);
}

.ifbf-legal-sep {
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   WARNINGS & ACCESSIBILITY SECTION
   ============================================ */
.ifbf-warnings-section {
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.ifbf-warnings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ifbf-warning-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.ifbf-warning-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.ifbf-warning-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ifbf-electric-blue);
    margin: 0 0 0.8rem 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.ifbf-warning-box p {
    font-size: 0.9rem;
    color: var(--ifbf-grey);
    margin: 0;
    line-height: 1.6;
}

.ifbf-warnings-note {
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
}

/* ============================================
   DESKTOP STYLES
   ============================================ */
@media (min-width: 768px) {
    .ifbf-header-content {
        padding: 1rem 3rem;
    }
    
    .ifbf-header-nav {
        display: flex;
    }
    
    .ifbf-header-social {
        display: flex;
    }
    
    .ifbf-lang-switcher {
        display: flex;
    }
    
    .ifbf-menu-toggle {
        display: none;
    }

    .ifbf-hero-cta {
        flex-direction: row;
    }

    .ifbf-slide {
        flex: 0 0 50%;
        min-width: 50%;
        height: 400px;
    }

    .ifbf-slide-time {
        font-size: 4rem;
    }

    .ifbf-slide-title {
        font-size: 1.8rem;
    }

    .ifbf-programme-section {
        padding: 6rem 3rem;
    }

    .ifbf-show-card {
        display: grid;
        grid-template-columns: 450px 1fr;
    }

    .ifbf-show-card:nth-child(even) {
        grid-template-columns: 1fr 450px;
    }

    .ifbf-show-card:nth-child(even) .ifbf-show-card-image {
        order: 2;
    }

    .ifbf-show-card-image {
        height: 100%;
        min-height: 380px;
    }

    .ifbf-show-card-content {
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .ifbf-show-card-title {
        font-size: 2rem;
    }

    .ifbf-show-card-time {
        font-size: 2.5rem;
    }
    
    .ifbf-warnings-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ifbf-about-section {
        padding: 6rem 3rem;
    }

    .ifbf-contact-section {
        padding: 6rem 3rem;
    }

    .ifbf-footer {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .ifbf-slide {
        flex: 0 0 33.333%;
        min-width: 33.333%;
    }
}

/* ============================================
   404 PAGE
   ============================================ */
.ifbf-404-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--ifbf-black);
    position: relative;
}

.ifbf-404-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.ifbf-404-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.ifbf-404-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    color: var(--ifbf-gold);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 80px rgba(212, 168, 83, 0.3);
}

.ifbf-404-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--ifbf-white);
    margin: 0 0 0.5rem 0;
}

.ifbf-404-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ifbf-electric-blue);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.ifbf-404-text {
    font-size: 1rem;
    color: var(--ifbf-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ifbf-404-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ifbf-black);
    background: linear-gradient(135deg, var(--ifbf-gold) 0%, var(--ifbf-gold-light) 100%);
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ifbf-404-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.4);
}

.ifbf-404-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   MODALS (Legal Notice, Privacy Policy)
   ============================================ */
.ifbf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ifbf-modal.active {
    opacity: 1;
    visibility: visible;
}

.ifbf-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 5, 8, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ifbf-modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--ifbf-deep-navy) 0%, var(--ifbf-darker-navy) 100%);
    border: 1px solid rgba(212, 168, 83, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.ifbf-modal.active .ifbf-modal-content {
    transform: translateY(0);
}

.ifbf-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(212, 168, 83, 0.3);
    color: var(--ifbf-gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ifbf-modal-close:hover {
    background: var(--ifbf-gold);
    color: var(--ifbf-black);
}

.ifbf-modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ifbf-gold);
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.ifbf-modal-body {
    font-size: 0.95rem;
    color: var(--ifbf-grey);
    line-height: 1.8;
}

.ifbf-modal-body p {
    margin-bottom: 1rem;
}

/* Footer legal links as buttons */
.ifbf-footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

button.ifbf-legal-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--ifbf-grey);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

button.ifbf-legal-link:hover {
    color: var(--ifbf-electric-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.ifbf-legal-sep {
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE - Mobile Hero centered
   ============================================ */
@media (max-width: 768px) {
    .ifbf-hero {
        align-items: center;
    }
    
    .ifbf-hero-bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(3, 5, 8, 0.5) 0%,
            rgba(3, 5, 8, 0.6) 50%,
            rgba(3, 5, 8, 0.85) 100%
        );
    }
    
    .ifbf-hero-content {
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .ifbf-hero-dates-content {
        align-items: center;
    }
    
    .ifbf-hero-description {
        margin: 0 auto 2rem;
    }
}
