body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fff;
    color: #222;
}
header {
    background: #111;
    color: white;
    text-align: center;
    padding: 2em 1em;
	opacity: 0.90;
}
header h1 {
    margin: 0.2em 0;
    font-size: 2.5em;
}
header p {
    margin: 0.2em 0 1em;
}
.contact-button {
    background: red;
    color: white;
    padding: 0.7em 1.5em;
    text-decoration: none;
    display: inline-block;
    margin-top: 1em;
    border-radius: 5px;
}
.social-icons a {
    color: white;
    margin: 0 0.5em;
    font-size: 1.5em;
}
.services {
    padding: 2em 1em;
    background: #f9f9f9;
    text-align: center;
	opacity: 0.50;
}
.offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.offer {
    background: white;
    border: 1px solid #ccc;
    margin: 1em;
    padding: 1em;
    max-width: 300px;
    border-radius: 8px;
}
.offer h3 {
    color: red;
}
.price {
    font-size: 1.5em;
    color: #111;
}
.gallery {
    padding: 2em 1em;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1em;
    padding: 1em;
}
.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}
footer {
    text-align: center;
    padding: 2em 1em;
    background: #111;
    color: white;
}
@media (max-width: 600px) {
    .offers {
        flex-direction: column;
        align-items: center;
    }
}

#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;
    flex-direction: column;
    z-index: 1000;
}
#lightbox.active {
    display: flex;
}
#lightbox img {
    max-width: 90%;
    max-height: 80%;
    margin: 1em;
    border-radius: 10px;
}
#close-lightbox, #prev, #next {
    background: white;
    border: none;
    padding: 0.5em 1em;
    margin: 1em;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}
#prev, #next {
    font-size: 2em;
    background: rgba(255,255,255,0.7);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#prev { left: 10px; }
#next { right: 10px; }

.bg-video-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: -1;
}
.bg-video-wrapper video {
  min-width: 100%; min-height: 100%;
  object-fit: cover;
}
.bg-video-wrapper::after {
  content:"";
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background:rgba(0,0,0,0.4);
  z-index:0;
}
.content {
  position: relative;
  z-index: 1;
}
.services .offers .offer ul b li {
	text-align: left;
}
footer a {
    color: #ccc;
    text-decoration: none;
    margin: 0 1em;
}
footer a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1em;
    text-align: center;
    z-index: 9999;
}
.cookie-banner button {
    margin-left: 1em;
    padding: 0.5em 1em;
    background: red;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}
.dark-page {
  background-color: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 2em;
}

.dark-page a {
	color: #ff4d4d;
	text-align: center;
}

.dark-page h1,
.dark-page h2,
.dark-page h3 {
  color: #ff4d4d;
}
p.MsoNormal {

line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
}
li.MsoNormal {

line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
}


/* Boutons modernes pour lightbox */
#lightbox button {
    background: #222;
    color: white;
    border: none;
    padding: 0.7em 1.5em;
    margin: 0.5em;
    border-radius: 30px;
    font-size: 1em;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Bouton centré en haut */
#close-lightbox {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
}

/* Flèches fixes */
#prev, #next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

/* Fade-in + zoom progressif sur les images */
.gallery-grid img {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.gallery-grid img.visible {
    opacity: 1;
    transform: scale(1);
}
