/* Comportement de défilement lisse */
html {
    scroll-behavior: smooth;
}

/* Style global du body */
body {
    background-color: #CCAA93;
    font-family: 'Wittgenstein', serif;
    text-align: center;
    display: grid;
    justify-items: center;
}

/* Conteneur général */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style de la bannière */
.banner {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 25px;
    margin: 1rem 0 2rem;
}

.banner h2 {
    letter-spacing: 0.1em;
    font-size: 2rem;
    text-shadow: 2px 2px 4px #655449;
}

.site-logo {
    width: 125px;
    height: auto;
    margin-right: 20px;
}

/* Style de la carte de présentation */
.presentation-card {
    border-radius: 25px;
    transition: transform 0.2s ease;
    text-align: center;
    width: 90%;
    margin-bottom: 1rem;
}

.presentation-card p {
    font-size: 2rem;
    color: black;
    font-weight: bold;
}

/* Media queries pour la réactivité */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner h2 {
        font-size: 1.5rem;
    }

    .site-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .presentation-card {
        width: 100%;
    }

    .presentation-card p {
        font-size: 1.5rem;
    }
}
