.home-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
  align-items: flex-start;
}

/* ── IMAGE BANNIÈRE ── */
.home-banner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  cursor: zoom-in;
  transition: transform 0.2s;
  display: block;
  width: 100%;
}
.home-banner:hover {
  transform: scale(1.01);
}
.home-banner img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* ── BLOC ABOUT ── */
.about-block {
  position: relative;
  border: 2px solid #d0e0e0;
  border-radius: 18px;
  padding: 28px 24px 24px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  width: 100%;
  box-sizing: border-box;
}

.about-label {
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--teal-dark);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 22px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.about-text {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* ── SECTION NAVIGATION ── */
.nav-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.nav-section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dce8e8;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
}

.nav-link-btn {
  display: block;
  background: var(--teal-dark);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transition: background 0.2s, transform 0.18s cubic-bezier(.34,1.56,.64,1);
  width: 100%;
}
.nav-link-btn:hover {
  background: var(--teal-mid);
  transform: translateY(-3px);
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: zoom-out;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.lightbox-overlay.active img {
  transform: scale(1);
}
