/* --- HEADER AU-DESSUS DE LA BANNIÈRE --- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: transparent;
    padding: 20px 30px 0 30px;
}

/* Conteneur du logo */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* LOGO RESPONSIVE */
.site-logo {
    width: 100%;
    max-width: 200px; /* taille max sur ordinateur */
    height: auto;
}

/* Sur mobile : logo plus petit automatiquement */
@media (max-width: 600px) {
    .site-logo {
        max-width: 140px;
    }
}

/* --- BANNIÈRE FULL WIDTH --- */
.banner {
    margin: 0;
    padding: 0 0 40px 0; /* espace sous la bannière */
}

.banner-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
#plizine {
    display: block;          /* permet le centrage */
    margin: 0 auto;          /* centre l’image horizontalement */
    max-width: 100%;         /* empêche l’image de dépasser l’écran */
    height: auto;            /* garde les proportions */
}
/* Couleur de fond douce */
body {
    background-color: #e6f8fe;
}/* Police globale */
* {
    font-family: "Inter", sans-serif;
}
.btn-zine {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 24px;
  background-color: #048B9A; /* ta couleur douce */
  color: #e6f8fe;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.btn-zine:hover {
  background-color: #025c66;
}
/* --- TITRES --- */
h1, h2, h3 {
    color: #048B9A;
    margin: 0 0 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* --- LIENS GÉNÉRAUX --- */
a {
    color: #048B9A;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- CONTENEUR OPTIONNEL --- */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

/* --- BOUTONS --- */
button {
    display: block;
    margin: 2rem auto;
    background-color: #048B9A;
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #023f45;
}