html{
    --font-celtic:'Celtic', Arial, sans-serif;
    --font-arial:'Arial Rounded', Arial, sans-serif;
    --btn-color: #996533;
    --bg-color-brown: #996533;
    --white: #ffffff;
    --black: #000000;
    --dark-primary: #7a502a;
    --light-primary: #c49b76;
}

@font-face {
    font-family: 'Celtic';
    src: url('../fonts/CELTG___.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial Rounded';
    src: url('../fonts/arlrdbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


.autres h3{
    color: var(--white);
}


.autres {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    background-color: var(--bg-color-brown);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 1rem;
}

.btn-container_autres {
    display: flex;
    margin-top: 2rem;
}

.btn-container_autres .btn {
    margin-right: 2rem;
    background-color: var(--white);
    color: var(--dark-primary);
}

.btn-container_autres .btn:hover {
    background-color: var(--dark-primary);
    color: var(--white);
    transform: translateY(-3px);
}


/* Media Query pour Mobile */
@media (max-width: 768px) {
    .autres {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }


    .btn-container_autres {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-container_autres .btn {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 80%;
        text-align: center;
    }
}


/* Media Query pour petits mobiles */
@media (max-width: 480px) {

    .autres {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .btn-container_autres {
        margin-top: 1.5rem;
        width: 100%;
    }

    .btn-container_autres .btn {
        width: 100%;
        padding: 8px 15px;
        margin-bottom: 0.8rem;
        font-size: 14px;
    }
}