/* Hero Spotlight Carousel Styles */

.hero-spotlight-carousel {
    position: relative;
}

.carousel-slides-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    width: 100%;
    flex-shrink: 0;
    min-height: 420px;
    display: flex;
    align-items: stretch;
}

.carousel-slide section {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

/* Arrow visibility - show on hover */
.carousel-prev,
.carousel-next {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: auto;
}

/* Show arrows when hovering over the carousel */
.hero-spotlight-carousel:hover .carousel-prev,
.hero-spotlight-carousel:hover .carousel-next {
    opacity: 1;
}

/* Keep arrows visible when directly hovering them */
.carousel-prev:hover,
.carousel-next:hover {
    opacity: 1;
}

/* Keep arrows visible when focused (keyboard navigation) */
.carousel-prev:focus,
.carousel-next:focus {
    opacity: 1;
}

@media (max-width: 768px) {
    /* Always show arrows on mobile for better touch interaction */
    .carousel-prev,
    .carousel-next {
        opacity: 1;
    }
}

/* Enhanced color accents for each spotlight */
.spotlight-badge[data-accent="blue"] {
    border-color: rgb(59 130 246 / 0.8) !important;
    box-shadow: 0 0 25px rgb(59 130 246 / 0.4), inset 0 0 15px rgb(59 130 246 / 0.1);
    background: rgb(59 130 246 / 0.15) !important;
}
.spotlight-badge[data-accent="blue"] .spotlight-icon {
    color: rgb(147 197 253);
    filter: drop-shadow(0 0 4px rgb(59 130 246 / 0.5));
}

.spotlight-badge[data-accent="green"] {
    border-color: rgb(34 197 94 / 0.8) !important;
    box-shadow: 0 0 25px rgb(34 197 94 / 0.4), inset 0 0 15px rgb(34 197 94 / 0.1);
    background: rgb(34 197 94 / 0.15) !important;
}
.spotlight-badge[data-accent="green"] .spotlight-icon {
    color: rgb(134 239 172);
    filter: drop-shadow(0 0 4px rgb(34 197 94 / 0.5));
}

.spotlight-badge[data-accent="purple"] {
    border-color: rgb(168 85 247 / 0.8) !important;
    box-shadow: 0 0 25px rgb(168 85 247 / 0.4), inset 0 0 15px rgb(168 85 247 / 0.1);
    background: rgb(168 85 247 / 0.15) !important;
}
.spotlight-badge[data-accent="purple"] .spotlight-icon {
    color: rgb(196 181 253);
    filter: drop-shadow(0 0 4px rgb(168 85 247 / 0.5));
}

.spotlight-badge[data-accent="orange"] {
    border-color: rgb(249 115 22 / 0.8) !important;
    box-shadow: 0 0 25px rgb(249 115 22 / 0.4), inset 0 0 15px rgb(249 115 22 / 0.1);
    background: rgb(249 115 22 / 0.15) !important;
}
.spotlight-badge[data-accent="orange"] .spotlight-icon {
    color: rgb(253 186 116);
    filter: drop-shadow(0 0 4px rgb(249 115 22 / 0.5));
}

.spotlight-badge[data-accent="indigo"] {
    border-color: rgb(99 102 241 / 0.8) !important;
    box-shadow: 0 0 25px rgb(99 102 241 / 0.4), inset 0 0 15px rgb(99 102 241 / 0.1);
    background: rgb(99 102 241 / 0.15) !important;
}
.spotlight-badge[data-accent="indigo"] .spotlight-icon {
    color: rgb(165 180 252);
    filter: drop-shadow(0 0 4px rgb(99 102 241 / 0.5));
}

.spotlight-badge[data-accent="red"] {
    border-color: rgb(239 68 68 / 0.8) !important;
    box-shadow: 0 0 25px rgb(239 68 68 / 0.4), inset 0 0 15px rgb(239 68 68 / 0.1);
    background: rgb(239 68 68 / 0.15) !important;
}
.spotlight-badge[data-accent="red"] .spotlight-icon {
    color: rgb(248 113 113);
    filter: drop-shadow(0 0 4px rgb(239 68 68 / 0.5));
}