/* 🏠 Styles spécifiques pour la page d'accueil ASSEMA */

/* Styles pour le contenu hero */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p {
    font-size: 1.3rem;
    margin: 0 0 40px 0;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration > div {
    position: absolute;
    font-size: 3rem;
}

.hero-decoration > div:nth-child(1) {
    top: 20%;
    left: 10%;
}

.hero-decoration > div:nth-child(2) {
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
}

.hero-decoration > div:nth-child(3) {
    bottom: 30%;
    left: 20%;
    font-size: 2rem;
}

/* Styles pour les liens de statistiques */
.stat-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.stat-link:hover {
    transform: translateY(-5px);
}

.stat-card {
    text-align: center;
    background: var(--gradient-vert);
    color: white;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: var(--border-radius-grand);
    box-shadow: var(--ombre-verte);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--ombre-forte);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Styles pour les cartes de produits et actualités */
.product-card, .news-card {
    text-align: center;
}

/* Styles pour les sections colorées */
.section-blue {
    background: var(--brun-clair);
    color: white;
    padding: 4rem 0;
}

.section-gradient {
    background: var(--color-neutral);
    color: var(--gris-anthracite);
    padding: 4rem 0;
}

.section-orange {
    background: var(--jaune-dore);
    color: var(--gris-anthracite);
    padding: 4rem 0;
}

.section-purple {
    background: var(--vert-clair);
    color: white;
    padding: 4rem 0;
}

/* Amélioration des cartes de sociétés */
.section-cream .card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-grand);
    border: 1px solid var(--gris-moyen);
}

.section-cream .card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--ombre-verte);
    border-color: var(--vert-tendre);
}

/* Styles pour l'en-tête de page personnalisé */
.page-header {
    background: var(--brun-clair);
    padding: 3rem 0;
    text-align: center;
}

.highlight-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive pour la page d'accueil */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}
