h1 {
    display: none;
}

/* TELECHARGEMENT HERO */
.telechargement-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 80px 20px;
    background-color: #000000;
    color: #F5F5F5;
    text-align: center;
    margin-top: 0;
}

.telechargement-hero h2 {
    font-family: 'Anton', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.telechargement-hero p {
    font-family: 'Arimo', serif;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.telechargement-hero a {
    color: #F5F5F5;
    font-family: 'Arimo', serif;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.telechargement-hero a:hover {
    color: #9D2137;
    transform: scale(1.2);
}

.telechargement-hero-content {
    flex: 1 1 500px;
    padding: 20px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-buttons a img {
    height: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-buttons a img:hover {
    transform: scale(1.2);
}

/* FEATURES */
.features {
    background-color: #0E0E0E;
    padding: 80px 20px;
    text-align: center;
}

.feature-container h2 {
    font-family: 'Anton', serif;
    color: #F5F5F5;
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-conclusion {
    font-family: 'Arimo', serif;
    color: #F5F5F5;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-conclusion:hover {
    color: #9D2137;
    transform: scale(1.2);
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature {
    background-color: #541826;
    padding: 30px;
    border-radius: 16px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.feature img {
    height: 400px;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 10px;
    font-family: 'Anton', serif;
    font-size: 1.2rem;
    font-weight: 100;
    color: #F5F5F5;
}

.feature p {
    font-family: 'Arimo', serif;
    font-size: 1rem;
    color: #F5F5F5;
}

/* SCREENSHOTS */
.screenshots {
    background-color: #000000;
    color: #F5F5F5;
    padding: 80px 20px;
    text-align: center;
}

.screenshots h2 {
    font-family: 'Anton', serif;
    color: #F5F5F5;
    font-size: 2rem;
    margin-bottom: 20px;
}

.screenshot-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.screenshot-grid img {
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.screenshot-grid img:hover {
    transform: scale(1.05);
}

/* DOWNLOAD FINAL */
.download-final {
    background-color: #0E0E0E;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.download-final h2 {
    font-family: 'Anton', serif;
    color: #F5F5F5;
    font-size: 2rem;
    margin-bottom: 20px;
}

.download-final .download-buttons {
    gap: 30px;
}

.download-final .download-buttons a img {
    height: 60px;
}

/* ANIMATIONS JS */
.animate-block {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-block.active {
    opacity: 1;
    transform: translateY(0);
}

/* MEDIA QUERIES */

/* Tablettes et petits laptops */
@media (max-width: 1024px) {
    .telechargement-hero {
        flex-direction: row;
        padding: 60px 20px;
    }

    .telechargement-hero-content {
        flex: 1 1 100%;
        padding: 15px;
    }

    .telechargement-hero h2 {
        font-size: 2.5rem;
    }

    .telechargement-hero p {
        font-size: 1.1rem;
        max-width: 90%;
        margin-bottom: 30px;
    }

    .download-buttons a img {
        height: 45px;
    }

    .feature-container h2 {
        font-size: 1.8rem;
    }

    .feature-grid {
        gap: 30px;
    }

    .feature {
        width: 250px;
        padding: 25px;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.95rem;
    }

    .feature-conclusion {
        font-size: 1rem;
        margin-top: 25px;
    }

    .screenshot-grid img {
        width: 250px;
    }

    .download-final .download-buttons a img {
        height: 55px;
    }
}

/* Tablettes portrait / grands mobiles */
@media (max-width: 768px) {
    .telechargement-hero {
        padding: 50px 15px;
    }

    .telechargement-hero h2 {
        font-size: 2.2rem;
    }

    .telechargement-hero p {
        font-size: 1rem;
    }

    .download-buttons a img {
        height: 40px;
    }

    .feature-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .feature {
        width: 90%;
        max-width: 320px;
        padding: 20px;
    }

    .feature h3 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.95rem;
    }

    .feature-conclusion {
        font-size: 0.95rem;
        margin-top: 20px;
    }

    .screenshot-grid img {
        width: 90%;
        max-width: 300px;
    }

    .download-final .download-buttons a img {
        height: 50px;
    }
}

/* Mobiles */
@media (max-width: 480px) {
    .telechargement-hero h2 {
        font-size: 1.8rem;
    }

    .telechargement-hero p {
        font-size: 0.95rem;
    }

    .download-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .download-buttons a img {
        height: 40px;
    }

    .feature-container h2 {
        font-size: 1.6rem;
    }

    .feature h3 {
        font-size: 0.95rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .feature-conclusion {
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .screenshot-grid img {
        width: 100%;
        max-width: 280px;
    }

    .download-final .download-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .download-final .download-buttons a img {
        height: 45px;
    }
}