.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,11,11,0.3) 0%,
    rgba(11,11,11,0.55) 60%,
    rgba(11,11,11,0.8) 100%
  );
  z-index: 1;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.hero-video-placeholder span {
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.05em;
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 4px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: var(--marge);
  padding-right: var(--marge);
  margin-top: 25vh;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  line-height: 1.05;
}

.hero-title-main {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 8rem);
  color: var(--blanc);
  letter-spacing: -0.01em;
}

.hero-title-sub {
  font-family: 'Junge', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 8rem);
  color: var(--blanc);
  letter-spacing: -0.01em;
}

.hero-btn {
  font-size: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  color: white;
  font-weight: 600;
  text-align: center;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: bounce 2s infinite;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.hero-scroll p{
  margin-bottom: -20px;
}

.heroflechecircle {
  position: absolute;
  text-align: center;
  width: 100px;
  left: 10px;
  bottom: 24px;
  z-index: -1;
  opacity: 75%;
}

.hero-scroll:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.banniere-rouge {
  background-color: var(--rouge);
  padding: 48px var(--marge);
  display: flex;
  justify-content: center;
}

.banniere-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 860px;
  width: 100%;
}

.banniere-text h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 10px;
  line-height: 1.2;
}

.banniere-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 700px;
}

.notre-cercle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--blanc);
}

.notre-cercle .cercle-text {
  order: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.notre-cercle .cercle-visuel {
  order: 2;
}

.cercle-surtitre {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gris-texte);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.cercle-titre {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cercle-para {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.cercle-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/*
.cercle-visuel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
*/
.cercle-logo-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 2;
  width: 90px;
  height: 90px;
}

.cercle-logo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--rouge);
  border: 3px solid var(--blanc);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blanc);
  text-align: center;
  line-height: 1.3;
}

.cercle-photo {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  max-width: 750px;
  /*aspect-ratio: 4/3;*/
}


.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-style: italic;
  border-radius: 8px;
  border: 2px dashed rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.25);
}

.img-placeholder.dark {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.2);
}

.actus-section {
  background: var(--blanc);
  display: flex;
  justify-content: center;
}

.actus-inner {
  width: 100%;
  max-width: 900px;
}

.actus-header {
  text-align: center;
  margin-bottom: 48px;
}

.actus-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.actus-header p {
  color: var(--gris-texte);
  font-size: 1rem;
}

.actus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.actu-card {
  background: var(--blanc);
  border-radius: 20px;
  border : 1px solid #C4C4C4;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.actu-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.actu-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.actu-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #444;
  flex: 1;
}

.btn-sm {
  padding: 7px 18px;
  font-size: 0.8rem;
  align-self: flex-end;
  margin-top: 25px;
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .notre-cercle {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .notre-cercle .cercle-text {
    text-align: left;
    align-items: center;
    text-align: center;
    order: 2;
  }

  .notre-cercle .cercle-visuel {
    order: 1;
  }

  .localisation-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 900px) {
  .hero-content {
    margin-left: 8%;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 25vh;
  }

  .banniere-rouge {
    padding: 36px 20px;
  }

  .banniere-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .notre-cercle {
    padding: 50px 20px;
  }

  .actus-section {
    padding: 50px 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    margin-top: 20vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title-main {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-title-sub {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .banniere-rouge {
    padding: 28px 16px;
  }

  .banniere-text h2 {
    font-size: 1.2rem;
  }

  .banniere-text p {
    font-size: 0.9rem;
  }

  .notre-cercle {
    padding: 36px 16px;
  }

  .cercle-titre {
    font-size: 2rem;
  }

  .actus-section {
    padding: 36px 16px;
  }

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

  .actu-card {
    padding: 20px 16px;
  }

  .actu-card h3 {
    font-size: 1.2rem;
  }

  .cercle-logo-badge {
    top: -15px;
    left: -10px;
    width: 70px;
    height: 70px;
  }

  .cercle-logo-placeholder {
    width: 70px;
    height: 70px;
  }
}
