/* =========================
   PROJECTION AVEC IMAGE
========================= */

.projection-section {
  padding: 80px 0;
  background: #f7fbf8;
}

.projection-container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
}

.projection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.projection-text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.projection-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3f5248;
  margin-bottom: 20px;
}

.projection-highlight {
  font-weight: 600;
  color: var(--green-dark);
}

/* IMAGE */

.projection-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.projection-image {
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

/* Shape décorative */

.projection-shape {
  position: absolute;
  width: 260px;
  height: 260px;
  background: var(--green-light);
  opacity: 0.25;
  border-radius: 50%;
  filter: blur(70px);
  top: -30px;
  right: -40px;
  z-index: 1;
}

/* Responsive */

@media (min-width: 992px) {
  .projection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projection-text h2 {
    font-size: 3rem;
  }
}
