/* ═══════════════════════════════════════════
   ACTIVITES.CSS — Activities Grid
   The Sisters Offroad Theme
   ═══════════════════════════════════════════ */

.section-activites {
  padding: var(--section-padding);
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 60px;
  background: var(--night);
}

.activites-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 260px 220px;
  gap: var(--gap-grid);
}

.act-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid);
}
.act-card:first-child { grid-column: span 2; grid-row: span 2; }
.act-card:nth-child(2) { grid-column: span 2; }
.act-card:nth-child(3) { grid-column: span 2; }
.act-card:nth-child(4) { grid-column: span 2; }
.act-card:nth-child(5) { grid-column: span 2; }
.act-card:nth-child(6) { grid-column: span 2; }

.act-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow);
}
.act-card:hover .act-bg { transform: scale(1.08); }

.act-bg-quad { background: linear-gradient(135deg, #3D1C05 0%, #7A3A10 40%, #C07030 80%, #E8A050 100%); }
.act-bg-buggy { background: linear-gradient(135deg, #1A0A00 0%, #5A2A0A 50%, #A05020 100%); }
.act-bg-balloon { background: linear-gradient(135deg, #05081A 0%, #0A2040 40%, #2A1060 70%, #C87030 100%); }
.act-bg-aircross { background: linear-gradient(135deg, #0A1A0A 0%, #1A3A1A 50%, #3A6A2A 100%); }
.act-bg-the { background: linear-gradient(135deg, #1A1005 0%, #4A3010 50%, #8A6030 100%); }
.act-bg-chameau { background: linear-gradient(135deg, #1A0F00 0%, #5A3A10 50%, #A07030 100%); }

.act-svg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.act-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 7, 0.9) 0%, rgba(12, 10, 7, 0.2) 60%, transparent 100%);
}

.act-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 2;
}

.act-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}

.act-name {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
}
.act-card:first-child .act-name { font-size: 2.4rem; }

.act-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.06em;
  max-width: 200px;
  line-height: 1.5;
}

.act-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--fire);
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}