/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #000;
}

/* =========================
   FOND GLOBAL
========================= */
body {
  background-image: url('../img/index.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Voile global */
.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Tout le contenu au-dessus */
header,
section,
nav {
  position: relative;
  z-index: 1;
}

/* =========================
   NAVIGATION
========================= */
.boxed-nav {
  display: flex;
  justify-content: center;
  padding: 30px 20px 0;
}

.main-nav-inner {
  background: rgba(0, 0, 0, 0.7);
  padding: 18px 40px;
  display: flex;
  gap: 35px;
}

.main-nav-inner a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.main-nav-inner a:hover,
.main-nav-inner a.active {
  opacity: 1;
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
}

/* Mobile nav */
@media (max-width: 768px) {
  .main-nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 25px;
  }
}

/* =========================
   HERO – PAGE D’ACCUEIL
========================= */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('../img/index.JPG');
  background-size: cover;
  background-position: center;
}

.hero-content {
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-name {
  margin-bottom: 25px;
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.lastname {
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Citation bas de page */
.hero-quote-bottom {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 90%;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

.hero-quote-bottom p {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.hero-quote-bottom cite {
  font-size: 1rem;
  font-weight: 600;
}

/* =========================
   BOUTONS
========================= */
.btn {
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* =========================
   HEADERS DE PAGES
========================= */
.page-header.boxed {
  padding: 120px 20px 80px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.page-header-inner {
  background: rgba(0, 0, 0, 0.55);
  padding: 50px 60px;
  max-width: 720px;
}

.page-header-inner h1,
.page-header-inner h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
}

.page-header-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

/* Mobile headers */
@media (max-width: 768px) {
  .page-header-inner {
    padding: 35px 25px;
  }

  .page-header-inner h1,
  .page-header-inner h2 {
    font-size: 2.2rem;
  }
}

/* =========================
   GALERIE (PORTFOLIO)
========================= */
.gallery {
  column-count: 3;
  column-gap: 20px;
  padding: 80px 30px;
  background: #fff;
  max-width: 1300px;
  margin: 80px auto;
}

.gallery img {
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .gallery { column-count: 2; }
}

@media (max-width: 600px) {
  .gallery { column-count: 1; }
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   FORMULES
========================= */
.formules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.formule {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 40px 30px;
}

.formule h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.subtitle {
  font-style: italic;
  color: #777;
  margin-bottom: 25px;
}

.formule ul {
  list-style: none;
}

.formule ul li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.formule ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
}

/* Recommandée */
.formule.highlight {
  border: 2px solid #000;
}

/* Premium */
.formule.premium {
  border: 2px solid #111;
}

/* =========================
   OPTIONS
========================= */
.options {
  padding: 80px 20px;
}

.options-header {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px 50px;
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.options-header h2 {
  font-size: 2.4rem;
  color: #fff;
}

.option {
  background: #fff;
  border: 1px solid #eee;
  padding: 45px;
  max-width: 650px;
  margin: 0 auto 40px;
  text-align: center;
}

/* =========================
   CONTACT
========================= */
.contact-section {
  padding: 100px 20px;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 16px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #000;
}

.contact-form .btn {
  align-self: center;
  margin-top: 20px;
}

/* Navigation lightbox */
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px 18px;
  user-select: none;
  opacity: 0.8;
}

.lightbox .nav:hover {
  opacity: 1;
}

.lightbox .prev {
  left: 30px;
}

.lightbox .next {
  right: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .lightbox .nav {
    font-size: 40px;
    left: 15px;
    right: 15px;
  }
}
.tarifs-note {
  margin-top: 15px;
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.85;
}
.page-header-inner h1 sup {
  font-size: 1.2rem;
  top: -0.4em;
  position: relative;
}