:root {
  --noisette-dark: #4b3326;
  --noisette: #7a5235;
  --noisette-light: #d9b08c;
  --sunny: #f6c453;
  --sunny-soft: #fff7e6;
  --night: #171b20;
  --background: #f7f2ec;
  --text-main: #222222;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  color: var(--text-main);
  background: var(--background);
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to right,
    rgba(23, 27, 32, 0.86),
    rgba(23, 27, 32, 0.9),
    rgba(23, 27, 32, 0.86)
  );
  color: #fff;
}

@media (min-width: 992px) {
  .site-header {
    padding-inline: 3rem;
  }
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--sunny), var(--noisette));
  color: #22160f;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 650;
  color: #fff;
}

.brand-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 500;
}

.main-nav-link:hover {
  color: var(--sunny);
}

.btn-sun {
  --bs-btn-bg: var(--sunny);
  --bs-btn-border-color: var(--sunny);
  --bs-btn-color: #403122;
  --bs-btn-hover-bg: #f2b734;
  --bs-btn-hover-border-color: #f2b734;
  --bs-btn-hover-color: #2b2118;
  --bs-btn-active-bg: #e19f1b;
  --bs-btn-active-border-color: #e19f1b;
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 1.5rem;
}

.bg-sun-soft {
  background-color: var(--sunny-soft) !important;
}

.text-noisette {
  color: var(--noisette) !important;
}

.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-alt {
  background: #fbf7f2;
}

.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--noisette);
  margin-bottom: 0.65rem;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.7rem, 2vw + 1.4rem, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-text {
  color: #4a4540;
  max-width: 42rem;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  padding-top: 5.25rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: stretch;
  background-image: linear-gradient(
      135deg,
      rgba(23, 27, 32, 0.95),
      rgba(23, 27, 32, 0.86),
      rgba(23, 27, 32, 0.92)
    ),
    url("https://images.pexels.com/photos/346808/pexels-photo-346808.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(246, 196, 83, 0.5), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(122, 82, 53, 0.6), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2.2rem, 2.5vw + 1.9rem, 3.1rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.text-sun {
  background: linear-gradient(120deg, var(--sunny), #ffe39b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.hero-actions {
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.95rem;
}

.hero-meta-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.hero-meta-value {
  color: #fff;
  text-decoration: none;
}

.hero-meta a.hero-meta-value:hover {
  color: var(--sunny);
}

.hero-card {
  background: rgba(10, 10, 10, 0.78);
  border-radius: 1.3rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
}

.hero-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.hero-futsal-list {
  margin: 1rem 0 0.7rem;
  padding: 0;
}

.hero-futsal-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.hero-futsal-list .label {
  font-weight: 500;
  opacity: 0.8;
}

.feature-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.2rem;
  background: var(--sunny-soft);
  margin-bottom: 0.4rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #5b5550;
}

.activity-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.activity-image {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.activity-body {
  padding: 1.2rem 1.3rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.activity-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.activity-body p {
  font-size: 0.9rem;
  color: #4e4741;
}

.bg-outline-sun {
  border: 1px solid var(--sunny);
  color: #5e431a;
  background: #fffaf0;
}

.event-carousel-card {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.6rem 1.6rem 1.5rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
}

.event-carousel-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.event-carousel-card p {
  font-size: 0.95rem;
  color: #4c4640;
}

.event-carousel-image {
  height: 230px;
  border-radius: 1.1rem;
  background-size: cover;
  background-position: center;
}

.subsection-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.events-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

.event-item {
  background: #fff;
  border-radius: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.event-item-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.event-item-meta {
  font-size: 0.8rem;
  color: #7a6d63;
  margin-bottom: 0.3rem;
}

.event-form-card {
  background: #fffdf9;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(122, 82, 53, 0.4);
}

.event-form-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.quartier-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  grid-template-rows: 1.2fr 1fr;
  gap: 0.75rem;
}

.quartier-photo {
  border-radius: 1.1rem;
  background-size: cover;
  background-position: center;
  min-height: 120px;
}

.quartier-photo.large {
  grid-row: 1 / 3;
}

.quartier-photo.tall {
  min-height: 190px;
}

.comment-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.comment-item {
  background: #fffaf4;
  border-radius: 0.8rem;
  padding: 0.6rem 0.7rem;
  border-left: 3px solid var(--sunny);
}

.comment-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
}

.comment-author {
  font-weight: 600;
}

.comment-topic {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8c7154;
}

.comment-text {
  font-size: 0.9rem;
  color: #4f4740;
}

.contact-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contact-infos .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a7d71;
}

.contact-infos a {
  color: inherit;
}

.contact-infos a:hover {
  color: var(--noisette);
}

.site-footer {
  padding: 1.7rem 0;
  background: #111318;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--sunny);
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at 10% 0%, rgba(246, 196, 83, 0.25), transparent 55%),
    rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
  background: radial-gradient(circle at 10% 0%, rgba(246, 196, 83, 0.35), transparent 55%),
    rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.menu-toggle:active {
  transform: translateY(0);
  box-shadow: none;
}

.menu-icon {
  position: relative;
  width: 22px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-icon span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.26s ease, opacity 0.2s ease, top 0.26s ease, bottom 0.26s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
  bottom: 0;
}

.menu-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.menu-toggle.open .menu-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(42deg);
}

.menu-toggle.open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .menu-icon span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-42deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050508;
  color: #ffffff;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1200;
}

.menu-overlay.open {
  display: flex;
}

.menu-overlay-inner {
  width: 100%;
  max-width: 700px;
  padding: 4.5rem 1.5rem 1.5rem;
}

.menu-overlay-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.menu-overlay-list a {
  display: inline-block;
  color: #fefefe;
  text-decoration: none;
  font-size: clamp(1.3rem, 1.1vw + 1rem, 1.7rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

@media (max-width: 991.98px) {
  .hero-section {
    align-items: flex-start;
    padding-top: 6.2rem;
    padding-bottom: 3rem;
  }

  .hero-meta {
    gap: 1.1rem;
  }

  .hero-card {
    margin-top: 2.1rem;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding-inline: 1rem;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding-inline: 0.75rem;
  }

  .event-carousel-card {
    padding-inline: 1.2rem;
  }

  .quartier-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .activity-image {
    height: 170px;
  }

  .menu-overlay-inner {
    padding-inline: 1.3rem;
  }

  .hero-section {
    text-align: left;
    padding-top: 6.4rem;
    padding-bottom: 3.2rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.7rem;
  }
}

