/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
html {
  margin: 0 !important;
}

body {
  font-family: "Cormorant", Sans-serif;
  color: #fff;
}

body > [data-elementor-type=wp-page],
body > [data-elementor-type=error-404] {
  padding-top: 0 !important;
  margin-top: 80px;
}

/* On force le body et le conteneur principal à occuper 100% de la hauteur */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* 100% de la hauteur du viewport */
}

@media screen and (min-width: 767px) {
  .nodes {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nomob {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .notab {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .nodesT {
    display: none;
  }
}

/* Le conteneur du contenu (ajustez la classe selon votre thème, ex: .site-content ou .elementor) */
#content,
body > [data-elementor-type=wp-page],
body > [data-elementor-type=error-404] {
  flex: 1;
  /* C'est lui qui prend l'espace vide */
}

/* Espace pour la barre d'admin sur Desktop (32px) */
body.admin-bar {
  margin-top: 32px;
  min-height: calc(100vh - 32px);
  /* Pousse tout le site vers le bas */
}
body.admin-bar header {
  top: 32px;
}
@media (max-width: 767px) {
  body.admin-bar header {
    top: 46px;
  }
}
/* Espace pour la barre d'admin sur Mobile (46px) */
@media screen and (max-width: 767px) {
  body.admin-bar {
    margin-top: 46px;
    min-height: calc(100vh - 46px);
  }
}
@media (max-width: 1024px) {
  header .elementor-nav-menu .elementor-item {
    font-size: inherit !important;
  }
}
.no_p_padding p {
  margin-block-end: 0;
  margin-block-start: 0;
}

#content a:not(.elementor-button):hover,
body > [data-elementor-type=wp-page] a:not(.elementor-button):hover,
body > [data-elementor-type=error-404] a:not(.elementor-button):hover,
footer a:not(.elementor-button):hover {
  text-decoration: underline;
}

#content,
body > [data-elementor-type=wp-page],
body > [data-elementor-type=error-404] {
  margin-top: 80px;
}
@media (max-width: 767px) {
  #content,
  body > [data-elementor-type=wp-page],
  body > [data-elementor-type=error-404] {
    margin-top: 56px;
  }
}

header {
  top: 0;
  position: fixed !important;
  z-index: 999;
  width: 100%;
  background: transparent;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #000;
  z-index: -1;
  pointer-events: none;
}
header::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 100px;
  /*
  background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.75) 0%,
          rgba(0, 0, 0, 0.4) 25%,
          rgba(0, 0, 0, 0.1) 60%,
          transparent 100%);
          */
  pointer-events: none;
  z-index: -1;
}
header h1 a {
  padding: 27px 35px !important;
  display: inline-block;
}
@media (max-width: 1024px) {
  header h1 a {
    padding: 27px 25px !important;
  }
}
@media (max-width: 767px) {
  header h1 a {
    padding: 15px 20px !important;
  }
}
header ul li.menu-item {
  padding: 0 !important;
}
header ul li.menu-item a {
  padding: 10px 20px !important;
}
@media (max-width: 1024px) {
  header ul li.menu-item a {
    padding: 10px 10px !important;
  }
}
header .col_3 {
  white-space: nowrap;
  /* Force le contenu sur une seule ligne */
}
header ul.elementor-nav-menu--dropdown a,
header ul.elementor-nav-menu--dropdown a:focus,
header ul.elementor-nav-menu--dropdown a:hover {
  border-inline-start: 0px solid transparent;
  text-shadow: none;
}

body > footer.elementor {
  /* Rectangle 1 */
}
@media screen and (max-width: 767px) {
  body > footer.elementor .cont .icos .elementor-element {
    --icon-size: 23px !important;
  }
}

/*# sourceMappingURL=new-styles.css.map */
