/* ===== Reset global ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #222, #111);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Background gradient animation ===== */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ===== Headers ===== */
h1,
h2,
h3 {
  color: #ff4d4d;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 77, 77, 0.6);
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 40px;
}

h3 {
  font-size: 1.4rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(45deg, #ff4d4d, #b71c1c);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: scale(1.1) rotate(-1deg);
  box-shadow: 0 0 25px rgba(255, 77, 77, 0.8);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
}

/* Effet d'ombre douce en fond */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

/* Le logo */
.hero .logo {
  position: relative;
  z-index: 2;
  width: 500px;
  /* taille plus fine et élégante */
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.4)) brightness(1.1) contrast(1.2);
  opacity: 0.95;
  transition: all 0.4s ease-in-out;
}

.hero .logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 35px rgba(255, 0, 0, 0.7)) brightness(1.2);
  opacity: 1;
}

/* Texte et bouton */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-top: 25px;
}



.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff1a1a, #990000);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.btn:hover {
  background: linear-gradient(135deg, #ff3333, #cc0000);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
  transform: scale(1.05);
}







.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Sections ===== */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Cards (formules) ===== */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #ff4d4d, transparent 40%, #ff4d4d);
  animation: rotate 8s linear infinite;
  opacity: 0.15;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 77, 77, 0.6);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff4d4d;
}

/* ===== Formulaires ===== */
.contact-form-card,
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.4s ease;
}

.contact-form input,
.contact-form textarea,
select {
  padding: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 100%;
  background-color: #222;
  color: #fff;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
select:focus {
  border: 1px solid #ff4d4d;
  box-shadow: 0 0 12px rgba(255, 77, 77, 0.7);
}

/* ===== Paiement Grid ===== */
.paiement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.paiement-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.paiement-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #ff4d4d, transparent 50%, #ff4d4d);
  animation: rotate 10s linear infinite;
  opacity: 0.1;
}

.paiement-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 77, 77, 0.6);
}

.paiement-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ff4d4d;
}

/* ===== Footer ===== */
footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.9);
  color: #aaa;
}

footer a {
  color: #ff4d4d;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  text-shadow: 0 0 8px #ff4d4d;
}

/* ===== Galerie ===== */
.swiper {
  margin-top: 30px;
}

.swiper-slide img {
  width: 100%;
  border-radius: 15px;
}

/* ===== Responsive ===== */
@media(max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .paiement-grid {
    grid-template-columns: 1fr;
  }
}



/* Ne pas toucher le slider */
/* Slider (miniatures) */
.swiper-slide img,
.swiper-slide video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  /* reste cover pour slider */
}





/* ===== Lightbox ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-overlay.active {
  display: flex;
}

/* inner centré */
.lb-inner {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* slide content */
.lb-slide img,
.lb-slide video {
  max-width: 95vw;
  max-height: 95vh;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  /* important pour garder l'intégralité */
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* navigation buttons */
.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10000;
  backdrop-filter: blur(6px);
  transition: transform 140ms ease, background 140ms ease;
}

.lb-close {
  top: 18px;
  right: 18px;
}

.lb-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

.lb-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(255, 255, 255, 0.09);
}

/* counter */
.lb-counter {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  color: #cfd8df;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* petite règle mobile: boutons moins intrusifs */
@media(max-width:720px) {

  .lb-prev,
  .lb-next {
    padding: 8px 10px;
    font-size: 22px;
  }

  .lb-close {
    padding: 8px;
  }
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 25px;
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}
.hamburger span {
  display: block;
  height: 5px;
  width: 100%;
  background-color: #ff4d4d;
  border-radius: 5px;
}
.menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  background: #111;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  padding: 60px 20px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  z-index: 999;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 15px 0;
  transition: 0.3s;
}
.menu a:hover {
  color: #ff4d4d;
}



  .news-img {
    width: 90%;          /* occupe 90% de la largeur du conteneur */
    max-width: 400px;    /* ne dépasse jamais 400px */
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
  }


 .about-dark {
    background: #0d0d0d;
    color: #f5f5f5;
    padding: 60px 25px;
    text-align: center;
  }

  .about-dark h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #1e90ff;
    display: inline-block;
    padding-bottom: 8px;
  }

  .about-dark p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 10px auto;
    color: #dcdcdc;
  }

  .social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 25px 0 35px 0;
  }

  .social-btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    color: #fff;
  }

  .social-btn.insta { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
  .social-btn.fb { background: #1877f2; }
  .social-btn.google { background: #db4437; }

  .social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
  }
