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;
}


header {
    color: var(--dark-primary);
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

h1 {
    font-family: var(--font-celtic);
    font-size: 2.5rem;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f8f4f0;
}

.historique{
    background-color: var(--bg-color-brown);
    color: var(--white);
}

.historique h2{
    color: var(--black);
}

h2 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    border-bottom: 3px solid var(--light-primary);
    padding-bottom: 0.5rem;
}

.hero-image {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.characteristics {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1rem;
}

.characteristic {
    flex-basis: 48%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--white);
    font-weight: bold;
}

.icon img{
    width: 100%;
    border-radius: 50%;
}

.characteristic-text{
    width: 70%;
}

@media (max-width: 768px) {
    .characteristic {
        flex-basis: 100%;
    }
}