* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #18181a;
  background: linear-gradient(60deg, rgba(24, 24, 26, 1) 0%, rgba(24, 24, 140, 1) 64%, rgba(100, 0, 128, 1) 100%);
  color: white;
}

/*NavBar*/

.nav-container {
  background: #000000;
  padding-right: 5px;
  position: fixed;
  width: 100%;
  height: 45px;
  top: 0;
  left: 0;
  z-index: 1;
}

.nav-content {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-content>a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
}


.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff8c00;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 25px;
  height: 25px;
}

.menu-toggle span {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #ff8c00;
  transition: 0.3s;
  left: 0;
}

.menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.menu-toggle span:nth-child(2) {
  opacity: 0;
  top: 11px;
}

.menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

.menu-toggle.closed span:nth-child(1) {
  transform: rotate(0);
  top: 2px;
}

.menu-toggle.closed span:nth-child(2) {
  opacity: 1;
  top: 11px;
  transform: none;
}

.menu-toggle.closed span:nth-child(3) {
  transform: rotate(0);
  top: 20px;
}

.nav-item-wrapper {
  padding: 5px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000000;
    padding: 1rem;
    flex-direction: column;
    align-items: center;

  }

  .nav-links.active {
    display: flex;
  }

  .nav-item-wrapper {
    width: 100%;
    text-align: center;
  }
}


/* Hero Banner Styles */
.hero-banner {
  height: 100vh;
  background-image: url('../images/agprodbannerhero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0px 5px 5px;
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
}

.hero-sub-title {
  animation: fadeInUp 2s ease forwards;
  opacity: 0;
}

.hero-text {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 3rem);
  animation: fadeInUp 5s ease forwards;
  opacity: 0;
}

.hero-banner-text {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 3rem);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-icon {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

.scroll-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  background-color: #7c4dff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  animation: fadeInUp 7s ease forwards;
}

.scroll-btn:hover {
  background-color: transparent;
  border-color: #7c4dff;
  transform: translateY(-3px);
}

.scroll-btn i {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/*Les icones*/

.social-nav .nav-link {
  padding: 0.25rem 0.5rem;
}

.social-nav .nav-link:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

@media screen and (min-width: 800px) {

  .icones {
    font-size: 200%;
  }
}

.logoAgprod {
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

/* Les cartes */

.btn-primary:hover {
  background-color: transparent;
}

.membres-section {
  padding: 50px
}

.member-card {
  background-color: rgba(45, 31, 77, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;

  width: 300px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.member-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 77, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(124, 77, 255, 0.37);
}

.member-card .card-body {
  background: linear-gradient(rgba(45, 31, 77, 0.1),
      rgba(45, 31, 77, 0.3));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.card-img-top {
  object-fit: cover;
  width: 337px;
  height: 225.5px;
}

.social-links a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}


/*Réseaux*/

.bi-facebook {
  color: #3b5998;
}

.bi-youtube {
  color: #FF0000;
}

.bi-phone {
  color: #ff8c00;
}

.bi-instagram {
  color: #e96506e4;
}

.bi-phone, .bi-house, .bi-people-fill, .bi-envelope, .bi-geo-alt {
  color: #ff8c00  !important;
}


/* Footer  */
.footer {
  background: rgba(26, 15, 46, 0.95);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(124, 77, 255, 0.2);
}

.footer-section {
  background: rgba(45, 31, 77, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 77, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(124, 77, 255, 0.37);
}

.footer-section h3 {
  color: #7c4dff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.nav-footer-social a {
  color: white;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.nav-footer-social a:hover {
  color: #ff8c00;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7c4dff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #7c4dff;
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}


/*Photo jacquesgiraud*/
.jacquesgiraud {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

li>a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
}

.Creditphoto>a {
  text-decoration: none;
  color: #fff;
}
