@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Alata&family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #ffffff;
    /*background-color: #010023;*/
    font-family: "Albert Sans", sans-serif;
    color: black;

    h2{
        font-family: Alata, sans-serif;
        color: black;
        font-size: 40px;
    }
}

.introrea{
    justify-content: center;
    align-content: center;
    text-align: center;
    width: 100%;
    height: 25vh;
    position: relative;
    background: linear-gradient(rgb(41,41,41) 97.5%, #ffb1ce 97.5%);
}

.introreatexte{
    margin-top: 3em;
}

.introrea h1 {
    color: #ffb1ce;
    font-family: Aclonica, sans-serif;
}

.introrea p{
    font-family: Alata, sans-serif;
    color: white;
}

.filter-controls button.active {
    color: white;
    background-color: rgb(41,41,41);
}

.hidden {
    display: none !important;
}

.filter-controls{
    margin: 2em 10em;
    button {
        margin: 5px;
        background-color: #efefef;
        color: rgb(41,41,41);
        border-radius: 10em;
        padding: 10px 12px;
        font-size: 15px;
        font-family: "Albert Sans",sans-serif;
        border: none;
        cursor: pointer;
    }

    p{
        margin: 0 0 10px 10px;
        font-size: 15px;
    }
}

.allrea{
    margin: 3em 10em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    justify-items: center;
}

a{
    text-decoration: none;
}

.clean-card {
    font-family: 'Segoe UI', sans-serif;
    width: 340px;
    color: #222;
    background-color: white;
    transition: ease-in-out 0.2s;
    cursor: pointer;
}

.clean-card:hover{
    transform: scale(1.05);
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 0.8em;
    font-weight: 600;
    border-radius: 4px;
    color: white;
}

.badge.black {
    background-color: #ffb1ce;
}

.clean-card h3 {
    font-size: 1.2em;
    margin: 15px 0 8px;
    font-weight: bold;
}

.clean-card .description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #444;
}

.clean-card .date {
    margin-top: 12px;
    font-size: 0.85em;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

