/* Carousel Container - Fixed to bottom right corner */
#giro-carousel-container {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 4;
    width: 170px;
    height: 170px;
    background: transparent;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}





/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Carousel Slides Container */
.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Individual Slide */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
/* Individual Slide */
.carousel-slide.slide-3 .mobile-mascot-plaque .mascot-name  {
    color:#5F5E60;
}


.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Slide content wrapper - needed for absolute positioning of plaque */
.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Mobile Mascot Plaque */
.mobile-mascot-plaque {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 6px;
    color: white;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
    white-space: nowrap;
    /* Background color comes from image metadata via PHP inline styles */
}

.mobile-mascot-plaque .mascot-name {
    display: inline-block;
}

/* Mobile styles  */
@media (max-width: 992px) {
    #giro-carousel-container {
        width: 90px;
        height: 90px;
        left:0px;
    }
    
    /* Better mobile typography */
    .mobile-mascot-plaque {
        font-size: 10px;
        padding: 1px 4px;
        /* Don't override background - let metadata colors show */
    }
    
    /* Hide "Meet" prefix on mobile to save space */
    .meet-prefix {
        display: none;
    }
}
