/* ================================
   Styles personnalisés Appart.html
   ================================ */


/* 🏡 Header */
header {
  background: linear-gradient(to right, var(--bleu-ocean), var(--bleu-clair));
  color: white;
}
header h1, header p {
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* 📝 Sections */
h2 {
  color: var(--bleu-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

p a {
  color: var(--bleu-ocean);
  text-decoration: underline;
}

/* 📦 Table tarifs */

.vpt-table-header th {

    background: linear-gradient(

        135deg,
        var(--bleu-ocean),
        var(--bleu-clair)
    );

    color: white;

}


/* 📍 Footer */
footer {
  background-color: var(--bleu-ocean);
  color: #fff;
  font-size: 0.9rem;
}

/* 📊 Tableau tarifs : taille réduite sur mobile */
@media (max-width: 576px) {
    .table-tarifs { font-size: 0.6rem; }
    .table-tarifs th,
    .table-tarifs td { padding: 0.25rem 0.25rem; }
}
@media (min-width: 577px) and (max-width: 768px) {
    .table-tarifs { font-size: 0.82rem; }
    .table-tarifs th,
    .table-tarifs td { padding: 0.3rem 0.4rem; }
}

/* Limiter la largeur des tableaux sur grands écrans */
@media (min-width: 992px) {
    .table-tarifs-wrapper {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Limiter la largeur des tableaux sur grands écrans */
@media (min-width: 576px) {
    .table-prestation-wrapper {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}