
/* pop-up cookie */
.pop-cookie {
    position:fixed;
    bottom:25px;
    right:25px;
    width:250px;
    background-color: black;
    color: white;
    padding: 10px 25px 10px 10px;
    text-align: center;
    border-radius: 7px;

    /* Pour positionner la croix de fermeture */
    .close-btn {
        position: absolute;
        top: -4px;
        right: -4px;
        cursor: pointer;
        font-size: 20px;
    }
}

/* contact-section */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: #ffe9e9;

    .text-content {
        flex-basis: 40%;

        h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
        }

        p {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 30px;
        }

        button {
            padding: 10px 25px;
            background-color: #333;
            color: #fff;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;

            &:hover {
                background-color: #555;
            }
        }

    }

    .image-content {
        flex-basis: 60%;

        img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
    }
}












/* bloc 3 colonnes */
.rowbloc {
    background-color: #1b1b1b;
    color: white;
    max-width: 100%;
    display: flex;
    flex-direction: column;

    .row {
        width: 80%;
        margin: auto;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        padding:16px;
        gap:5px;
        background-color: #402727;
        /* larger than 1000px */
        @media (min-width: 800px) {
            flex-direction: row;
        }

        .col {
            width:100%;
            background-color: #737373;
            padding:16px;
            *{
                margin:0;
            }
        }
    }
}