/* RESET BASE */
body {
    font-family: "Times New Roman", serif; /* texte normal */
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #fefcf5;
    color: #8B0000;

    /* Effet papier granulé */
    background-image:
        repeating-linear-gradient(45deg, black, black 4px, transparent 4px, transparent 8px),
        repeating-linear-gradient(-45deg, black, black 4px, transparent 4px, transparent 8px);
    background-size: 8px 8px, 8px 8px;
    background-blend-mode: overlay;
}

/* TITRES */
.category {
    font-family: "altesse-std-24pt", sans-serif;
    font-weight: 700; /* gras */
    font-size: 11em;
    line-height: 1.1;
    text-align: center;
    color: #8B0000;
}

h2 {
    font-family: "altesse-std-24pt", sans-serif;
    font-weight: 700; /* gras */
    font-size: 4em;
    line-height: 1.2;
    text-align: center;
    color: #8B0000;
}

h3, h4, h5, h6 {
    font-family: "altesse-std-24pt", sans-serif;
    font-weight: 400; /* normal */
    text-align: center;
    color: #8B0000;
      font-size: 3em;
}

/* TEXTE NORMAL */
p, li, a, .btn-reserve {
    font-family: "Times New Roman", serif;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.8;
    color: #8B0000;
    text-align: center;
}

/* Boutons réservation */
.btn-reserve {
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #8B0000;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}

.btn-reserve:hover {
    background-color: #8B0000;
    color: #FBF3D7;
}

/* CONTENEUR PRINCIPAL */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

/* MAPS */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border: 2px solid #8B0000;
    border-radius: 10px;
    margin: 20px 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
   /* teinte bordeaux plus prononcée */
  filter: grayscale(100%) sepia(100%) contrast(120%) brightness(85%) hue-rotate(-20deg) saturate(400%);
}

/* ICONES */
.icon-container {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* toutes les icônes alignées sur leur base */
    margin: 20px 0;
    gap: 20px; /* espace uniforme entre les icônes */
}

.icon, .icon-pmr, .icon-fork, .icon-clock, .icon-etiquette {
    width: 100px;
    height: 100px;
    filter: invert(27%) sepia(100%) saturate(7487%) hue-rotate(-1deg) brightness(55%) contrast(95%);
}

/* Spécifique horloge */
.icon-clock {
    animation: spin 2s linear infinite;
    height: 100px; /* taille identique aux autres icônes */
}

/* Spécifique fourchette */
.icon-fork { margin-top: 90%;
    height: 100px; /* alignée avec PMR et horloge */
    animation: spin 2s linear infinite;
}

/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* BLOC DEUX COLONNES */
.blocks {
    display: flex;
    border: 5px solid #8B0000;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.block {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #8B0000;
    margin: 0 10px; /* marge latérale entre blocs */
}

.block:first-child {
    border-right: 3px solid #8B0000;
}

.block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.block ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #8B0000;
}

.block ul li:last-child {
    border-bottom: none;
}

#horaires {
    margin: auto;
    text-align: center;
}

#pitch {
    padding: 10%;
    margin: 1% 0;
    box-sizing: border-box;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blocks {
        flex-direction: column;
    }

    .block {
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 20px;
        padding-bottom: 20px;
        margin: 0;
    }

    .block:first-child {
        border-right: none;
        border-bottom: 3px solid #8B0000;
    }
     .category {
        font-size: 5em; /* ou la taille qui te semble lisible */
    }
     p, li {
        font-size: 1.8em; /* plus lisible sur petit écran */
    }
}
