@font-face {
  font-family: "Roboto Thin";
  src: url('../fonts/Roboto-Thin.ttf') format('truetype'),
}
@font-face {
  font-family: "Roboto";
  src: url('../fonts/Roboto-Medium.ttf') format('truetype'),
}
@font-face {
  font-family: "HankenGrotesk";
  src: url('../fonts/HankenGrotesk.ttf') format('truetype'),
}

* {
  scroll-margin-top: 75px;
}

:root  {
  --bk-primary:  #430A5D;
  --bk-secondary: rgb(233, 229, 229);
}

ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Thin";
  font-size: 1.2rem;
  color: rgb(80, 102, 144);
}

.container {
  max-width: 1200px;
  margin: auto;
  
}

h3 {
  text-align: center;
  font-family: 'Roboto Thin';
  font-size: 1.4rem;
  width: 100%;
  color: var(--bk-primary);
  text-decoration: underline;
}

section {
  margin-top: 2vh;
  margin-bottom: 2vh;
}

.pointer {cursor: pointer;}

/* Header======================================================== */
#header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: 'Roboto Thin';
  font-weight: bold;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  padding: 10px 0;
  position: fixed;
  max-width: 1200px;
  width: 100%;
  background: white;
  top: 0;
  z-index: 1;
}

#header ul { padding-top: 15px;}
#header nav ul li {
  float: left;
  margin-right: 20px;
  cursor: pointer;
  /* color: var(--bk-primary); */
}
#header .menu-item:after {
  display: block;
  content: '';
  margin: auto;
  width: 0;
  height: 2px;
  background-color: var(--bk-primary);
  transition: width 0.3s;
}
#header .menu-item:hover:after { width: 100%; }
#header .menu-item:hover { color: var(--bk-primary) }

select#langue:focus-visible {
  outline: none;
}

select#langue {
  border: solid var(--bk-primary) 1px;
  background: white;
  height: 40px;
  width: 51px;
  position: relative;
  bottom: 10px;
  border: none;
  font-size: 1.2rem;
  /* color: var(--bk-primary); */
}
#menu-burger { display: none; }
/* A Propos =====================================================*/
section#about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 80px;
}

.caroussel {
  width: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: var(--bk-primary);
}

#caroussel-img {
  position: relative;
  width: 460px;
  height: 613px;
  display: flex;
  transition: transform 0.5s ease-in-out

}

.caroussel-container { overflow: hidden;}

.caroussel #caroussel-prev.disabled, .caroussel #caroussel-next.disabled {
  opacity: 0.2;
  cursor: none;
}


.description {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.description h3 {
  font-size: 4rem;
  color: var(--bk-primary);
  margin: 0;
  text-decoration: none;
}

.description p {
  font-size: 2rem;
  font-family: 'Roboto Thin';
}

.author {
  font-size: 1.2rem;
  font-style: italic;
  display: inline-block;
  width: 100%;
  text-align: right;
}
/* Services ========================================================= */
section#services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.service-item {
  padding: 10px 20px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.service-item:last-child { flex-grow: 0;}

/* Maps ============================================================= */
#localisation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

}
#map-container {
  height: 65vh;
  width: 50%;
}

#map-links {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.btn {
  border: solid 1px gray;
  width: 200px;
  margin: 0.5rem auto;
  background: var(--bk-primary);
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
}

.qr { margin-bottom: 1rem;}
/* Nous Concater =====================================================*/
#contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
  background-color: var(--bk-primary);
  color: var(--bk-secondary);
  font-weight: bold;
  padding-bottom: .5rem;
}
#contact h3 { color: var(--bk-secondary) }
#contact h4 { font-weight: bold;}
.contact-item {
  text-align: center;
  width: 250px;
  padding-bottom: 10px;
}
#contact a {
  text-decoration: none;
  color: white;
}
#contact a:hover { text-decoration: underline;}
section h4 {
  margin: 0.5rem 0;
  font-weight: normal;
  text-decoration: underline;
}
/*Footer ==========================================================*/
 footer {
  font-size: 0.8rem;
  font-weight: 100;
  text-align: center;
  font-weight: bold;
}