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

}

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

.hero {
    color: var(--primary);
    text-align: center;
    padding: 3rem 2rem;
    text-align: center;

}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-celtic);
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--black);
}

.portees {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portee {
    display: flex;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.portee:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.portee-image {
    flex: 1;
    max-width: 400px;
}

.portee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portee-details {
    flex: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.portee-titre h2 {
    color: var(--primary);
    font-size: 1.8rem;
    font-family: var(--font-arial);
}

.portee-statut {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.portee-infos {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.portee-info {
    flex: 1;
    background-color: var(--light-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-right: 1rem;
}

.portee-info:last-child {
    margin-right: 0;
}

.portee-info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
}

.portee-description {
    margin-bottom: 1rem;
}


@media (max-width: 1024px) {
    .portee {
        flex-direction: column;
    }

    .portee-image {
        max-width: 100%;
        height: 300px;
    }

    .portee-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .portee-infos {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .portee-info {
        margin-bottom: 1rem;
    }
}