/**
 * منارات الفرص - صفحات المدن
 * Manarat Elforas - City Pages Stylesheet
 * استخدم مع main.css
 */

/* ============================================
   City Hero
   ============================================ */
.page-hero.city-hero {
    background: linear-gradient(160deg, var(--dark-teal) 0%, var(--medium-teal) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.city-emoji { 
    font-size: 4rem; 
    margin-bottom: 1rem; 
}

.page-hero h1 { 
    font-size: clamp(2rem, 5vw, 3rem); 
    color: var(--gold); 
    margin-bottom: 0.5rem; 
}

.page-hero-subtitle { 
    font-size: 1.2rem; 
    color: var(--light-cream); 
}

/* ============================================
   City Intro
   ============================================ */
.city-intro { 
    max-width: 700px; 
    margin: 0 auto; 
    text-align: center; 
}

.lead-text { 
    font-size: 1.2rem; 
    line-height: 2; 
}

/* ============================================
   Districts Grid
   ============================================ */
.districts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.district-tag {
    background: rgba(0, 42, 40, 0.5);
    border: 1px solid rgba(174, 147, 87, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    color: var(--light-cream);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.district-tag:hover {
    background: var(--gold);
    color: var(--dark-teal);
    border-color: var(--gold);
}

/* ============================================
   City Services Grid
   ============================================ */
.city-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.city-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 76, 72, 0.3);
    border: 1px solid rgba(174, 147, 87, 0.15);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-normal);
}

.city-service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(0, 76, 72, 0.5);
}

.service-emoji { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
}

.city-service-card h3 { 
    color: var(--gold); 
    font-size: 1rem; 
    margin: 0; 
}

/* ============================================
   CTA Buttons
   ============================================ */
.cta-buttons { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .page-hero.city-hero {
        padding: 4rem 0 2rem;
    }
    
    .city-emoji {
        font-size: 3rem;
    }
}
