/* -------------------- */
/* BASE */
/* -------------------- */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  display: block;
  max-width: 100%;
}

/* -------------------- */
/* HEADER */
/* -------------------- */

.header {
  background: #000;
  padding: 15px 20px;
  position: relative;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.logo {
  max-width: 150px;
  z-index: 2;
}

.title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  width: max-content;
}

/* -------------------- */
/* HERO */
/* -------------------- */

.hero {
  padding: 50px 20px;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.event-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.event-description {
  font-size: 18px;
  max-width: 900px;
  margin: auto;
  color: #ddd;
  line-height: 1.6;
}

/* -------------------- */
/* VIDEO + RESA */
/* -------------------- */

.videos-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 360px;
  flex-wrap: wrap;
}

.video video {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
}

.place {
  margin-top: 190px;
  position: relative;
  max-width: 500px;
}

.btn-reserver {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 25px;
  background: #e60000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  transition: 0.3s ease;
}

.btn-reserver:hover {
  background: #ff3333;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.5);
  transform: translateX(-50%) scale(1.07);
}

/* -------------------- */
/* LCU SECTION */
/* -------------------- */

.lcu-section {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: nowrap;
  text-align: center;
}

/* 🔥 Forces Insta et Mail à rester alignés correctement */
.lcu-section > a {
  display: flex;
  align-items: center;
}

.icon {
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px #e60000);
}

.insta {
  width: 70px;
}

.mail {
  width: 80px;
}

.lcu-text {
  max-width: 650px;
  line-height: 1.6;
  text-align: center;
}

.lcu-text h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.devise {
  margin-top: 20px;
  font-style: italic;
  font-size: 18px;
  opacity: 0.8;
}

/* -------------------- */
/* FOOTER */
/* -------------------- */

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  opacity: 0.8;
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

/* TABLETTE ≤ 900px */
@media (max-width: 900px) {

  .title {
    font-size: 20px;
    width: 90%;
  }

  .header-content {
    gap: 10px;
  }

  .logo {
    max-width: 130px;
  }

  .event-title {
    font-size: 28px;
  }

  .videos-container {
    gap: 40px;
  }
}

/* MOBILE ≤ 700px */
@media (max-width: 700px) {

  /* HEADER FIX */
  .header-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title {
    position: static;
    transform: none;
    font-size: 18px;
  }

  .logo {
    max-width: 140px;
  }

  /* LCU FIX */
  .lcu-section {
    flex-direction: column;
    gap: 20px;
  }

  .lcu-text {
    order: 1;
  }

  /* 🔥 Insta + Mail côte à côte */
  .lcu-section > a {
    order: 2;
    display: inline-block;
    margin: 0 15px;
  }

  .insta,
  .mail {
    width: 60px;
  }
}

/* MOBILE ≤ 600px */
@media (max-width: 600px) {

  .header-content {
    justify-content: center;
  }

  .logo {
    max-width: 110px;
  }

  .title {
    font-size: 18px;
    margin-top: 10px;
  }

  .videos-container {
    flex-direction: column;
    gap: 25px;
  }

  .place {
    max-width: 350px;
    margin: 40px auto 0 auto;
  }

  /* BOUTON 100% FIXÉ */
  .btn-reserver {
    position: static !important;
    transform: none !important;
    font-size: 16px;
    padding: 12px 20px;
    display: block;
    margin: 20px auto 0 auto;
    width: 100%;
    max-width: 200px;
  }

  .btn-reserver:hover {
    box-shadow: none !important;
    transform: none !important;
  }
}

/* MICRO MOBILE ≤ 400px */
@media (max-width: 400px) {

  .title {
    font-size: 16px;
  }

  .event-title {
    font-size: 22px;
  }

  .logo {
    max-width: 95px;
  }

  .insta,
  .mail {
    width: 50px;
  }
}
