@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Style global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #001F3F;
    background-color: #fff;
    line-height: 1.6;
  }
  
  /* Navbar */
  /* Style général de la navbar */
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
  }
  
  .logo img {
    height: 80px;
  }
  
  /* Style des liens */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #001F3F;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #001F3F;
  }

  
  
  /* Style du bouton hamburger */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
  }
  
  /* Adaptation pour les petits écrans */
  @media screen and (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 70px; /* hauteur de la navbar */
      right: -100%;
      background: white;
      width: 200px;
      height: calc(100% - 70px);
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 20px;
      transition: right 0.3s ease-in-out;
    }
    .nav-links.active {
      right: 0;
    }
    .menu-toggle {
      display: flex;
    }
  }
  
  
  /* Sections */
  section {
    margin-top: 60px;
  }

#hero {
    height: 100vh;
    background: url('image/hero.avif') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    padding: 0 15px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
  }
  
  .logo-hero {
      width: 70%;
    margin-bottom: 50px; /* espace entre le logo et le texte */
  }
  

  /* Adaptation pour smartphones - écrans jusqu'à 768px de large */
  @media (max-width: 768px) {
    h1 {
      font-size: 1.8rem; /* Réduit la taille pour s’adapter aux petits écrans */
      line-height: 1.3;
    }
  
    .cta-button {
      font-size: 0.9rem;
      padding: 10px 20px;
      margin-top: 25px;
    }
  }
  
  /* Smartphones étroits - écrans jusqu'à 480px */
  @media (max-width: 480px) {
    #hero {
        margin-top: 60px;
      height: auto;
      padding: 60px 15px; /* Augmente l'espace vertical pour faciliter le scroll */
    }
    .logo-hero {
      width: 90%;
    margin-bottom: 100px; /* espace entre le logo et le texte */
  }
    h1 {
      font-size: 1.5rem;
    }
  
    .highlight {
      display: block; /* Afficher les points clés en bloc pour meilleure lisibilité */
      margin-bottom: 10px;
    }
  
    .cta-button {
      width: 100%; /* Bouton CTA étendu pour faciliter le clic sur mobile */
      padding: 12px;
      margin-top: 20px;
    }
  }
  
  /* Animation du cercle de révélation */
  @keyframes revealCircle {
    to {
      width: 200vw;
      height: 200vw;
      opacity: 0;
    }
  }
  
  /* État initial pour les mots clés */
  .highlight {
    opacity: 0;
    transform: translateY(20px);
  }
  
  
  /* Pack presentation & details */
  .pack-presentation {
    max-width: 900px;
    margin: auto;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
  }

  .pack-presentation h2 {
    margin-bottom: 20px;
  }

  .pack-mockup {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  
  .intro-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #001F3F;
  }
  
  .pack-benefits {
    list-style: none;
    margin: 0 auto 30px auto;
    padding: 0;
  }
  
  .pack-benefits li {
    margin: 12px 0;
    font-size: 1rem;
    color: #001F3F;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #001F3F;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #001F3F;
  }
  
  /* Sections spécifiques */
  #why-us, #pack-details, #tarifs, #about, #portfolio, #contact {
    max-width: 1200px;
    margin: auto;
  }

 
  
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 50px;
  }
  
  .feature-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: auto;
    text-align: center;
  }
  
  .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  .icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .iconeacc {
    margin: auto;
  }

  .features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
  }
  
  /* section explication des packs */


  #pack-details {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .pack-item {
    background: #fff;
    padding: 25px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }
  
  .pack-item h3 {
    margin-bottom: 15px;
    font-size: 1.6em;
  }
  
  .pack-item p {
    margin-bottom: 20px;
    font-size: 1em;
    color: #555;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #001F3F;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background: #001F3F;
  }
  

  /* Animation fade-in */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  /* Pricing cards */
 /* Section Tarifs */
.pricing-section {
    background: #f7f9fc;
    padding: 150px 20px;
  }
  
  .pricing-section h1 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2em;
    color: #001F3F;
  }
  
  .pricing-section .intro {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
  }
  
  /* Grille des cartes tarifaires */
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  /* Carte individuelle */
  .pricing-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .pricing-card header {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  .pricing-card header h2 {
    font-size: 1.6em;
    color: #001F3F;
    margin: 0;
  }
  
  .pricing-card .price {
    font-size: 1.3em;
    color: #001F3F;
    margin-top: 5px;
  }
  
  .pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .pricing-card .features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
  }
  
  .pricing-card .features li:last-child {
    border-bottom: none;
  }
  
  .pricing-card footer {
    text-align: center;
    margin-top: 10px;
  }
  
  /* Bouton d'appel à l'action */
  .cta-button {
    display: inline-block;
    background: #001F3F;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #001F3F;
  }
  
  
  /* Portfolio gallery */
 /* Section Portfolio */
.portfolio-section {
    padding: 60px 20px;
    background: #fff;
  }
  
  .portfolio-header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  
  .portfolio-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #001F3F;
  }
  
  .portfolio-header p {
    font-size: 1.2em;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  /* Grille de portfolio */
  .portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  /* Carte Portfolio */
  .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .portfolio-item:hover {
    transform: scale(1.03);
  }
  
  .portfolio-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
  }
  
  /* Overlay informatif */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
  }
  
  .portfolio-item:hover .overlay {
    opacity: 1;
  }
  
  .overlay h3 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  .overlay p {
    color: #ddd;
    font-size: 1em;
    line-height: 1.4;
  }
  
/* Section Portfolio – Autres Réalisations */
#portfolio-other {
    padding: 60px 20px;
    background: #fff;
  }
  
  #portfolio-other .portfolio-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  #portfolio-other .portfolio-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #001F3F;
  }
  
  #portfolio-other .portfolio-header p {
    font-size: 1.2em;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  /* Grille de portfolio (même style que la section précédente) */
  #portfolio-other .portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  /* Carte Portfolio */
  #portfolio-other .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
  }
  
  #portfolio-other .portfolio-item:hover {
    transform: scale(1.03);
  }
  
  #portfolio-other .portfolio-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
  }
  
  /* Overlay informatif */
  #portfolio-other .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
  }
  
  #portfolio-other .portfolio-item:hover .overlay {
    opacity: 1;
  }
  
  #portfolio-other .overlay h3 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  #portfolio-other .overlay p {
    color: #ddd;
    font-size: 1em;
    line-height: 1.4;
  }
  


  /* Formulaires */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
  }
  form label {
    font-weight: bold;
  }
  form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Footer */
  footer {
    background-color: #001f3f;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 10px;
    }
    .pack-content {
      flex-direction: column;
    }
    .pricing {
      flex-direction: column;
      align-items: center;
    }
  }
  


  /* Section Contact */
.contact-section {
    background: #f7f9fc;
    padding: 60px 20px;
  }
  
  .contact-section .container {
    max-width: 800px;
    margin: auto;
    margin-top: 50px;

  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-header h2 {
    font-size: 2.5em;
    color: #001F3F;
    margin-bottom: 10px;
  }
  
  .contact-header .intro {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
  }
  
  /* Formulaire */
  .contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .form-group {
    flex: 1;
    min-width: 250px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
  .form-group.full-width {
    flex: 100%;
    margin-right: 0;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #001F3F;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1em;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #001F3F;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
  }
  
  /* Bouton d'appel à l'action */
  .cta-button {
    display: inline-block;
    background: #001F3F;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .cta-button:hover {
    background: #001F3F;
    transform: translateY(-2px);
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }
    .form-group {
      margin-right: 0;
    }
  }
  
















  
/* Section principale */
main {
  padding-top: 80px; /* pour compenser la navbar fixe */
}

#about {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#about h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #001F3F;
  text-align: center;
}

#about p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Section Mission */
.about-mission {
  background-color: #f0f8ff;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #001F3F;
}

.about-mission h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #001F3F;
}

/* Pack VTC */
.about-vtc-pack {
  margin-top: 40px;
  padding: 20px;
  background: #eef7ff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-vtc-pack h2 {
  text-align: center;
  color: #001F3F;
  margin-bottom: 20px;
}

.about-vtc-pack ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-vtc-pack ul li {
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Témoignages */
blockquote {
  font-style: italic;
  background-color: #f8f8f8;
  padding: 15px 20px;
  border-left: 4px solid #001F3F;
  margin: 20px 0;
}

/* Footer */
.about-footer {
  background-color: #001F3F;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.about-footer-content p {
  font-size: 0.9rem;
}


/* Styles pour le module de navigation AstuceMinute */
.nav-module {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

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

.nav-module__logo img {
  height: 40px;
}

.nav-module__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-module__bar {
  width: 25px;
  height: 3px;
  background-color: #001F3F;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.nav-module__links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-module__links li a {
  text-decoration: none;
  color: #001F3F;
  padding: 8px 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-module__links li a:hover {
  background-color: #001F3F;
  color: #fff;
  border-radius: 4px;
}

/* Responsive : version mobile */
@media (max-width: 768px) {
  .nav-module__toggle {
    display: flex;
  }
  
  .nav-module__links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  
  .nav-module__links.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-module__links li {
    margin-bottom: 10px;
  }
}


/* Réinitialisation et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #001F3F;
  background-color: #f9f9f9;
}

/* Navigation */


.about-logo img {
  height: 40px;
}




.about-nav-links li a {
  text-decoration: none;
  color: #001F3F;
  padding: 8px 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.about-nav-links li a:hover {
  background-color: #001F3F;
  color: #fff;
  border-radius: 4px;
}

/* Adaptatif : mobile */
@media (max-width: 768px) {
  .about-menu-toggle {
    display: flex;
  }
  
  .about-nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  
  .about-nav-links.active {
    opacity: 1;
    visibility: visible;
  }
  
  .about-nav-links li {
    margin-bottom: 10px;
  }
}

/* Section principale */
main {
  padding-top: 80px; /* pour compenser la navbar fixe */
}

#about {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#about h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color:#001F3F;
  text-align: center;
}

#about p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Section Mission */
.about-mission {
  background-color: #f0f8ff;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #001F3F;
}

.about-mission h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #001F3F;
}

/* Pack VTC */
.about-vtc-pack {
  margin-top: 40px;
  padding: 20px;
  background: #eef7ff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-vtc-pack h2 {
  text-align: center;
  color: #001F3F;
  margin-bottom: 20px;
}

.about-vtc-pack ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-vtc-pack ul li {
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Témoignages */
blockquote {
  font-style: italic;
  background-color: #f8f8f8;
  padding: 15px 20px;
  border-left: 4px solid #001F3F;
  margin: 20px 0;
}

/* Footer */
.about-footer {
  background-color: #001F3F;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.about-footer-content p {
  font-size: 0.9rem;
}