html,
body {
  height: 100%;
  margin: 0;
}

* {
  box-sizing: border-box;
}

.font-heading {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-body {
  font-family: 'Source Sans 3', sans-serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.anim-fade-up {
  animation: fadeUp 0.8s ease-out both;
}

.anim-fade-in {
  animation: fadeIn 1s ease-out both;
}

.anim-scale-in {
  animation: scaleIn 0.6s ease-out both;
}

.anim-float {
  animation: float 4s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.delay-5 {
  animation-delay: 0.75s;
}

.delay-6 {
  animation-delay: 0.9s;
}

.hero-pattern {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(34, 87, 40, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(193, 154, 77, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(34, 87, 40, 0.05) 0%, transparent 70%);
}

.tree-silhouette::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background:
    linear-gradient(135deg, transparent 33.33%, currentColor 33.33%, currentColor 66.66%, transparent 66.66%) -60px 60px / 80px 60px,
    linear-gradient(225deg, transparent 33.33%, currentColor 33.33%, currentColor 66.66%, transparent 66.66%) -60px 60px / 80px 60px;
  opacity: 0.04;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.btn-scout {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-scout::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
}

.btn-scout:hover::after {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.scroll-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.compass-icon {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.divider-leaf {
  display: flex;
  align-items: center;
  gap: 12px;
}

.divider-leaf::before,
.divider-leaf::after {
  content: '';
  flex: 1;
  height: 1px;
}

body {
  box-sizing: border-box;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #000;
  /* ou #ccc pour plus léger */
  min-width: 800px;
  /* important pour déclencher le scroll */

}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.table tbody tr:hover {
  background: #f7f7f7;
}

.table th,
td {
  border: 1px solid #000;
  /* ou #ccc pour plus léger */
  padding: 8px;
}

footer {
  display: flex;
  justify-content: center;
}
/* Galerie équipe */

/* Galerie équipe */

.team-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.team-photo {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablette */
@media (max-width: 1024px) {
  .team-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Petit mobile */
@media (max-width: 480px) {
  .team-gallery {
    grid-template-columns: 1fr;
  }
}