/* --- Base Styles --- */
/* Import d'une police Ã©lÃ©gante (remplacez-la par une police de votre choix) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Déclaration de la police Neuropol Custom */
@font-face {
    /* C'est le nom que vous utiliserez dans les autres règles CSS (ex: .hero-title) */
    font-family: 'Neuropol Custom';

    /* Chemin vers votre fichier de police.
       Le chemin '../fonts/' est correct si votre fichier CSS est dans 'assets/css/' 
       et votre police dans 'assets/fonts/' */
    src: url('https://assets.team-réality.com/assets/fonts/neuropol/Neuropol X Rg.otf') format('opentype');

    font-weight: normal;
    font-style: normal;
    /* Indique au navigateur de charger la police en priorité ou d'utiliser une alternative temporaire */
    font-display: swap;
}

*,::before,
::after {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    overflow-x: hidden;
}


h1, h2, h3 {
    font-weight: 400;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

@media screen and (min-width : 0px) {
    .roses_wrapper {
        width: 100%;
        height: auto;
        margin: 40px 0px;
    }

    .roses_container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .roses_img {
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .roses_img>img {
        width: 100%;
    }

    .roses_text {
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .roses_text>h1 {
        font-family: sans-serif;
        font-size: 2rem;
        margin: 20px 0px 0px 0px;
        color: #801841;
    }

    .roses_text>p {
        font-family: sans-serif;
        font-size: 1.25rem;
        margin: 10px 0px 0px 0px;
    }

    .roses_site{
        margin-top: 10px;
        color: #801841;
    }

    .view-all-btn-roses {
        display: inline-block;
        background-color: #e6708b;
        color: var(--secondary-color);
        border: 1px solid #e6708b;
        padding: 1.2rem 2.5rem;
        /* Augmentation du rembourrage */
        margin-top: 2rem;
        font-size: 1.1rem;
        /* Augmentation de la taille de la police */
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s ease;
    }

    .view-all-btn-roses:hover {
        background-color: var(--secondary-color);
        color: #e6708b;
    }
}

@media screen and (min-width : 768px) {
    .roses_wrapper {
        width: 100%;
        height: auto;
        display: flex;
        margin: 40px 0px;
        justify-content: center;
        align-items: center;
    }

    .roses_container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 50px;
    }

    .roses_img {
        width: 40%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .roses_img>img {
        width: 100%;
    }

    .roses_text {
        width: 75%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .roses_text > p{
        text-align: center;
    }
}