/* Home page - Chartre graphique Montessori Algérie */

/* Polices : Tan Winkle → Caveat (titres), Simonetta (paragraphes) - toute la page */
.page-home .main {
    font-family: 'Simonetta', serif;
}

.page-home .main h1,
.page-home .main h2,
.page-home .main h3,
.page-home .main h4,
.page-home .main h5,
.page-home .main h6 {
    font-family: 'Caveat', cursive;
}

/* Popup actualité */
.page-home #actualityModal .modal-title {
    font-family: 'Caveat', cursive;
}

.page-home #actualityModal .modal-body,
.page-home #actualityModal .modal-footer .btn {
    font-family: 'Simonetta', serif;
}

.font-tanwinkle {
    font-family: 'Caveat', cursive;
}

.font-simonetta {
    font-family: 'Simonetta', serif;
}

/* Hero - Image pleine largeur */
.home-hero {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Section Un seul projet */
.home-project-section {
    background: #c5e063;
    padding: 4rem 0;
    position: relative;
}

.home-project-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fffef5;
    text-align: center;
    margin-bottom: 0.5rem;
}

.home-project-subtitle {
    font-family: 'Simonetta', serif;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
}

.home-project-lightbulb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #0086be;
    border-radius: 8px;
    margin-left: 1rem;
    vertical-align: middle;
}

.home-project-lightbulb img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

/* Section Qui sommes nous - affichage large type consulting */
.qui-sommes-nous-section {
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #fff;
}

.qui-sommes-nous-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: #5dbcd2;
}

.qui-sommes-nous-title .question {
    color: #f5b642;
    font-style: italic;
}

.qui-sommes-nous-text {
    font-family: 'Simonetta', serif;
    color: #7ab8c9;
    font-size: 1.2rem;
    line-height: 1.9;
}

.qui-sommes-nous-img {
    max-height: none;
    width: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

/* Section 4 cartes - même section #c5e063 */
.home-cards-section {
    background: #c5e063;
    padding: 5rem 0;
}

.home-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.home-card-icon {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.home-card-title {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-card-description {
    font-family: 'Simonetta', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.home-card-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'Simonetta', serif;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    transition: opacity 0.3s;
}

.home-card-cta:hover {
    opacity: 0.9;
    color: #fff !important;
}

.home-card-maternelle .home-card-title {
    color: #4caf50;
}

.home-card-maternelle .home-card-cta {
    background: #4caf50;
}

.home-card-mia .home-card-title {
    color: #0086be;
}

.home-card-mia .home-card-cta {
    background: #0086be;
}

.home-card-adalen .home-card-title {
    color: #f5b642;
}

.home-card-adalen .home-card-cta {
    background: #f5b642;
}

.home-card-edition .home-card-title {
    color: #e57373;
}

.home-card-edition .home-card-cta {
    background: #e57373;
}

@media (max-width: 991px) {
    .qui-sommes-nous-section {
        min-height: auto;
    }

    .home-hero {
        min-height: 60vh;
    }
}