/* Header fixe et fond noir sur toute la largeur */
@font-face {
    font-family: 'Avallon';
    src: url('police/Avallon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


.search-bar {
    position: relative;
    margin-left: 50px;
    width: 250px; /* ajustable */
    border-radius:11px;
    overflow: hidden;
    border: 1px solid #151515;
}

.search-bar input {
    width: 100%;
    padding: 8px 35px 8px 15px; /* espace pour la loupe à droite */
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.search-bar:focus-within {
    color: #060606;
    border-color: rgb(255, 255, 255); /* bordure rouge quand l'input est actif */
    box-shadow: 0 0 5px rgba(6, 6, 6, 0.5);
}

.search-bar::after {
    content: "\f002"; /* code Unicode de Font Awesome pour la loupe */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #151515;
    pointer-events: none; /* pour que ça ne bloque pas la saisie */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff; /* fond noir */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 50px;
    height: 70px;
    z-index: 1000;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Logo */
.navbar .logo img {
    height: 90px;
}

.logo {
  transition: transform 0.4s ease;
}
.logo:hover {
  transform: rotateY(15deg) scale(1.05);
}

/* Menu */
.navbar .menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
}

.navbar .menu li a {
    
    font-weight: 800; /* gras pour ressembler aux titres Notion */
    letter-spacing: 0.5px; /* léger espacement pour le style Notion */
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    color: #151515;
    transition: color 0.3s;
    align-items: center;
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.navbar .menu li a:hover {
    color: #df0909;
}

.navbar .menu li a.page-active {
    color: #df0909;
}


.social-icons {
    display: flex;
    align-items: center;
    gap: 20px; /* espace entre chaque icône */
}

.social-icons a {
    position: relative;
    color: #000; /* couleur des icônes */
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    padding: 0 10px; /* espace pour le séparateur */
}

.social-icons a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    width: 1px;
    height: 50%;
    background-color: #000000; /* couleur de la barre de séparation */
    transition: height 0.3s;
}

.social-icons a:hover {
    color: #df0909; /* couleur au hover */
    transform: scale(1.2); /* effet zoom léger */
}

.social-icons a:hover::after {
    height: 100%; /* la barre s'étend sur toute la hauteur de l’icône */
}



/* Pour ne pas que le contenu soit caché sous le header */
body {
    padding-top: 70px; /* ajuster selon la hauteur du header */
    margin: 0;
    background-color: #f7f7f7;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* pleine hauteur de l'écran */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-60%);
  font-family: 'Poppins', sans-serif;
}

.hero-content img {
  height: 400px;
}

.hero-content p {
  font-size: 1.3rem;
  font-family: 'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  font-weight: bold;
}

.btn {
  background: #df0909;
  color: white;
  padding: 10px 20px;
  font-family: 'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  border-radius:10px;
  transition: background 0.3s;
  display: inline-block;
  margin-top: 40px;
  font-weight: 800;
}

.btn:hover {
  background: #ffffff;
  color: #df0909;
}



/* SECTION : Capturer l’aventure */
.section-capturer {
 background-image: url(image/capture.png);
 background-repeat: no-repeat;
 background-position: center;
 background-size: cover;
 padding: 20px 20px;
 position: relative;
}

/* TITRE ET SOUS-TITRE */
.section-capturer .section-title {
  font-size: 8rem;
  font-weight: 100;
  color: ##1c1c1c;
  font-family: 'Avallon';
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.section-capturer .subtitle {
  font-size: 1.3rem;
  color: #1c1c1c;
  font-family: 'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-top: 0;
  margin-bottom: 80px; /* espace avant les articles */
}

/* ARTICLES */
.article-capturer {
  display: flex;
  flex-wrap: wrap; /* permet de passer à la ligne sur petits écrans */
  justify-content: center;
  gap: 30px;
  max-width: 95%;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* Style d’un article individuel */
.article {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 1 1 30%;
  max-width: 400px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
  overflow: hidden;       /* coupe les débordements éventuels */
  position: relative;     /* référence pour le h3 positionné */
}

.article-img {
    position: relative;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    display: block;
    height: auto;
}

.article-img h3 {
    position: absolute;
    bottom: 0px;                             
    color: #ffffff;
    font-family: 'Inter', 'Montserrat', sans-serif;
    text-transform: uppercase;                  
    background-color: rgb(194, 14, 14);
    padding: 5px 10px;
    margin: 0;
}

.article-content {
  padding: 18px;
}

.article-content p{
    margin: 0;
    color: #1c1c1c;
    line-height: 1.5;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 14px;
}

#savoirplus {
  text-align: center; /* centre le contenu à l'intérieur */
  margin: 20px auto 60px auto; /* espace au-dessus, centré horizontalement */
  width: fit-content; /* la div fait la largeur du bouton */
}

#savoirplus .btn {
  background-color: rgb(20, 20, 20);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 5px;
  text-decoration: none;
  border-color: rgb(150, 10, 10);
}

#savoirplus .btn:hover {
  background-color: rgb(150, 10, 10);
}

.btn i {
  margin-left: 10px; /* espace entre icône et texte */
}


/* SECTION PARTENAIRE ///////////////////////////////////////////////////////////// */

#section-sponsor {
  display: flex;
  flex-wrap: wrap;
  background-color: aqua;
}

#img-sponsor {
  flex: 1;
  background-image: url(image/pgsponsor.png);
  background-position: center;
  background-size: cover;
  opacity: 90%;
}

#sponsor-content {
  flex: 2.5;
  background-color: rgb(194, 14, 14);
}

#sponsor-content .section-title {
  font-size: 8rem;
  font-weight: 100;
  color: white;
  font-family: 'Avallon';
  margin: 0 0 0 40px;
}

#sponsor-content .subtitle {
  font-size: 1.3rem;
  color: white;
  font-family: 'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 0 0 40px;
}


#paragraphe-sponsor {
  font-size: 1rem;
  color: white;
  font-family: 'Inter', 'Montserrat', sans-serif;
  margin: 20px 0 0 40px;
  width: 65%;
}

#blocicone {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  margin-top: 60px;
  margin-bottom: 20px;
  margin-left: 40px;
}

#sponsor-content img {
  width: 80px;
  display: block;
}

.contact-container {
  display: flex;
  flex-wrap: wrap; /* centre horizontalement */
  align-items: center;      /* centre verticalement (si tu veux) *         /* optionnel, pour donner de l’espace */
  margin-left: 40px;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  gap: 20px;

}

.cta {
  background-color: #ffffff;
  color: rgb(194, 14, 14);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.cta:hover {
  color: #1e1e1e;
}


/* SECTION GEOGRAPHY ///////////////////////////////////////////////////////// */


#geography {
  min-height: 90vh;
  background-image: url(image/bg-geographique.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#geography .section-title {
  font-size: 8rem;
  font-weight: 100;
  color: rgb(27, 27, 27);
  font-family: 'Avallon';
  margin: 0 0 0 50px;
  text-align: center;
}

#geography .subtitle {
  font-size: 1.3rem;
  color: rgb(27, 27, 27);
  font-family: 'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}


#geography-content {
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  width: 70%;
}

#paragraphe-geo {
  flex: 1 1 300px; /* s’adapte au viewport, minimum 300px */
  max-width: 500px;
  color: #1b1b1b;
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

#geography strong{
  color: rgb(194, 14, 14);

}

#img-geo img {
   max-width: 100%;
   width: 400px;
  height: auto;
  display: block;
  object-fit: contain;
}


.section-contact {
  width: 100%;
  padding: 60px 20px;
  background-color: rgb(15, 15, 15);
  box-sizing: border-box;
  text-align: center;
}

.section-contact .section-title {
  font-size: 28px;
  margin-bottom: 10px;
  font-family: 'Inter', 'Montserrat', sans-serif;
}

.section-contact .subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #ffffff;
  font-family: 'Inter', 'Montserrat', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  gap: 20px;;
}

.contact-form, .contact-info {
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.contact-form label {
  font-weight: 600;
  font-family: 'Inter', 'Montserrat', sans-serif;
  text-align: left;
  color: white;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  background-color: rgb(194, 14, 14);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* espace entre icône et texte */
   margin-bottom: 0px;
}

.contact-form .btn:hover {
  background-color: rgb(150, 10, 10);
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
  font-family: 'Inter', 'Montserrat', sans-serif;
  color: #ffffff;
}

.contact-info a {
  color: rgb(194, 14, 14);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}




/* PAGES SERVICES //////////////////////////////////////////////////////////////////////////////////////// */


#service-documentaire {
  min-height: 90vh;
  background-color: rgb(243, 243, 243);
  display: flex;
  flex-wrap: nowrap;
}

#infos-documentaire {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}#infos-documentaire > div, /* si tu veux envelopper le contenu dans un div */
#infos-documentaire p,
#infos-documentaire ul,
#infos-documentaire h2,
#infos-documentaire h3 {
  max-width: 600px;   /* largeur maximale du contenu */
  margin-left: auto;  /* centre horizontalement */
  margin-right: auto;
  padding: 0 20px;    /* petit espace intérieur si besoin */
}

#infos-documentaire h2{
  text-align: center;
  font-size: 7rem;
  font-weight: 100;
  font-family: 'Avallon';
  color: #1c1c1c;
  margin-bottom: 20px;
  margin-top:0;
}

#infos-documentaire h3{
  text-align: left;
  font-family:'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: rgb(194, 14, 14);
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0;
}

#infos-documentaire p {
  text-align: left;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Inter', 'Montserrat', sans-serif ;
  font-style: italic;
  color: #414141;
}




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

.triangle-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-family: "Inter", "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #1c1c1c;
  font-weight:900;
}

/* Petit triangle rouge */
.triangle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid rgb(194, 14, 14); /* ton rouge */
}

#image-documentaire {
  width: 50%;
  background-image: url(image/imgdocumentaire.jpg);
  background-position: center;
  background-size: cover;
}



#service-evenement {
  min-height: 90vh;
  background-color: rgb(15, 15, 15);
  display: flex;
  flex-wrap: nowrap;
}

#infos-evenement {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}#infos-evenement > div, /* si tu veux envelopper le contenu dans un div */
#infos-evenement p,
#infos-evenement ul,
#infos-evenement h2,
#infos-evenement h3 {
  max-width: 600px;   /* largeur maximale du contenu */
  margin-left: auto;  /* centre horizontalement */
  margin-right: auto;
  padding: 0 20px;    /* petit espace intérieur si besoin */
}

#infos-evenement h2{
  text-align: center;
  font-size: 7rem;
  font-weight: 100;
  font-family: 'Avallon';
  color: #ffffff;
  margin-bottom: 20px;
  margin-top:0;
}

#infos-evenement h3{
  text-align: left;
  font-family:'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0;
}

#infos-evenement p {
  text-align: left;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Inter', 'Montserrat', sans-serif ;
  font-style: italic;
  color: #dadada;
}

#infos-evenement .triangle-list li {
  color: white;
}



#image-evenement {
  width: 50%;
  background-image: url(image/evenement.png);
  background-position: center;
  background-size: cover;
}





#service-capsule {
  min-height: 90vh;
  background-color: rgb(235, 235, 235);
  display: flex;
  flex-wrap: nowrap;
}

#infos-capsule {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}#infos-capsule > div, /* si tu veux envelopper le contenu dans un div */
#infos-capsule p,
#infos-capsule ul,
#infos-capsule h2,
#infos-capsule h3 {
  max-width: 600px;   /* largeur maximale du contenu */
  margin-left: auto;  /* centre horizontalement */
  margin-right: auto;
  padding: 0 20px;    /* petit espace intérieur si besoin */
}

#infos-capsule h2{
  text-align: center;
  font-size: 7rem;
  font-weight: 100;
  font-family: 'Avallon';
  color:#1c1c1c;
  margin-bottom: 20px;
  margin-top:0;
}

#infos-capsule h3{
  text-align: left;
  font-family:'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  color:#df0909;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0;
}

#infos-capsule p {
  text-align: left;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Inter', 'Montserrat', sans-serif ;
  font-style: italic;
  color: #414141;;
}

#infos-capsule {
  width: 50%;
}


#image-capsule {
  width: 50%;
  background-image: url(image/capsuleservice.jpg);
  background-position: center;
  background-size: cover;
}





#service-divers {
  min-height: 90vh;
  background-color: rgb(15, 15, 15);
  display: flex;
  flex-wrap: nowrap;
}

#infos-divers {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}#infos-divers > div, /* si tu veux envelopper le contenu dans un div */
#infos-divers p,
#infos-divers ul,
#infos-divers h2,
#infos-divers h3 {
  max-width: 600px;   /* largeur maximale du contenu */
  margin-left: auto;  /* centre horizontalement */
  margin-right: auto;
  padding: 0 20px;    /* petit espace intérieur si besoin */
}

#infos-divers h2{
  text-align: center;
  font-size: 7rem;
  font-weight: 100;
  font-family: 'Avallon';
  color: #ffffff;
  margin-bottom: 20px;
  margin-top:0;
}

#infos-divers h3{
  text-align: left;
  font-family:'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0;
}

#infos-divers p {
  text-align: left;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Inter', 'Montserrat', sans-serif ;
  font-style: italic;
  color: #dadada;
}

#infos-divers .triangle-list li {
  color: white;
}


#infos-divers {
  width: 50%;
}


#image-divers {
  width: 50%;
  background-image: url(image/diversservice.jpg);
  background-position: center;
  background-size: cover;
}



#image-storytelling {
  width: 50%;
  background-image: url(image/img-storytelling.png);
  background-position: center;
  background-size: cover;
}

#image-tournage {
  width: 50%;
  background-image: url(image/img-tournager.jpg);
  background-position: center;
  background-size: cover;
}

#image-diffusion {
  width: 50%;
  background-image: url(image/img-diffusion.jpg);
  background-position: center;
  background-size: cover;
}

#objectifstrail {
  width: 50%;
  background-image: url(image/objectifwallpaper.png);
  background-position: center;
  background-size: cover;
}



/* SECTION REALISATION /////////////////////////////////////////////////////////////*/

#galerie-videos {
    padding: 80px 40px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)), url('image/bg-production.png');
    background-position: center;
    background-size: cover;
}

#galerie-videos h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

/* THUMBNAIL */
.video-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio = 9/16 = 0.5625 */
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.video-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover effect */
.video-item:hover img {
    transform: scale(1.07);
    transition: 1.5s ease;
}

/* Overlay play icon */
.video-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

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

.video-item span {
    font-size: 5rem;
    color: #df0909;
}

/* MODAL */
#video-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

#modal-video {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
}

/* Close button */
.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

#galerie-videos h2 {
  font-size: 8rem;
  font-weight: 100;
  color: white;
  font-family: 'Avallon';
  text-align: center;
  margin-top: 0;
}

#galerie-videos .accroche {
  font-size: 1.3rem;
  font-family: 'Inter', 'Montserrat', sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  color: white;
}




/* PAGE A PROPOS */ 

.profil-photo {
    width: 220px;         /* ajuste selon ton besoin */
    height: 220px;        /* même valeur pour un cercle parfait */
    border-radius: 50%;   /* rend l'image ronde */
    object-fit: cover;    /* recadre l'image si nécessaire */
    display: block;
     margin: 0 auto 20px auto;       /* centre l'image horizontalement */
     filter: grayscale(100%);
}

#redpara {
  color: #df0909;
}

#titre-contact {
  font-family: 'Avallon';
  color: white;
  font-size: 7rem;
  font-weight: 100;
  margin-top: 70px;
}

/* FOOTER Objectifs Trail - compact, fond rouge, texte blanc */
.ot-footer {
  background: #1f1f1f; /* rouge — adapte si tu veux un autre ton */
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 14px;
  line-height: 1.3;
  position: relative;
  width: 100%;
}

/* Conteneur principal — colonnes */
.ot-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;            /* petit espace entre colonnes */
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 22px;   /* padding raisonnable pour garder le footer bas */
  max-width: 1200px;
  margin: 0 auto;
}

/* Colonnes */
.ot-col {
  min-width: 140px;     /* permet la responsivité */
  flex: 1 1 180px;      /* s'étire mais reste compact */
}

/* Branding */
.ot-col-brand .ot-logo {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.ot-tagline {
  font-size: 12px;
  opacity: 0.95;
}

/* Titres de colonne */
.ot-col-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 13px;
}

/* Liens et apparence */
.ot-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 6px;
  opacity: 0.95;
}
.ot-link:hover {
  text-decoration: underline;
  opacity: 1;
}

/* Contact */
.ot-contact .ot-phone {
  margin-top: 6px;
  font-size: 13px;
}

/* Bas du footer (copyright) */
.ot-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 22px;
  text-align: center;
  font-size: 12px;
  opacity: 0.95;
}

 body.legal-page {
            background: #f3f3f3;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 40px 10px;
        }

        .legal-wrapper {
            max-width: 850px;
            margin: 0 auto;
            background: white;
            padding: 40px 35px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .legal-wrapper h1 {
            text-align: center;
            color: #b40000;
            font-size: 30px;
            margin-bottom: 35px;
            letter-spacing: 1px;
        }

        .legal-wrapper h2 {
            margin-top: 28px;
            color: #b40000;
            font-size: 20px;
            border-left: 4px solid #b40000;
            padding-left: 10px;
        }

        .legal-wrapper p {
            margin-top: 10px;
            line-height: 1.6;
            color: #444;
        }

        .legal-wrapper strong {
            color: #000;
        }

        .instasection {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    overflow: hidden;  /* empêche la section de déborder */
}

.galleryinsta {
    width: 100%;
    max-width: 800px; /* ajuste ici selon tes préférences */
}

.lightwidget-widget {
    max-height: 700px; /* ajuste si besoin */
    display: block;
}

/* Responsive */
@media (max-width: 1000px) {


  #image-documentaire, #image-evenement, #image-capsule, #image-divers, #image-storytelling, #image-tournage, #image-diffusion, #objectifstrail {
    display: none;
  }

  #infos-documentaire, #infos-evenement, #infos-capsule, #infos-divers {
    width: 100%;
  }

  #galerie-videos h2 {
    font-size: 5rem;
  }

  .section-capturer .section-title {
    font-size: 5rem;
  }

  #infos-documentaire h2, #infos-capsule h2, #infos-evenement h2, #infos-divers h2, #titre-contact {
    font-size: 5rem;
  }

  .menu, .search-bar {
    display: none !important;
  }


}






@media (max-width: 800px) {
  .article {
    flex: 1 1 100%; /* chaque article prend toute la largeur */
    max-width: 100%;
  }

  #section-sponsor {
    flex-direction: column;
  }

  #sponsor-content .section-title {
    font-size: 3rem;
    margin: 20px;
  }

  #paragraphe-sponsor {
    width: 90%;
    margin: 20px auto;
  }

  #blocicone {
    gap: 20px;
}

#geography-content {
    width: 90%;
    margin: 60px auto 0;
    justify-content: center;
  }

  #geography .section-title {
    font-size: 4rem;
  }

  #img-geo img {
    width: 300px;
  }

 .contact-container {
    display: block;
  }

  .contact-form,
  .contact-info {           /* supprime l’effet flex desktop */
    width: 100%;           /* prend toute la largeur */
    max-width: 100%;       /* supprime la limitation desktop */
    margin-bottom: 20px; 
    flex: none !important;  /* espace entre blocs */
  }
}

@media (max-width: 1200px) {
    .video-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .video-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    #modal-video {
        height: 300px;
    }
}