
@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
background-color: #fafafa;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}

body {
font-family: 'Raleway' , sans-serif;
background: #fafafa;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow-x: hidden;
}

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

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


/* menu ordinateur */

#mainHeader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 80px;
      background-color: #fafafa;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 30px;
      transition: box-shadow 0.5s ease;
      z-index: 999;
    }

    #mainHeader.scrolled {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    
    }

    .logo img {
    padding-left: 90px;
    padding-top: 5px;
    margin: 0;
    height: 65px;
    display: block;
    }

    nav ul {
    padding-right: 70px;
    list-style: none;
    display: flex;
    gap: 60px;
    }

    nav ul li a { 
    position: relative;
    font-family: 'Raleway';
    font-size: 1.1rem;
    font-weight: 400;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    }

    .menu1 {
      margin-right: -40px;
    }

    /* Menu déroulant */

    .menu-deroulant {
  position: relative;
}

.sous-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: -30px;
  background-color: #fafafa;
  padding: 10px 5px 15px 5px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none;
  min-width: 160px;
  z-index: 1000;
}

.menu-deroulant:hover .sous-menu {
  display: block;
}

.sous-menu li {
  padding: 0;
  text-align: left;
  padding: 0 15px;
}

.sous-menu li a {
  display: block;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  font-size: 1rem;
}

/* Effet point gris sur les liens du sous-menu */
.sous-menu li a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #666666;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sous-menu li a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(3px);
}


    /* Fin Menu déroulant */


.menu a, .menuouvert {
font-family: 'Raleway';
font-size: 1.1em;
text-decoration: none;
color: #000028;
font-weight: 400;
}

.menuouvert li {

left: 50%;
bottom: -7px;
transform: translateX(-50%);
 width: 6px;
height: 6px;
border-radius: 50%;
background: #666666;
opacity: 1;
}

nav ul li {
  position: relative; /* Permet au ::before de se positionner par rapport au <li> */
}

nav ul li a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #666666;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

nav ul li a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(3px);
}

#responsive {
  display: none;
}

/* === corps === */

#entet .logo-responsive {
  display: none;
}

.intro-section {
    max-width:1300px;
    margin:200px auto 50px;
    display:flex;
    gap: 4rem;
    align-items:flex-start;
}

.text-left{
    flex:1 1 50%; 
    max-width: 1150px;
}

.text-right{
    flex:1 1 45%;
   
}

.text-right img {
    width:100%;
    display:block;
    border-radius: 50px;
    margin-top: 0px;
}

.txt-eft {
    /*max-width:1300px;
    margin:200px auto 40px;
    padding:0 30px;*/
    width:100%;
    max-width: 1100px;
    margin: 0 auto;  
}

.text-left h1 {
    color:#000028;
    font-size:3rem;
    font-weight:700;
    margin-bottom:25px;
    text-transform: uppercase;
}


.text-left h3 {
    color:#000028;
    font-size:1.8rem;
    font-weight:600;
    margin-bottom:35px;
}

/* Trait sous le h3 */


.intro-section h3::after {
    content:"";
    display:block;
    width:70px;
    height:2px;
    background:#000028;
    border-radius:3px;
    margin-top:15px;
}


.text-left p {
    color:#000028;
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:22px;
}

.gra {
  font-weight: 600;
}

.agenda h3 {
    font-family: 'Raleway';
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color:#000028;
    margin: 170px 0 -100px 180px;
    text-align: left;
}

.tiles-container {
    max-width:1300px;
    margin:200px auto ;
    padding:0px 40px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
    justify-content: center;
}
  
  /*
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 100px;
  justify-content: center;
  padding: 120px;
  margin: 0 0 50px 100px;
  */


.tile {
  display: flex;
  width: 500px; 450px;
  height: 150px;
  background: white;
  border-radius: 50px;10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile1 {
  display: flex;
  width: 520px;500px;450px;
  height: 170px;150px;
  background: #e45f21; #084463;;white;
  border-radius: 50px;10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile2 {
  display: flex;
  width: 520px;
  height: 170px;
  background:#e45f21;#fd7118; #e6642a;white;
  border-radius: 50px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile3 {
  display: flex;
  width: 520px;
  height: 170px;
  background: #a9bfd4;
  border-radius: 50px;10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile4 {
  display: flex;
  width: 520px;
  height: 170px;
  background: #084463; #8bc3e5;white;
  border-radius: 50px;10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile5 {
  display: flex;
  width: 520px;
  height: 170px;
  background: #bca0dc;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile6 {
  display: flex;
  width: 520px;
  height: 170px;
  background: #bca0dc;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile7 {
  display: flex;
  width: 520px;
  height: 170px;
  background: #e45f21; #409bd8;#ffa364; #8bc3e5;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.tile:hover, .tile1:hover, .tile2:hover,  .tile3:hover,  .tile4:hover,  .tile5:hover, .tile6:hover, .tile7:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.tile img, .tile1 img, .tile2 img, .tile3 img,  .tile4 img, .tile5 img, .tile6 img, .tile7 img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-right: 0px solid #ddd;
}

.tile-text {
  flex: 1;
  padding: 10px 16px;
}

.date {
  font-size: 1.333rem;
  color: #f6f1e4;#888;
  margin: 10px 0 15px;/* 0 0 5px */
}
.date3 {
  font-size: 1.333rem;
  color: #000028;
  margin: 10px 0 15px;
}

.date4 {
  font-size: 1.333rem;
  color: #f6f1e4; #000028;
  margin: 10px 0 15px;
}

.date5 {
  font-size: 1.333rem;
  color: #000028;
  margin: 10px 0 15px;
}

.date6 {
  font-size: 1.333rem;
  color: #000028;
  margin: 10px 0 15px;
}

.date7 {
  font-size: 1.333rem;
  color: #f6f1e4;
  margin: 10px 0 15px;
}

.title {
  font-size: 1.333rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #f6f1e4; #f1f1f1;#222;
}

.title5 {
  font-size: 1.333rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #000028;
}

.title6 {
  font-size: 1.333rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #000028;
}

.title7 {
  font-size: 1.333rem;
  text-transform: uppercase;
  margin: 0 0 25px;
  color: #f6f1e4; #f1f1f1;#222;
}

.title2 {
  font-size: 1.333rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #f6f1e4;#222;
}

.title3 {
  font-size: 1.333rem;
  text-transform: uppercase;
  margin: 0 0 25px;
  color: #000028;
}

.title4 {
  font-size: 1.333rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #f6f1e4;
}

.subtitle {
  font-size: 1rem;
  color: #f6f1e4;#444;
  margin: 0;
}

.subtitle3 {
  font-size: 1rem;
  color: #000028;
  margin: 0;
}

.subtitle4 {
  font-size: 1rem;
  color: #f6f1e4; #000028;
  margin: 0;
}

.subtitle5 {
  font-size: 1rem;
  color: #000028;
  margin: 0;
}

.subtitle6 {
  font-size: 1rem;
  color: #000028;
  margin: 0;
}

.subtitle7 {
  font-size: 1rem;
  color: #f6f1e4;
  margin: 0;
}

/*
.h3empreint {
  font-family: 'Raleway';'comfortaa';
  font-size: 1.333rem;
  font-weight: 400;
}
*/

.pays h3 {
    font-family: 'Raleway';
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color:#000028;
    margin: 170px 0 100px 180px;
    text-align: left;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  overflow-x: auto;
  margin: 40px;
  margin-bottom: 210px;
}

.card {
  width: 250px;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  
  background-color: transparent;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: block;
}

.caption {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #565656;
}


/*footer*/


    footer {
      font-family: 'Raleway';
      font-size: 1.1rem;
      font-weight: 400;
      background: #f3f3f3;#eaeaea;
      padding: 2rem 1rem;
      text-align: center;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12rem;
      margin-bottom: 1.5rem;
    }

    .footer-column {
      display: flex;
      flex-direction: column;
      align-items: start;
      min-width: 140px;
      padding-top: 40px;
      padding-bottom: 60px;
    }

    .footer-column a {
      position: relative;
      color: #000028;#333;
      text-decoration: none;
      margin: 0.5rem 0;
      font-size: 1em;
      transition: color 0.3s ease;
    }

    .footer-column a::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 7px;
      height: 7px;
      background: #666;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.7s ease, transform 0.5s ease;
    }

    .footer-column a:hover::after {
      opacity: 1;
    }

    .footer-colum {
      padding-top: 40px;
    }

    .social-icons {
      display: flex;
      gap: 30px;
      justify-content: center;
      margin-top: 0.5rem;
    }

    .social-icons a img {
      width: 30px;
      height: 30px;
      transition: transform 0.3s ease;
    }

    .social-icons a:hover img {
      transform: scale(1.25);
    }

    .copyright {
      font-size: 0.875rem;
      color: #565656;
    }






/* ================ Responsive Design ===============*/

    @media (max-width: 980px) {

    
      /* menu */

      
  #mainHeader {
   display: none;
  }

  #responsive, #entet .logo-responsive {
  display: block;
  }

/* Logo responsive dans #entet */
.logo-responsive {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 30px;
  z-index: 2;
}

.logo-responsive img {
  height: 30px;
}


/* Bouton hamburger */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  cursor: pointer;
  font-size: 35px;
}

/* Zone de menu latéral */
.side-menu {
  position: fixed;
  top: 0;
  right: -55%;
  width: 43%;
  max-width: 300px;
  height: 100%;
  background: #f3f3f3;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  padding: 60px 20px;
  box-sizing: border-box;
  z-index: 1000;
}


/* Menu ouvert */
.side-menu.open {
  right: 0;
}

/* Liens principaux */
.side-menu ul {
  flex-direction: column;
  margin-top: 70px;
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  margin: 10px 0;
}

.side-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Sous-menu */
.side-menu .submenu {
  margin-top: 30px;
  
  padding-left: 25px;
}


.side-menu .submenu li {
  margin-bottom: -15px ;
}

.side-menu .submenu li a {
  font-size: 2rem;1.75rem;
  font-weight: 500;
}

/* Icône croix */
.menu-toggle.open:before {
  content: '✖';
}

/* Icône hamburger par défaut */
.menu-toggle:before {
  content: '☰';
}

/* ================= corps ================== */

/* ========== intro-section =========== */

/*==================================================
  Responsive tablette et mobile
==================================================*/


    .intro-section{

        max-width: 450px;
        margin:120px auto 50px;
        padding:0 25px;

        display:block;
    }

    /* On masque la photo */

    .text-right{

        display:none;

    }

    /* Le texte occupe toute la largeur */

    .text-left{

        max-width: 400px;
        margin:0 auto;
        text-align:center;

    }

    .text-left h1{

        font-size:2rem;
        margin-bottom:20px;

    }

    .text-left h3{

        font-size:1.3rem;
        margin-bottom:30px;

    }

    /* Trait centré */

    .intro-section h3::after{

        margin:15px auto 0;

    }

    .text-left p{

        font-size:1.2rem;
        line-height:1.8;
        margin-bottom:20px;

    }

 /* =======================================================
   RESPONSIVE AGENDA
   ======================================================= */

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

/* Titres */

.agenda h3, .pays h3 {
    margin:80px 20px 40px;
    text-align:center;
    font-size:1.6rem;
}


/* Conteneur */

.tiles-container{

    grid-template-columns:1fr;
    gap:30px;

    max-width: 430px;
    padding:0 20px;
    margin:50px auto;
}


/* Toutes les tuiles */

.tile,
.tile1,
.tile2,
.tile3,
.tile4,
.tile5,
.tile6,
.tile7{

    width:100%;
    max-width: 400px;
    height:auto;

    margin:auto;

    border-radius:35px;
}


/* Image */

.tile img,
.tile1 img,
.tile2 img,
.tile3 img,
.tile4 img,
.tile5 img,
.tile6 img,
.tile7 img{

    width:150px;
    height:150px;
}


/* Texte */

.tile-text{

    padding:18px;
}


/* Dates */

.date,
.date3,
.date4,
.date5,
.date6,
.date7{

    font-size: 1.18rem;
    margin-bottom:10px;
}


/* Titres */

.title,
.title2,
.title3,
.title4,
.title5,
.title6,
.title7{

    font-size:1.25rem;
    line-height:1.3;
    margin-bottom:12px;
}


/* Sous-titres */

.subtitle,
.subtitle3,
.subtitle4,
.subtitle5,
.subtitle6,
.subtitle7{

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

}


/* =======================================================
   TELEPHONE
   ======================================================= */

@media (max-width:680px){

.tiles-container{
    padding:0 15px;
}


/* Les tuiles deviennent verticales */

.tile,
.tile1,
.tile2,
.tile3,
.tile4,
.tile5,
.tile6,
.tile7{

    flex-direction:column;
}


/* Image pleine largeur */

.tile img,
.tile1 img,
.tile2 img,
.tile3 img,
.tile4 img,
.tile5 img,
.tile6 img,
.tile7 img{

    width:100%;
    height:220px;
}


/* Texte */

.tile-text{

    text-align:center;
    padding:22px;
}


.date,
.date3,
.date4,
.date5,
.date6,
.date7{

    font-size:1.18rem;
}


.title,
.title2,
.title3,
.title4,
.title5,
.title6,
.title7{

    font-size:1.35rem;
}


.subtitle,
.subtitle3,
.subtitle4,
.subtitle5,
.subtitle6,
.subtitle7{

    font-size:1rem;
}

}


/* =======================================================
   GALERIE
   ======================================================= 

@media (max-width:980px){

.gallery{

    gap:25px;
    margin:40px 20px 120px;
}


.card{

    width:280px;
}


.card img{

    height:280px;
}

}


@media (max-width:680px){

.gallery{

    margin:30px 15px 100px;
}


.card{

    width:100%;
    max-width:340px;
}


.card img{

    height:260px;
}

}
*/

/* ====== gallerie responsive ====== */


@media (max-width:980px){

    .gallery {
        gap:30px;
        margin:30px 20px 120px;
    }

    .card {
        width:90%;
        max-width:420px;
    }

    .caption {
      font-size: 1.4rem;
      font-weight: 500;
    }

}



    .card h3{

        font-size:1.2rem;

    }

    .card img{

        height:220px;

    }

    .more{

        width:80%;
        text-align:center;

    }





/*
.caption {
  margin-top: 10px;
  font-size: 1.4rem;
}
*/



  /* ============= footer responsive ============= */
  
 @media (max-width:980px){
      .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
      }

      .footer-column {
      padding-top: 20px;
      padding-bottom: 20px;
      align-items: center;
      width: 100%;
      }

      .footer-column a {
      font-size: 1.15rem;
      }

      .social-icons {
      gap: 50px;
     
    }

      .social-icons a img {
      width: 50px;
      height: 50px;
      transition: transform 0.3s ease;
    }

      .copyright {
      font-size: 1.2rem;
      }


    }

    /* ============== responsive intro-section ============ 

   

    .intro-section{

        margin-top:120px;
        padding:0 20px;

    }

    .intro-section h1{
        font-size:2.8rem;
    }

    .intro-section h3{
        font-size: 2rem;
    }

    .intro-section p{
        font-size:1.5rem;

    }
*/


