/**
 * Simplified Hero Section Styles
 */

/* Hero Section - نظيف وبسيط */
.project-hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Badges */
.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-badges .badge {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
}

.badge.status-badge {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Project Title in Hero */
.project-hero-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

/* Featured Location Row in Table */
.location-row-featured {
    background: linear-gradient(135deg, #fffbf8 0%, #fff5ed 100%);
    border-right: 4px solid var(--primary-color);
    padding: 15px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .project-hero {
        height: 250px;
    }

    .project-hero-title {
        font-size: 1.8rem;
    }

    .hero-badges .badge {
        font-size: 13px;
        padding: 6px 14px;
    }
}