/* FrontEnd IA SCPI - Styles personnalisés */

:root {
    --primary-color: #1e3c72;
    --primary-light: #2a5298;
    --secondary-color: #28a745;
    --accent-color: #dc3545;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --background-light: #f8f9fa;
    --background-secondary: #e9ecef;
    --border-light: #dee2e6;
}

/* Styles globaux */
.scpi-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.scpi-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.scpi-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Animations et transitions */
.scpi-card-hover {
    transition: all 0.3s ease;
}

.scpi-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Boutons personnalisés */
.scpi-btn-primary {
    background: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.scpi-btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.scpi-btn-success {
    background: var(--secondary-color);
    border: none;
    transition: all 0.3s ease;
}
.scpi-btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Hero section spécifique */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Cartes SCPI */
.scpi-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.scpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.scpi-card-featured {
    border-top: 4px solid var(--secondary-color);
}

/* Statistiques */
.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        text-align: center;
        padding: 40px 0;
    }
    
    .stats-number {
        font-size: 2rem;
    }
}

/* Couleurs spécifiques aux secteurs SCPI */
.sector-bureaux {
    color: var(--primary-color);
}

.sector-commerces {
    color: var(--secondary-color);
}

.sector-sante {
    color: var(--accent-color);
}

.sector-mixte {
    color: #6f42c1;
}