/*
* TEDxShahpura Lake — slider theme additions only
* All other styles live in eventflow.css / eventflow-responsive.css
*/

/* Animated wrapper for "THEME OF 2026" pill inside hero slides */
.main-slider__theme-tag {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1500ms ease, opacity 1500ms ease;
    display: inline-block;
    margin-bottom: 20px;
}

.swiper-slide-active .main-slider__theme-tag {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 900ms;
}

/* Bigger event name above the theme title */
.slider-event-name {
    font-size: 32px !important;
    letter-spacing: 0.08em;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: none !important;
}

/* Override tagline size + colour inside the hero slider only */
.main-slider__content .slider-theme-label {
    font-size: 28px !important;
    letter-spacing: 0.35em;
    line-height: 1.2;
    /* eventflow.css uses background-clip:text which makes the fill transparent;
       override so the colour is actually visible at this larger size */
    -webkit-text-fill-color: #E62B1E !important;
    background: none !important;
}

@media only screen and (max-width: 767px) {
    /* Force theme-tag visible — bypass opacity:0 animation on mobile */
    .main-slider__theme-tag {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .slider-event-name {
        font-size: 20px !important;
        margin-bottom: 8px;
    }

    .main-slider__content .slider-theme-label {
        font-size: 18px !important;
        letter-spacing: 0.2em;
    }

    /* Allow title to wrap on small screens */
    .main-slider__title {
        white-space: normal !important;
    }
}
