@charset "UTF-8";

/*google font*/
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Unlock&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
/*remise à zéro*/
* {
    font-family: "Arial", serif;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    border: 0px;
    color: #000000;
}

/*reinitialise la valeur du retour*/
br{
    display: block;
    height: 0;
}

html {
  scroll-behavior: smooth;
}

/*------------------structure du html-----------------------*/

header {
    padding: 0px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

main {
    background-color: #444444;
    padding-top: 0px;
}

footer {
    background-color: #333;
    text-align: center;
    padding: 20px;
}

section {
   padding-bottom: 70px;
}

.contenu {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  max-width: 960px;
  margin: auto;
}


/* Chaque étage (rangee) */
.rangee {
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}


/* Style des boîtes */
.boite {
    background-color: transparent;
    padding: 10px;
    flex: 1;
    text-align: center;
}

.boite p {
  display: flex;
  align-items: center; /* この中で縦中央寄せ */
}

/* Colonne asymétrique */
.large {
  flex: 1; /* 2 parts de largeur */
}

.petite {
  flex: 1; /* 1 part de largeur */
}

.black {
background-color: #333;
}

.grey {
background-color: #444444;
}

.fond {
background-image: url('images/fond.jpg');
background-size: cover;
background-position: center;
width: 100%;
height: 100%;
display: flex; /* ✅ ロゴを中央に配置するために追加 */
align-items: center;
}

.equipe h3 {
  font-family: 'Satisfy', cursive;
  font-size: 2rem; /* お好みで調整 */
  color: #ffff;
  margin-top: 1.5rem;
}

/*--------------------menu navigation------------------------*/
nav {
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒背景 */
  text-align: center;
}


nav ul {
    padding: 0px;
    list-style: none;
}

/*espacement dans le menu de navigation*/
nav li {
    display: inline-block;
    margin:0px 30px 0px 30px;
}


/*items dans le menu de navigation*/
nav a {
    display: inline-block;
    padding: 20px 20px 20px 20px;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
}

/*survol des items dans le menu de navigation*/
nav a:hover {
  color: #DAA520;
  text-shadow:
    0 0 5px #333,
    0 0 10px #DAA520,
    0 0 10px #DAA520;
}




/*------------------ajustements typographiques-------------------*/

h1 {
    font-family: "Unlock", serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 27px;
    text-align: center;
    color:  #DAA520;
    margin-bottom: 10px;
    margin-top: 100px;
}

h2 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    color: #DAA520;
    margin-bottom: 50px;
    margin-top: 30px;
}


h3 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    text-align: center;
    color: #ffff;
    margin-top: 20px;
}

p {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    letter-spacing: 0.1em;
    text-align: left;
    color: #ffff;
    padding-left: 20px;

}


small {
    font-family: sans-serif;
    display: block;
    font-weight: 200;
    text-align: center;
    color: #ffff;
}

hr  {
background-color: #DAA520;
border: none;
height: 2px;
width: 100%;       /* 長さを50%に */
margin: 15px auto; /* 中央揃え */

}

/*------------------class effet-------------------*/


img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(1.1) grayscale(10%) contrast(90%) opacity(0.95);

}


.boite img {
  transition: transform 0.3s ease; /* スムーズな変化 */
}

.boite img:hover {
  transform: scale(1.1); /* 1.05倍に少し拡大 */
}


.top-image  {
background-image: url('images/top-image.jpg');
background-size: cover;
background-position: center;
width: auto;
height: 400px;
display: flex; /* ✅ ロゴを中央に配置するために追加 */
align-items: center;
padding-left: 40px;
}

.logo {
  width: 50%; /* ここでサイズを調整、例えば100px〜200pxなど */
  height: auto; /* アスペクト比（縦横比）を維持したまま縮小 */
  padding-top: 50px;
}

.logo-wrapper{
  width: 50%; /* ここでサイズを調整、例えば100px〜200pxなど */
  height: auto; /* アスペクト比（縦横比）を維持したまま縮小 */
  padding-top: 50px;
}

.equipe-photo {
    border-radius: 200px;
    height: 250px;
    width: 250px;
}


/*------------------Contact-------------------*/

li p {
  font-size: 18px;
  line-height: 22px;
}

ul.contact-list {
  list-style: none;
  display: inline-block;
}

ul.contact-list li {
  position: relative;
  padding-left: 30px;  /* アイコン分のスペース */
  margin-bottom: 20px;
  margin-top: 10px;
}

.horaire {
  list-style: none;
  display: inline-block;
  margin-bottom: 0px;
  margin-top: 10px;
}

.horaire li {
  margin-bottom: 20px; /* お好みで8〜20pxくらい調整できます */
}


ul.coordonees li:nth-child(1)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url('images/icons-call.png'); /* 電話アイコン */
  background-size: contain;
  background-repeat: no-repeat;
}

ul.coordonees li:nth-child(2)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url('images/icons-mail.png'); /* メールアイコン */
  background-size: contain;
  background-repeat: no-repeat;
}

ul.coordonees li:nth-child(3)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('images/icons-google-maps.png'); /* 地図アイコン */
  background-size: contain;
  background-repeat: no-repeat;
}


ul.sns li:nth-child(1)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('images/icons-facebook.png'); /* facebook */
  background-size: contain;
  background-repeat: no-repeat;
}

ul.sns li:nth-child(2)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('images/icons-instagram.png'); /* Instagram */
  background-size: contain;
  background-repeat: no-repeat;
}

ul.sns li:nth-child(3)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('images/icons-tiktok.png'); /* Tiktok */
  background-size: contain;
  background-repeat: no-repeat;
}

.link-hover-yellow:hover {
  background-color: transparent;
  color: #DAA520;
  text-shadow:
    0 0 5px #333,
    0 0 10px #DAA520,
    0 0 10px #DAA520;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.cta {
  width: 200px;
}

/*------------------back to top-------------------*/

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #DAA520;
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
}

.back-to-top:hover {
  opacity: 1;
  transform: scale(1.1);
}

.back-to-top {
  display: none;
}







