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

/* ------------------- BASE ------------------- */
@font-face {
  font-family: 'GasthonySignature';
  src: url('https://niceartstudio.fr/font/GasthonySignature-L3Pnn.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fdfdfd;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

h1, h2, h3 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 0.95rem;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #999;
}

nav.menu { /* adapte le sélecteur à ta structure ! */
  position: relative;
}

nav.menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px; /* épaisseur de la ligne */
  background-color: #999; /* couleur de la ligne – ajuste à ton design */
  margin-top: 10px; /* espace entre le menu et la ligne */
}


/* ----------------- HEADER ----------------- */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px 0;
  background: #fff;
}

.social-icons {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

.social-icons a img {
  width: 12px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.social-icons a img:hover {
  opacity: 1;
}

.logo-menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-center img {
  height: 60px;
}

.hamburger {
  display: none; /* Ajoute ça en dehors de tout @media */
}

.menu-centered ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}

.menu-centered a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ------------------ HERO ------------------ */
.hero {
  text-align: center;
  padding: 150px 20px;
  background: url('images/header.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;

}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero h1, .hero p, .hero a {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 1rem;
  margin-bottom: 10px;
    letter-spacing: 0.2em;
}

.hero p {
  font-size: 0.8rem;
  text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn {
  display: inline-block;
  font-size: 0.8rem;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  text-transform: uppercase;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn:hover {
  background: #777;
  color: #fff;
}

.hero .btn {
  display: inline-block;
  font-size: 0.7rem;
  background: #fff;
  color: #111;
  padding: 8px 20px;
  text-transform: uppercase;
  margin-top: 50px; /* plus bas */
  border-radius: 30px; /* bord arrondi pour élégance */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.4s, color 0.4s, transform 0.4s;
}

.hero .btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(2px); /* petit effet "survolé" */
}


/* ---------------- ACCUEIL / DESCRIPTION ------------ */

.description h2{
  font-size: 0.7rem;
  text-align-last: center;
  padding: 60px;
}

/* ----------------- DESCRIPTION ----------------- */
.description {
  background: #f9f9f9; /* léger fond pour la mettre en valeur */
  padding: 60px 20px;
  text-align: center;
}

.description-container {
  max-width: 800px;
  margin: 0 auto;
}

.description p {
  font-family: 'Montserrat', sans-serif; /* Même police que le reste */
  font-size: 0.7rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* ----------------- SECTION FILM-MAKING ----------------- */
.film-making {
  background: #f9f9f9; /* même fond que la description */
  padding: 60px 20px;
  text-align: center;
}

.film-making .description-container {
  max-width: 800px;
  margin: 0 auto;
}

.film-making p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* Bouton CTA pour la section film-making */
.film-making .cta-btn {
  display: inline-block;
  font-size: 0.7rem;
  background: #111;
  color: #fff;
  padding: 8px 20px;
  text-transform: uppercase;
  margin-top: 30px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.4s, color 0.4s, transform 0.4s;
}

.film-making .cta-btn:hover {
  background: #333;
  transform: translateY(2px);
}



/* ------------- PRESTATIONS ------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 40px;
  
}

.portfolio h2 {
  font-size: 0.8rem; /* plus petit */
  text-transform: uppercase; /* majuscules */
  letter-spacing: 0.1em;
  color: #555; /* gris élégant si tu veux */
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}


.portfolio-item {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.portfolio-item img {
  width: 100%;
  max-width: 300px; /* limite la largeur des images */
  display: block;
  border-radius: 4px;
}

/* Effet hover comme dans la page Portfolio */
.portfolio-item img {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  opacity: 0.9;
}


/* Par défaut (PC) */

.portfolio-caption {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 30px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.portfolio-caption span {
  font-size: 0.7rem;
  display: block;
  margin-bottom: 5px;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-caption h3 {
  font-size: 1rem;
  margin: 0;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* -----------GALERIE PHOTO DE LA PAGE PORTFOLIO ET DE LA PAGE GALERIE ---------- */

/* --------- DEBUT PAGE INDIVIDUELLE GALERIE --------- */
.gallery-intro {
  text-align: center;
  padding: 60px 20px;
}

.gallery-intro h2 {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #111;
}

gallery-intro .gallery-location {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  font-style: italic;
}

.gallery-intro hr {
  width: 20px;
  border: 0.5px solid #333;
  margin: 10px auto;
}

.gallery-intro .gallery-description {
  font-size: 0.8rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-section {
  padding: 40px 20px;
}

.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-section .gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.gallery-section .gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  opacity: 0.9;
}


/* --------- FIN PAGE INDIVIDUELLE GALERIE --------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.gallery-info {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.85); /* blanc semi-transparent */
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.gallery-info p {
  margin: 5px 0;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.gallery-names {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7rem;
}

.gallery-location {
  font-size: 0.7rem;
}

.gallery-info hr {
  width: 20px;
  border: 0.5px solid #333;
  margin: 10px 0;
}

.gallery-info a {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: color 0.3s;
}

.gallery-info a:hover {
  color: #999;
}


/* ----------- SECTION "ILS NOUS ONT FAIT CONFIANCE" ----------- */
.trusted-by {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 60px 20px;
  background: #f9f9f9;
}

.trusted-by h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
}

.trusted-by .trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 1000px;
}

.trusted-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.trusted-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.trusted-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1; /* Toujours visible */
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s ease;
  line-height: 1.4;
  font-size: 0.5rem !important;
}

.trusted-overlay p {
  color: #eee; /* Couleur plus claire, proche du blanc */
  font-size: 0.65rem;
  line-height: 1.4;
}


.trusted-item:hover .trusted-overlay {
  opacity: 1;
}

.trusted-item:hover img {
  transform: scale(1.05);
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.carousel-item {
  position: relative;
}

.carousel-item img {
  width: 150px;
  height: auto;
  border-radius: 8px;
}

.comment {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.5s;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #888;
  font-weight: 400;
  flex-shrink: 0;
}

.vertical-text span {
  font-style: italic;
}

.vertical-text.left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.vertical-text.right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}


/* --------- A PROPOS -------- */

/* --------- PAGE À PROPOS --------- */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
}

.about-text p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.about-text ul {
  list-style-type: disc;
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #333;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
}

.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 30px;
}

.testimonial {
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #333;
}

.testimonial p {
  margin-bottom: 10px;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.7rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    gap: 20px;
  }

  .about-section.reverse {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 0.9rem;
  }

  .about-text p,
  .about-text ul li {
    font-size: 0.75rem;
  }
  
  
}



/* 1024 Responsive tablette */

@media (max-width: 1024px) {
PRESTATIONS

  .portfolio-item img {
    max-width: 80%; /* images plus petites et centrées */
    margin: 0 auto;
  }
  
  .portfolio-caption {
    padding: 15px 25px; /* vignette plus petite */
  }

  .portfolio-caption h3 {
    font-size: 0.9rem; /* texte un peu plus petit */
  }
  
    .portfolio-caption span {
    font-size: 0.65rem;
  }
  
  .trusted-by .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trusted-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1; /* Toujours visible */
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s ease;
  line-height: 1.4;
  font-size: 0.5rem !important;
}
}

/* Responsive mobile */
@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

    .portfolio-caption {
    padding: 10px 20px; /* vignette encore plus petite */
  }

  .portfolio-caption h3 {
    font-size: 0.8rem;
  }

  .portfolio-caption span {
    font-size: 0.6rem;
  }
  
  .trusted-by .trusted-grid {
    grid-template-columns: 1fr;
  }
  
  .trusted-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1; /* Toujours visible */
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s ease;
  line-height: 1.4;
  font-size: 0.5rem !important;
}

  .vertical-text.left,
  .vertical-text.right {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    margin: 10px 0;
  }
}
  
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 10px; /* léger padding à gauche et droite */
  }

  .gallery-grid img {
    width: 100%;
    max-width: 90%; /* les images sont légèrement plus petites */
    margin: auto; /* centrées horizontalement */
  }

  .portfolio .gallery-grid img {
    max-width: 90%; /* même effet pour la section portfolio */
  }






/* ------------------ FOOTER ------------------ */

.footer {
  background: #fff;
  padding: 60px 20px; /* espace vertical plus important */
  color: #555;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  border-top: 1px solid #eee;
}

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

.footer-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.footer-info {
  max-width: 800px;
}

.footer-phrase {
  font-size: 0.75rem;
  line-height: 1.8; /* un peu plus aéré entre les lignes */
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 auto 0 auto; /* plus d’espace en bas */
  max-width: 800px;
}

.footer-contact {
    font-size: 0.75rem;
  margin: 20px 0; /* espace autour des coordonnées */
}

.footer-contact a {
  color: #111;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #999;
}

.footer-contact p {
  margin: 8px 0; /* espace vertical entre chaque ligne */
  font-size: 0.8rem;
}

.footer-logo img {
  max-width: 80px;
  height: auto;
  margin: 0 auto 30px auto; /* plus d’espace en bas */
  display: block;
  border-radius: 50%; /* arrondir la photo si c’est la photo de toi */
}

.footer-signature {
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 30px;
}

.footer-signature p {
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-signature .studio-signature {
  font-family: 'GasthonySignature', cursive; /* utilise la police personnalisée */
  font-style: italic;
  text-transform: capitalize; /* S majuscule, reste en minuscule */
  font-size: 1rem; /* ajuste si tu veux qu’il ressorte plus */
}

.footer-signature span {
  font-style: italic;
}

/* Bouton "Me contacter" */

.footer .cta-btn {
  display: inline-block;
  font-size: 0.7rem;
  background: #111;
  color: #fff;
  padding: 8px 20px;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 10px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.footer .cta-btn:hover {
  background: #333;
  transform: translateY(2px);
}

/* Réseaux sociaux sous le bouton */
.footer-social {
  margin-top: 20px;
}

.footer-social a img {
  width: 20px;
  margin: 0 10px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-social a img:hover {
  opacity: 1;
}

/* Signature décalée vers le bas */
.footer-signature {
  margin-top: 30px;
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-signature p {
  margin: 0;
}

.footer-signature span {
  font-style: italic;
}



/* ------------------ GALLERY ------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 0 40px;
}

.gallery-grid img {
  width: 100%;
  display: block;
  border: 5px solid #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  opacity: 0.9;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #fff;
  border-radius: 4px;
}

/* ----------------- VIDEOS ----------------- */

.filmmaker {
  text-align: center;
  padding: 60px 20px;
}

.filmmaker h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 30px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.videos-grid iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
}

.video-container iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.video-container:hover iframe {
  transform: scale(1.02);
}


/* ------- PAGE CONTACT ---------- */

.contact-section {
  text-align: center;
  padding: 60px 20px;
}

.contact-section h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 5px;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #999;
}

/* Carousel Trusted By */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 40px auto;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.trusted-item {
  flex: 0 0 33.333%; /* 3 visibles */
  opacity: 0.5;
  transform: scale(0.9);
  transition: opacity 0.5s, transform 0.5s;
}
.trusted-item img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.trusted-overlay {
  margin-top: 10px;
  font-size: 0.6rem;
  color: #555;
  line-height: 1.4;
}
.trusted-overlay i {
  display: block;
  color: #888;
  font-size: 0.6rem;
  margin-top: 5px;
}

/* Style du commentaire actif (central) */
.trusted-item.active {
  opacity: 1;
  transform: scale(1);
}

.carousel {
  overflow: hidden;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  border: none;
  font-size: 1rem;
  padding: 5px 10px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  z-index: 2;
}
.carousel-btn:hover { opacity: 1; }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }




/* ----------- SECTION BLOG ----------- */
/* ----------- SECTION BLOG ----------- */
/* ----------- SECTION BLOG ----------- */
/* ----------- SECTION BLOG ----------- */
/* ----------- SECTION BLOG ----------- */
.blog {
  padding: 60px 20px;
}

.blog h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

.blog-categories ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.blog-categories li {
  list-style: none;
}

.blog-categories a {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #111;
  border-bottom: 1px solid #111;
  text-decoration: none;
}

.blog-categories a:hover {
  color: #999;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-post {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.blog-post:hover {
  transform: translateY(-4px);
}

.blog-post h3 {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #111;
  text-transform: uppercase;
}

.blog-post p {
  font-size: 0.7rem;
  color: #555;
  margin-bottom: 10px;
}

.blog-post a {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #000;
  border-bottom: 1px solid #000;
  text-decoration: none;
}

.blog-post a:hover {
  color: #999;
}



/* ----------------- RESPONSIVE ----------------- */
/* ----------------- RESPONSIVE ----------------- */
/* ----------------- RESPONSIVE ----------------- */
/* ----------------- RESPONSIVE ----------------- */
/* ----------------- RESPONSIVE ----------------- */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .videos-grid iframe {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  a, .menu-hamburger {
    color: #000;
  -webkit-tap-highlight-color: transparent; /* Enlève le flash bleu */
}
  
  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    background: #fff;
    width: 100%;
    padding: 10px 0;
  }

  header {
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    position: static;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    transform: none;
  }

  .logo-center img {
    height: 50px;
  }

  .menu-centered ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.6rem;
  }
  
  .footer-phrase p {
    font-size: 0.7rem;
  }

  .footer-signature p {
    font-size: 0.7rem;
  }
    .video-container iframe {
    height: 300px;
  }
  
  .gallery-intro h2 {
    font-size: 1rem;
  }

  .gallery-intro .gallery-description {
    font-size: 0.75rem;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 768px) { /* ajuste si besoin */
  nav.menu-centered {
    position: relative;
  }

  nav.menu-centered::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #999;
    margin-top: 10px;
    position: absolute;
    bottom: -10px; /* pour bien coller la ligne sous le menu */
    left: 0;
  }
  
  .about-image img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

@media (min-width: 1024px) {
  .about-image img {
    max-width: 70%;
  }
}



@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  
    .hero h1 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.6rem;
  }
  
    .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
    .footer-phrase p {
    font-size: 0.7rem;
  }

  .footer-signature p {
    font-size: 0.7rem;
  }
  
    a, .menu-hamburger {
    color: #000;
  -webkit-tap-highlight-color: transparent; /* Enlève le flash bleu */
}
}
