/* ===================== */
/* SECTION NFT FULL CARROUSEL */
/* ===================== */

.nft-section {
  padding: 80px 0;
  background-color: white;
   font-family: 'Poppins', sans-serif;
}

/* --- Carrousel horizontal sur tous les écrans --- */
.nft-grid {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  justify-content: flex-start;
}
.nft h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.nft-item {
  flex: 0 0 30%; /* 3 visibles environ sur grand écran */
  scroll-snap-align: center;
}

.nft-item img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nft-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.nft-grid::-webkit-scrollbar {
  display: none;
}
/* Bouton NFT */
.nft-section .btn {
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px; /* bouton arrondi */
  background: #4a90e2; /* même bleu que les icônes */
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
}

.nft-section .btn:hover {
  background: #357bd8; /* bleu légèrement plus foncé */
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.5);
  transform: translateY(-3px);
}



/* --- Ajustement mobile --- */
@media (max-width: 768px) {
  .nft-item {
    flex: 0 0 80%;
  }
}
/* === HERO SECTION === */
.hero {
  position: relative;
  height: 100vh; /* pleine hauteur */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.hero .container h2 {
  font-size: 3rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .hero .container h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* Container et typographie */
.about.section {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Image */
.about img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Cards */
.about-cards .card {
  border: none;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-cards .card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.about-cards .card p {
  font-size: 0.95rem;
  color: #555;
}

.about-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .about img {
    display: none; /* Cache l'image sur mobile */
  }

  .about h2 {
    font-size: 2rem;
  }

  .about-cards .card {
    padding: 15px;
  }
}
/* Section Services */
.services.section {
  padding: 80px 0;
  background-color: white;
  font-family: 'Poppins', sans-serif;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Cartes */
.service-item .card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Icônes dans des cercles */
.service-item .icon {
  font-size: 1.5rem;
  color: #fff;
  width: 60px;
  height: 60px;
  background: #ff6b6b; /* couleur du cercle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.service-item .card:hover .icon {
  transform: scale(1.1);
  background: #ff8787; /* léger effet au hover */
}

.service-item h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .service-item .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .service-item .icon {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
/* Section Contact */
.contact.section {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.contact .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact .section-title p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.contact h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.contact .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact .info-item {
  background: #f7f7f7;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.contact .info-item:hover {
  transform: translateY(-3px);
}

.contact .info-item i {
  font-size: 2rem;
  color: #4a90e2; /* même bleu que les icônes */
  margin-right: 15px;
}

.contact .info-item h4 {
  font-size: 1.1rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.contact .info-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.contact img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
