
a {
  color: white;
  text-decoration: none;
}
h2 {
    font-size: 1.5em;
}

a:hover {
  text-decoration: underline; /* Ou none si tu veux éviter le soulignement */
}

body {
    font-family: sans-serif;
    background-color: #111;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}
.logo-banner {
    background-color: #ccc; /* gris clair */
    padding: 1em 0;
	width: 100vw;                 /* prend toute la largeur de la fenêtre */
    margin: calc(-50vw + 50%);
}

header {
    padding: 2em;
}
header h1 {
    margin-top: 2em;
}
.logo {
    max-width: 250px;
}
.zone-intervention {
  margin: 2em auto;
  max-width: 800px;
  font-size: 1em; /* même taille que le texte classique */
  line-height: 1.6em;
  color: #f1f1f1;
  text-align: center;
}

.zone-intervention h2 {

  margin-bottom: 0.5em;
  color: #fff;
}

 /* bouton reservez votre event */
.cta {
    background-color: #007BFF;
    color: white;
    padding: 1em 2em;
    display: inline-block;
    margin-top: 1em;
    text-decoration: none;
}
section {
    padding: 2em;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 400px;
    margin: auto;
}
input, textarea {
    padding: 1em;
    border: none;
    border-radius: 5px;
}
button {
    background-color: #007BFF;
    color: white;
    padding: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
footer {
    background-color: #222;
    padding: 1em;
}
.legend {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1em;
}
.legend-box {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 3px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 1em;
}

.social-icons a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

.icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5em;
}

.green { background-color: green; }
.yellow { background-color: yellow; }
.red { background-color: red; }
.legend-box.gray {
  background-color: #999;
}
.galerie {
  max-width: 1000px;
  margin: 3em auto;
  text-align: center;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
  padding: 1em;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}


select#event_type {
    width: 100%;
    height: 2.5em;
    font-size: 1.1==em;
    padding: 0.3em 0.5em;
    border-radius: 4px;
	box-sizing: border-box;
}

.cta.red {
    background-color: #c0392b; /* Rouge foncé */
    color: white;
    padding: 1em 2em;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1em;
    border-radius: 5px;
    cursor: pointer;
}
.cta.red:hover {
    background-color: #e74c3c; /* Rouge un peu plus clair au survol */
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2em;
  cursor: pointer;
}

/* ---- PAGE TARIFS ---- */

body {
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Titres */
.tarifs-section h2 {
    font-size: 2em;
    margin-top: 1em;
    color: #f4f4f4;
}

.tarif-block h3 {
    font-size: 1.6em;
    margin-top: 2em;
    color: #00bfff;
}

.tarif-block h4 {
    font-size: 1.3em;
    margin-top: 1em;
    color: #ffcc66;
}

/* Cards */
.tarif-card {
    background: #222;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 1em;
    width: 280px;
    margin: 1em auto;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.tarif-card .price {
    font-size: 2em;
    margin-top: 0.5em;
    font-weight: bold;
    color: #00bfff;
}

/* Tables */
table {
    width: 90%;
    max-width: 600px;
    margin: 1em auto;
    border-collapse: collapse;
}

th, td {
    padding: 0.7em;
    border: 1px solid #333;
}

th {
    background: #00bfff;
    color: #000;
    font-weight: bold;
}

td {
    background: #222;
}

/* CTA bouton */
.cta {
    background-color: #007BFF;
    color: white;
    padding: 1em 2em;
    border-radius: 5px;
    display: inline-block;
    margin-top: 2em;
    font-weight: bold;
    text-decoration: none;
}
.tarif-link {
	color: #00bffff;
	text-decoration: underline;
}
.tarif-link:hover {
	color: #66d9ff;
}

.img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-modal img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  cursor: zoom-out;
}

.img-link {
  color: #00BFFF; /* cohérent avec ton bleu */
  text-decoration: underline;
  cursor: pointer;
}

