/* Je charge la typographie Geist Geist-VariableFont_wght.woff2 qui est dans le même dossier */
@font-face {
  font-family: "Geist";
  src: url("Geist-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}
body {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #000;
}
a,
a:visited {
  color: #000;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  color: #000;
  text-decoration: underline;
}
.site-header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-title {
  font-size: 1.25rem;
  font-weight: 550;
  margin: 0;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1236px) {
  .site-header {
    padding: 15px 30px;
    transform: translateY(0);
    transition: transform 0.3s;
  }
  .scrolling .site-header {
    transform: translateY(-100%);
  }
  .site-title {
    font-size: 2.065rem;
  }
  .main-navigation li {
    margin-left: 40px;
  }
}
.site-title a:hover {
  text-decoration: none;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-navigation a {
  font-size: 1.1rem;
  font-weight: 550;
  color: #000;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: -2px;
  height: 2px;
  background-color: #000;
  transition: width 0.3s;
}
.main-navigation a:hover {
  text-decoration: none;
  position: relative;
}
.main-navigation a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  height: 2px;
  background-color: #000;
}
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
  color: #000;
  text-decoration: none;
}
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  height: 2px;
  background-color: #000;
}
.social li a {
  display: flex;
  align-items: center;
}
.social li a:hover::after,
.social li a::after {
  display: none;
}
.social li:last-child {
  margin-left: 10px;
}
.splide {
  height: 100vh;
  overflow: hidden;
}
.post,
.page {
  margin-bottom: 0;
}
.splide__arrow {
  /* on désactive le style bouton par défaut */
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 2rem;
  padding: 0px;
  margin: 0;
  position: absolute;
  top: 50%;
  /*transform: translateY(-50%);*/
  z-index: 10;
  transition: color 0.3s;
}
@media screen and (min-width: 1236px) {
  .splide__arrow {
    padding: 10px;
  }
}
.splide__arrow:hover {
  color: #000;
}
.splide__arrow--prev {
  left: 10px;
}
.splide__arrow--next {
  right: 10px;
}
.splide__arrow svg {
  width: 1.15em;
  height: 1.5em;
}
.splide__arrow svg path {
  fill: #fff;
  transition: fill 0.3s;
}
.splide__arrow:hover svg path {
  fill: #000;
}
.splide__arrow--prev svg {
  transform: rotate(180deg);
}
.splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.splide__slide h2 {
  position: absolute;
  top: 50%;
  left: 20%;
  color: #fff;
  font-size: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  font-weight: 400;
  text-decoration: none !important;
  outline: 0 !important;
  border: 0 !important;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  font-size: 1.25rem;
  padding: 10px;
  margin: 0;
  font-weight: 550;
}
.caps-menus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 40px 60px;
  background-color: #fff;
  z-index: -1;
  transition: all 0.3s;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.caps-menus li {
  margin-bottom: 10px;
}
@media screen and (min-width: 1236px) {
  .caps-menus {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    position: relative;
    padding: 0;
    flex-direction: row;
    z-index: 0;
    overflow: visible;
  }
  .caps-menus li {
    margin-bottom: 0px;
  }
}
.toggled .caps-menus {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  overflow: auto;
}
.social {
  margin-top: 20px;
}

.social ul {
  display: flex !important;
}

@media screen and (min-width: 1236px) {
  .social {
    margin-top: 0;
    margin-left: 20px;
  }
}
.site-main {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1236px) {
  .site-main {
    padding-top: 130px;
  }
}
.home .site-main {
  padding-top: 0px;
  padding-bottom: 0px;
}
.site h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.realisations-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px;
}
@media screen and (min-width: 800px) {
  .realisations-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px;
  }
}
.realisations-container h2,
.realisations-container p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.realisations-container h2 {
  margin-top: 10px;
}
.caps-img {
  position: relative;
  overflow: hidden;
}
.caps-img img {
  width: 100%;
  height: auto;
  display: block;
  /* opacity: 1; */
  /* transition: opacity 0.35s; */
}
.realisations a:hover img {
  /* opacity: 0.8; */
  /* transform: scale(1.075); */
  /* transition: opacity 0.75s; */
}
.realisations-container a {
  text-decoration: none;
}
.page-id-16 .site-main,
.page-id-18 .site-main {
  max-width: 980px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
.page-id-16 .site-main {
  font-size: 1.1rem;
}
.single .site-main {
  max-width: 1230px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
.wp-block-image {
  margin-bottom: 45px;
}
b,
strong {
  font-weight: 600;
}
h2 {
  font-weight: 550;
}
.page-id-18 .site-main a {
  text-decoration: underline;
}
.communications-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px;
}
.communications-container h2,
.communications-container p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
.communications-container h2 {
  margin-top: 30px;
  font-weight: 600;
}
.communications-container a {
  text-decoration: none;
}
.communications-container img {
  width: 100%;
  height: auto;
  display: block;
  /* opacity: 1; */
  /* transition: opacity 0.35s; */
}
.communications-container a:hover img {
  /* opacity: 0.8; */
  /* transform: scale(1.075); */
  /* transition: opacity 0.75s; */
}
.communications-container .caps-img {
  border: 1px solid #000;
}
.communication {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.communication a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1236px) {
  .caps-caps-img {
    aspect-ratio: 1 / 1.65;
    max-width: 100%;
  }
}
.single-communication .site-main {
  max-width: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row > div {
  padding: 0 15px;
  flex: 0 0 100%;
  margin-bottom: 50px;
}
@media screen and (min-width: 800px) {
  .row > div {
    flex: 0 0 auto;
    max-width: 50%;
    margin-bottom: 0;
  }
}
.single-communication h1 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: static;
  width: auto;
  height: auto;
}
.single-communication .entry-content {
  margin-top: 0;
}
.single-communication .entry-content p:first-child {
  margin-top: 0;
  margin-bottom: 0;
}

.single-communication .entry-content {
  font-size: 1.2rem;
}
.sous-titre-lieu,
.sous-titre-programme {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}
.sous-titre-programme span {
  font-weight: 400;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-0 {
  margin-top: 0;
}
