/* Reset de base / remise à zéro */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --fond-blanc-casse: #f9f8f6;
    --accent: #d4b483;
    --texte: #333;
    --gris-clair: #eae8e5;
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--fond-blanc-casse);
    margin: 0;
    color: var(--texte);
    display: block;
    flex-direction: column;
    align-items: center;
    color: #666;
    line-height: 1.5;
    padding: 1rem;
}


/* Logo responsive */
#header-logo {
    max-width: 280px;
    height: auto;
}

header, main, footer {
    max-width: 800px;
    margin: 0 auto;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

header {
    /*text-align: center;*/
    /*padding: 1.5rem 1rem 0;*/
}


header img {
    /*max-width: 260px;*/
    /*height: auto;*/
}

main {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    /*padding: 1.5rem;*/
}

.season-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}


footer {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin: 2rem 0;
}
