/* css/featured-selection.css */

.featured-selection-section {
    background-color: #0f1114; /* Dark gray almost black matching screenshot */
    overflow: hidden;
}

/* Background Image Overlay with darkening */
.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
    mix-blend-mode: luminosity;
    background-color: #000;
}

.featured-selection-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.letter-spacing-2 { letter-spacing: 2px; }

/* Image styling */
.selection-img {
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.selection-item:hover .selection-img {
    transform: scale(1.1) translateX(10px);
}

/* Button Hover State - Turn Red on Hover */
.group-hover-btn {
    border-color: #555;
    transition: 0.3s all;
}

.selection-item:hover .group-hover-btn {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

/* Remove default list styles if any */
.feature-list li i {
    font-size: 14px;
}

/* ===========================
   MOBILE RESPONSIVE STYLES
   =========================== */

@media (max-width: 991px) {
    .featured-selection-section {
        padding: 40px 0 !important;
    }
    
    .selection-img {
        max-height: 100px;
    }
    
    .selection-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .featured-selection-section {
        padding: 30px 0 !important;
    }
    
    .selection-img {
        max-height: 80px;
    }
    
    .selection-item h4 {
        font-size: 1.1rem !important;
    }
    
    .selection-item p {
        font-size: 13px;
    }
    
    .feature-list li {
        font-size: 13px;
    }
    
    .group-hover-btn {
        font-size: 13px !important;
        padding: 8px 20px !important;
    }
}