/* ============================================
   HERO FEATURED EVENT v4.2.0
   Matches screenshot design exactly
   ============================================ */

/* Hero Section - Full Width Dark Background */
.levelup-featured-hero {
    width: 100%;
    background: #1a3a52;
    margin: 0 0 50px 0;
    padding: 0;
}

.levelup-featured-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   LEFT CONTENT AREA - Dark Background
   ============================================ */

.featured-hero-content {
    flex: 1;
    background: #1a3a52;
    color: #ffffff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #ffffff;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 25px 0;
}

.hero-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b6b;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 25px 0;
}

.hero-availability svg {
    flex-shrink: 0;
}

/* CTA Button */
.hero-cta {
    margin: 0 0 35px 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: #5bc0de;
    color: #1a3a52;
}

.hero-btn-primary:hover {
    background: #46b8da;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 192, 222, 0.3);
}

.hero-btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Feature Bullets */
.hero-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
}

.hero-features li:last-child {
    margin-bottom: 0;
}

.hero-features svg {
    flex-shrink: 0;
    color: #5bc0de;
    margin-top: 2px;
}

.hero-features strong {
    color: #ffffff;
    font-weight: 600;
}

/* ============================================
   RIGHT IMAGE AREA
   ============================================ */

.featured-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.featured-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #2c5364 0%, #203a43 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

/* Spots Left Badge */
.spots-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #5bc0de;
    color: #1a3a52;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .levelup-featured-container {
        flex-direction: column;
    }
    
    .featured-hero-content {
        padding: 40px 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .featured-hero-image {
        min-height: 400px;
    }
    
    .spots-badge {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Stack: Image on top, content below */
    .levelup-featured-container {
        flex-direction: column-reverse;
    }
    
    .featured-hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 0.9rem;
    }
    
    .hero-features li {
        font-size: 0.95rem;
    }
    
    .featured-hero-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .featured-hero-content {
        padding: 25px 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-availability {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        margin-bottom: 25px;
    }
    
    .hero-features li {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .featured-hero-image {
        min-height: 250px;
    }
    
    .spots-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}
