html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
/* Préchargement */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3c3c3c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#preloader.fade-out {
    opacity: 0;
    backdrop-filter: blur(5px);
    transition: opacity 0.8s ease, backdrop-filter 0.8s ease;
}
/* Corps général */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1d1d1d;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Header et Navigation */

.custom-header {
    background-color: #000000;
    padding: 20px;
    text-align: center;
    font-size: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}
.logo-center img {
    height: 110px; 
    margin-bottom: 10px;
}
.logo-center img {
    opacity: 0;
    animation: fadeLogo 1s ease-in-out forwards;
    animation-delay: 0.2s;
  }
  @keyframes fadeLogo {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
nav {
    margin-top: 10px;
    display: flex;
    gap: 30px;
    font-size: 60px;
    justify-content: center;
    flex-wrap: wrap;
}
nav a {
    color: white;
    text-decoration: none;
    font-size: 35px !important; /*ici taille du texte*/
    font-weight: bold;
    transition: color 0.3s;
}
nav a:hover {
    color: #58a6ff;
}
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 50px;
    gap: 50px;
    text-align: left;
}
/* Glow sur le texte  */
.hero-content h1 {
    text-shadow: 0 0 10px rgba(255, 255, 255, 1);
    font-size: 120px;
}
.hero-content p {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    font-size: 40px;
}
.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}
.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: -150px; /* Remonte un peu tout */
}
.bt1, .footer-btn, button {
    background-color: white;
    color: black;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.bt1:hover, .footer-btn:hover, button:hover {
    background-color: #ddd;
    box-shadow: 0 0 30px rgba(255,255,255,0.8);
    transform: scale(1.08);
}
/* Hero Photo (page accueil SEULEMENT) */
.about-photo {
    width: 300px;
    border-radius: 100px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
    animation: floatAbout 4s ease-in-out infinite, fadeInAbout 2s ease-in forwards;
    opacity: 0;
}
/* Animation flottante spéciale About */
@keyframes floatAbout {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
/* Animation fade-in spéciale About */
@keyframes fadeInAbout {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Galerie Photos */
.theme-gallery img {
    width: 300px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255,255,255,0.4);
    transition: transform 0.4s, box-shadow 0.4s;
}
.theme-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255,255,255,0.8);
}
/* Animation flottante */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
/* Animation fade-in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* About Section */
.about {
    text-align: center;
    font-size: 30px;
    padding: 60px 20px;
}
.about-photo {
    width: 300px;
    border-radius: 100px;
    margin-bottom: 20px;
    background-color: transparent;
    animation: floatAbout 4s ease-in-out infinite, glowPulse 2.5s ease-in-out infinite, fadeInAbout 2s ease-in forwards;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    opacity: 0;
}
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 1);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    }
}

.citation {
  font-style: italic;
  font-size: 20px;
  color: white;
  text-align: center;
  margin: 30px auto;
  max-width: 600px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  padding: 10px 20px;
  border-left: 3px solid #ffffff33;
  text-shadow: 0 0 6px rgba(255,255,255,0.4),
               0 0 12px rgba(255,255,255,0.2);
  animation: glowCitation 2.5s ease-in-out infinite;
}

@keyframes glowCitation {
  0%, 100% {
    text-shadow: 0 0 6px rgba(255,255,255,0.4),
                 0 0 12px rgba(255,255,255,0.2);
  }
  50% {
    text-shadow: 0 0 10px rgba(255,255,255,0.7),
                 0 0 20px rgba(255,255,255,0.4);
  }
}

/* Animation flottante */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
.about-insta, .contact-insta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.about-insta a, .contact-insta a {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255,255,255,0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.about-insta a:hover, .contact-insta a:hover {
    background-color: #ddd;
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
}
.insta-icon {
    height: 24px;
}
.about-card, form {
    background-color: #111;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transition: box-shadow 0.5s ease;
}
.about-card:hover, form:hover {
    box-shadow: 0 0 40px rgba(255,255,255,0.6);
}
/* Contact Section */
.contact {
    text-align: center;
    font-size: 50px;
    padding: 40px 30px;
    text-shadow:
    0 0 6px rgba(255, 255, 255, 0.6),
    0 0 12px rgba(255, 255, 255, 0.3);
  animation: neonContact 2s ease-in-out infinite;
}

@keyframes neonContact {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(255, 255, 255, 0.6),
      0 0 12px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.9),
      0 0 24px rgba(255, 255, 255, 0.4);
  }
}
form {
    max-width: 800px;
    margin: 20px auto;
    background-color: #111;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
input, textarea {
    background: #222;
    color: white;
    font-size: 60px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #555;
    border-radius: 8px;
    width: 100%;
    transition: border-color 0.3s;
}
input:focus, textarea:focus {
    border-color: #58a6ff;
    box-shadow: 0 0 8px #58a6ff;
    outline: none;
}
button {
    margin-top: 20px;
    padding: 12px;
    background-color: white;
    color: black;
    font-weight: bold;
    font-size: 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}
button:hover {
    background-color: #ddd;
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
    transform: scale(1.05);
}
/* Galerie */
.gallery {
    text-align: center;
    padding: 40px 20px;
}
.themes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.theme-card {
    background-color: #111;
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 22px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(255,255,255,0.3);
}
.theme-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255,255,255,0.8);
}
.theme-gallery {
    margin-top: 30px;
}
.theme-gallery img {
    width: 300px;
    margin: 10px;
    border-radius: 8px;
    transition: transform 0.4s, box-shadow 0.4s;
}
.theme-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255,255,255,0.5);
}
/* Footer propre */
footer {
    background: #000;
    color: white;
    padding: 30px 20px;
    margin-top: auto;
    text-align: center;
    font-size: 25px;
    box-shadow: 0 -2px 10px rgba(255,255,255,0.1);
}
.footer-insta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.footer-insta img {
    height: 55px;
    position: center;
}
.footer-insta a {
    color: #ffffff;
    font-weight: bold;
    font-size: 25px;
    text-decoration: none;
}
.footer-insta a:hover {
    color: #ffffff;
}
.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    font-weight: bold;
    font-size: 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.footer-btn:hover {
    background-color: #ddd;
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
}
/* Fade-In animation */
@-webkit-keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Responsive Mobile */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 20px;
    }
    .hero-photo {
        width: 250px;
    }
    .themes {
        flex-direction: column;
        align-items: center;
    }
}
/* Glow Pulse Animation */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(255,255,255,0.5); }
    50% { box-shadow: 0 0 40px rgba(255,255,255,0.8); }
    100% { box-shadow: 0 0 20px rgba(255,255,255,0.5); }
}
.categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.category-img img {
  width: 780px !important;     /* avant : 280px */
  height: 700px !important;    /* avant : 200px */
}

.category-img span {
  font-size: 32px !important;   /* avant : 18px */
}

.category {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 250px;
  height: 300px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255,255,255,0.8);
}
.category h2 {
    color: white;
    font-size: 28px;
    z-index: 2;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* Sombre 30% */
    z-index: 1;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    justify-items: center;
}
.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255,255,255,0.4);
    transition: transform 0.4s, box-shadow 0.4s;
}
.photo-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255,255,255,0.8);
}
nav a {
    position: relative;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255,255,255,0.05);
  }
  nav a:hover {
    animation: neon-glow 1s infinite alternate;
    background-color: rgba(255, 255, 255, 0.08);
  }
  @keyframes neon-glow {
    from {
      box-shadow: 0 0 8px rgba(255,255,255,0.2);
    }
    to {
      box-shadow: 0 0 16px rgba(255,255,255,0.5);
    }
  }
  .top-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: black;
  }
  .banner-background-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    animation: backgroundZoom 20s infinite alternate ease-in-out;
  }
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  @keyframes blink-caret {
    50% { border-color: transparent }
  }
.typewriter {
  display: inline-block;
  overflow: hidden;
  width: fit-content;
  white-space: nowrap;
  border-right: 2px solid white;
  animation: typing 4s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
  letter-spacing: 2px;
  max-width: 100%;
}
  .mini-galleries {
    padding: 60px 20px;
    background-color: #111; /* même fond que reste du site */
    text-align: center;
  }
  .mini-gallery {
    margin-bottom: 60px;
  }
  .mini-gallery h2 {
    color: white;
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4); /* léger glow néon blanc */
    animation: fadeIn 1s ease-in-out both;
  }
  .photo-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .photo-line img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255,255,255,0.3);
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .photo-line img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255,255,255,0.6);
  }
  .photo-line img {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.photo-line img[loading="lazy"] {
    opacity: 1;
}
/* Mobile clean layout */
@media (max-width: 768px) {
  .top-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60vh;
    overflow: hidden;
  }





  .banner-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
  }

}


@media (max-width: 768px) {
    .custom-header {
      padding: 40px 20px;
    }
  }

  @media (max-width: 768px) {
    nav a {
      font-size: 50px;
      padding: 30px 46px;
    }
  }

  @media (max-width: 768px) {
    .category h2 {
      font-size: 28px;
    }
  }

  @media (max-width: 768px) {
    p {
      font-size: 18px;
    }
  }


  @media (max-width: 768px) {
    .logo-center img {
      height: 350px;
    }
  }
  .category h2 {
    font-size: 22px;
  } 


  
  @keyframes neonGlow {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }

  

@keyframes neonGlow {
    from {
        box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white;
    }
    to {
        box-shadow: 0 0 20px white, 0 0 30px white, 0 0 40px white;
    }
}



.cat-card {
  position: relative;
  width: 200px;
  height: 220px;
  background: #1e1e1e;
  border-radius: 16px;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  z-index: 0;
  overflow: visible;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.cat-card:hover {
  transform: translateY(-8px);
}

/* Neon border animé */



@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cat-icon {
  font-size: 20px;
  margin-bottom: 1rem;
  z-index: 1;
}

.cat-title {
  font-size: 25px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: bold;
  z-index: 1;
}


/*MES COMPETENCES*/

.skills-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #111;
}

.skills-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.photo-center {
  position: relative;
  width: 200px;
  height: 200px;
}

.photo-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  z-index: 2;
  position: relative;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.neon-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border-radius: 50%;
  background: radial-gradient(white, transparent);
  filter: blur(8px);
  animation: pulseNeon 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseNeon {
  0%, 100% {
    box-shadow: 0 0 20px white;
    opacity: 0.6;
  }
  50% {
    box-shadow: 0 0 40px white;
    opacity: 1;
  }
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

.skill {
  background: rgba(255,255,255,0.05);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 30px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.skill:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.skills-section h1 {
  font-size: 50px; /* augmente ici si tu veux encore plus gros */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}


@media (max-width: 768px) {
  .skills-section h1 {
    font-size: 50px;
  }

  .photo-center {
    width: 140px;
    height: 140px;
  }

  .skills-list .skill {
    font-size: 40px;
    padding: 10px 16px;
  }

  .skill {
    background: rgba(255,255,255,0.05);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 40px;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
  }
}


.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2em;
  background-color: #171717;
  border-radius: 25px;
  transition: 0.4s ease-in-out;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.form:hover {
  transform: scale(1.02);
  border: 1px solid #333;
}

#heading {
  text-align: center;
  margin-bottom: 1em;
  color: white;
  font-size: 1.5em;
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.field {
  display: flex;
  font-size: 20px;
  align-items: center;
  gap: 0.8em;
  border-radius: 25px;
  padding: 0.6em 1em;
  background-color: #171717;
  box-shadow: inset 2px 5px 10px #050505;
}

.input-icon {
  height: 1.3em;
  width: 1.3em;
  flex-shrink: 0;
}

.input-field {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 50px;
  padding: 12px 0;
  font-size: 35px !important;
  color: #d3d3d3;
}

textarea.input-field {
  resize: vertical;
}

.btn {
  display: flex;
  font-size: 30px;
  justify-content: center;
  margin-top: 2em;
}

.button1 {
  padding: 0.8em 2.2em;
  border-radius: 8px;
  border: none;
  outline: none;
  background-color: #252525;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(255,255,255,0.1);
}

.button1:hover {
  background-color: #000;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.user-profile {
  width: 131px;
  height: 51px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  background: linear-gradient(to bottom right, #2e8eff 0%, rgba(46, 142, 255, 0) 30%);
  background-color: rgba(46, 142, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1000;
}

.user-profile:hover,
.user-profile:focus {
  background-color: rgba(46, 142, 255, 0.7);
  box-shadow: 0 0 10px rgba(46, 142, 255, 0.5);
  outline: none;
}

.user-profile-inner {
  width: 127px;
  height: 47px;
  border-radius: 13px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-weight: 600;
}

.user-profile-inner svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

.user-profile-inner p {
  margin: 0;
  font-size: 16px;
}

/*AVIS CLIENTS CSS*/

.avis-section {
  padding: 60px 20px;
  background-color: #111;
  color: white;
}

.avis-section h2 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px;
}

.avis-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.avis-card {
  flex: 0 0 300px;
  background-color: #1d1d1d;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 12px rgba(255,255,255,0.1);
  scroll-snap-align: start;
}

.avis-card p {
  font-style: italic;
  font-size: 30px;
  line-height: 1.6;
}

.avis-card strong {
  font-style: normal;
  font-weight: bold;
}