/* ===== BODY ===== */
body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(-45deg, 
        #0d0d0d, #2a0d2a, #0d2a2a, #1a0d2a, #6a0dad, #087676ff, #670667, #185c4eff
    );
    background-size: 400% 400%;
    animation: fluorescentBG 25s ease infinite;
    color: #fff;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 50px;
    flex-direction: column;
}

@keyframes fluorescentBG {
    0% {background-position: 0% 50%;}
    25% {background-position: 50% 100%;}
    50% {background-position: 100% 50%;}
    75% {background-position: 50% 0%;}
    100% {background-position: 0% 50%;}
}

/* ===== SECTION RECTANGLES ===== */
.cards-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 80px 20px;
}

.info-card {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #f0f3f0ff;
}

.info-card.expanded {
    width: 100%;
    height: auto;
    min-height: 400px;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    text-align: left;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card > :first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: #067b19ff;
    margin-bottom: 15px;
}

.info-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #077b0fff;
    margin-top: 20px;
}

.info-card p,
.info-card div {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin-top: 10px;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* ===== COMMENTAIRES ===== */
.commentaires {
    padding: 60px 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    overflow: hidden;
    margin-bottom: 80px;
}

.commentaires h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #067835ff;
}

.commentaires-slider {
    display: flex;
    gap: 30px;
    animation: slide-left 30s linear infinite;
}

.commentaire-item {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

@keyframes slide-left {
    0% {transform: translateX(0);}
    100% {transform: translateX(-50%);}
}

/* ===== HERO ===== */
.presentation-text-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    gap: 50px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    flex: 1 1 500px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 70%;
    height: auto;
    border-radius: 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .info-card {
        width: 90%;
        height: auto;
    }

    .commentaires-slider {
        flex-direction: column;
        gap: 20px;
        animation: none;
    }

    .commentaire-item {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .info-card > :first-child {
        font-size: 1.5rem;
    }

    .info-card h5 {
        font-size: 1.1rem;
    }

    .cards-section {
        padding: 40px 10px;
        gap: 15px;
    }

    .presentation-text-hero {
        padding: 40px 20px;
        gap: 20px;
    }

    .hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .info-card {
        font-size: 1rem;
        padding: 20px;
    }

    .commentaires h3 {
        font-size: 1.5rem;
    }
}
