/* Reset global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body et base */
body {
  background-color: #111;
  font-family: 'Inter', sans-serif;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Titre principal */
h1 {
  font-family: 'Syncopate', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  text-align: center;
  padding: 70px 20px;
  background-color: #181818;
  color: white;
}

/* Navigation en haut */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 0 20px;
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.top-nav ul.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #181818;
  padding: 10px 0;
  gap: 10px;
}

.top-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #ccc;
  transition: color 0.3s;
}

.top-nav a:hover,
.top-nav a.active {
  color: white;
}

/* Burger menu (mobile) */
.top-nav .burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  user-select: none;
  margin-left: 10px;
}

/* Conteneur principal */
.about-container {
  max-width: 1000px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

/* Partie haute : image + compteur */
.about-top {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

/* Image principale */
.about-top img.experience-img {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-top img.experience-img:hover {
  transform: scale(1.02);
}

/* Compteur de shootings */
.shoot-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInText 2s ease forwards;
  animation-delay: 0,8s;
}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #27458d;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fillCircle 2s ease-in-out forwards;
  position: relative;
  box-shadow: 0 0 10px 5px rgb(4, 10, 22);
}

.number {
  font-size: 24px;
  font-weight: bold;
  color: white;
  font-family: 'Russo One', sans-serif;
}

.plus {
  font-size: 30px;
  color: #27458d;
  font-weight: bold;
  font-family: 'Poiret One', sans-serif;
}

.shoot-text {
  color: #4463ac;
  font-family: 'Poiret One', cursive;
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
  opacity: 0;
  animation: fadeInText 2s ease forwards;
  animation-delay: 2s;
}

/* Texte en dessous */
.about-texts h2 {
  font-size: 28px;
  margin: 40px 0 16px;
  font-weight: 600;
}

.about-texts p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Galerie expérience */
.experience-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.experience-gallery img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.experience-gallery img:hover {
  transform: scale(1.02);
}

/* Liens */
.about-container a {
  color: #1f2f36;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.about-container a:hover {
  color: #fff;
}

/* Animations */
@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

@keyframes fillCircle {
  0% {
    box-shadow: 0 0 0 0 #365986;
  }
  100% {
    box-shadow: 0 0 10px 5px #27458d;
  }
}

/* Modal styles (à garder si tu utilises la modale) */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: 5% auto;
  border-radius: 10px;
  animation: fadeInZoom 0.5s forwards;
}

.close {
  position: absolute;
  top: 15px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
  z-index: 2100;
}

.close:hover {
  color: red;
}

/* Responsive */

/* Mobile <= 800px */
@media (max-width: 800px) {
  .top-nav {
    justify-content: space-between;
  }

  .top-nav .burger {
    display: block;
  }

  .top-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #181818;
    padding: 10px 0;
    gap: 10px;
  }

  .top-nav ul.active {
    display: flex;
  }

  .about-top {
    flex-direction: column;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
  }
}
