
body {
    --CouleurFond : rgb(240, 240, 240);
    --CouleurBandeauHaut : white;
    --CouleurBandeauBas : white;
    margin: 0;
    background-color : var(--CouleurFond);
    /* Compense les bandeaux fixes */
    padding-top: 80px;
    padding-bottom: 70px;
}

.Page {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: center;
}

.PageBoutique {
    margin: 0;
    justify-content: center;
}

.BandeauHaut {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;   /* centre le contenu */
    gap: 2rem;                 /* espace fixe entre chaque élément */
    padding: 0.8rem 1.2rem;
    background-color: var(--CouleurBandeauHaut);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    flex-wrap: wrap;           /* évite le chevauchement en petit écran */
}

.BandeauChoix {
    text-decoration: none;
    color: black;
    font-size: 1.5rem; /* ~24px */
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(128,128,128,.4);
    margin: 0 0.5rem;
}


.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: white;
    color: black;
    padding: .5rem 1rem;
    border-radius: .25rem;
    z-index: 200;
}

.Contenu {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 2rem;
    width: 90%;
    margin: 2rem auto 4rem;
    background-color: var(--CouleurFond);
    color: black;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.BandeauBas {
    z-index: 100;
    position: fixed;
    margin: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 60px;
    background: var(--CouleurBandeauBas);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    text-shadow: grey 10px 10px 5px;
    box-shadow: 0 -4px 12px rgba(0,0,0,.08);
}

.PhotoArthur,
.PhotoFinement,
.PhotoSouvenir,
.PhotoCouverture,
.VideoPTV,
.Vignette {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 5px black);
}

.Titre {
    color: #b8860b; /* gold-ish plus contrast */
    font-family:cursive;
    font-size: 32px;
    text-align: center;
    text-shadow: black 1px 1px 8px;
}

.Texte, .Texte1, .Texte2 {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.Texte {
    display: block;
    text-align: justify;
}

.Texte1 {
    display: block;
    text-align: justify;
}

.Texte2 {
    display: block;
    text-align: center;
}

.Dessous {
    margin: 60px;
    width: 80%;
    color: black;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
}

.Dessus, .DessusBoutique {
    width: 100%;
    color: black;
    font-family:cursive;
    font-size: 48px;
    text-shadow: blue 1px 1px 20px;
    text-align: center;
}

.H1 {
    width: 100%;
    margin-top: 0;
    color: black;
    font-family:cursive;
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
}

/* Figures de couverture */
.Finement, .Finement1 {
    filter: drop-shadow(10px 10px 5px black);
}
.Finement { width: 100%; }
.Finement1 { width: 100%; }

figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;  /* centre le contenu horizontalement */
}

figcaption {
  margin-top: 1rem;       /* espace plus grand sous la photo */
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;     /* texte centré */
  max-width: 90%;         /* optionnel : évite que le texte déborde */
  color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .BandeauChoix { font-size: 24px; }
    .Contenu { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 768px) {
  .BandeauHaut {
    flex-direction: column;   /* menu vertical */
    gap: 1rem;
    padding: 1rem;
  }
  .BandeauChoix {
    font-size: 1.2rem;        /* ~18px */
    text-shadow: none;
  }
}
