@media (prefers-color-scheme: dark) {
  :root {
    --dm-contrast: #FFEFC5;
    --dm-contrast-2: #f7f8f9;
    --dm-contrast-3: #f7f8f9;
    --dm-base: #b2b2be;
    --dm-base-2: #575760;
    --dm-base-3: #252127;
    --dm-accent: #D769FE;
    --dm-beige: var(--nuit);
    --contrast: var(--dm-contrast);
    --contrast-2: var(--dm-contrast-2);
    --contrast-3: var(--dm-contrast-3);
    --base: var(--dm-base);
    --base-2: var(--dm-base-2);
    --base-3: var(--dm-base-3);
    --accent: var(--dm-accent);
    --beige: var(--dm-beige);
  }
  #bt-dark-mode {
    display: none;
  }
}
body.dark-mode {
  --dm-contrast: #FFEFC5;
  --dm-contrast-2: #f7f8f9;
  --dm-contrast-3: #f7f8f9;
  --dm-base: #b2b2be;
  --dm-base-2: #575760;
  --dm-base-3: #252127;
  --dm-accent: #D769FE;
  --dm-beige: var(--nuit);
  --contrast: var(--dm-contrast);
  --contrast-2: var(--dm-contrast-2);
  --contrast-3: var(--dm-contrast-3);
  --base: var(--dm-base);
  --base-2: var(--dm-base-2);
  --base-3: var(--dm-base-3);
  --accent: var(--dm-accent);
  --beige: var(--dm-beige);
}

#mouse-star {
  position: absolute;
  width: 32px;
  height: 30px;
  z-index: 9500;
  margin: 15px 0 0 15px;
}

#trail svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#trail svg line {
  stroke: #3f51b5;
  stroke-width: 3;
}

h1.entry-title {
  text-align: center;
}

#page {
  overflow-x: hidden;
}

.page .site-main p {
  text-align: justify;
  hyphens: auto;
}

.entry-content p {
  line-height: 1.8em;
  text-align: justify;
  hyphens: auto;
}

.separateur svg {
  max-width: 100%;
}

.wp-block-pullquote {
  padding: 30px 0;
  margin: 0;
}
.wp-block-pullquote blockquote {
  color: var(--contrast);
  text-align: center;
  font-family: Cormorant;
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  line-height: 105%;
  padding: 0;
  border: none;
  margin: 0;
}
.wp-block-pullquote blockquote p {
  margin-bottom: 0px;
  line-height: 105%;
  text-align: center !important;
}
.wp-block-pullquote blockquote cite {
  font-size: 0.7em;
  color: var(--contrast-2);
}

#main.detail-is-open #overlay {
  height: 100%;
}

#overlay {
  width: 100%;
  height: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 650ms cubic-bezier(0.4, 0, 0.4, 1);
  background-color: #1F2041;
  z-index: 10000;
  opacity: 0.8;
}

.dm-invert {
  mix-blend-mode: multiply;
}
.dark-mode .dm-invert {
  filter: saturate(0);
  filter: invert(1);
  mix-blend-mode: screen;
}

#bt-dark-mode {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
}
#bt-dark-mode > div {
  position: absolute;
  cursor: pointer;
}

body.admin-bar #bt-dark-mode,
body.admin-bar .brand-logo {
  margin-top: 32px;
}

#dm-bt-on {
  display: none;
}

#dm-bt-off {
  display: block;
}

body.dark-mode #bt-dark-mode #dm-bt-on {
  display: block;
}
body.dark-mode #bt-dark-mode #dm-bt-off {
  display: none;
}

.brand-logo {
  position: absolute;
  top: 15px;
  left: 15px;
}
.dark-mode .brand-logo svg .ligne {
  stroke: var(--contrast);
}
.dark-mode .brand-logo svg .plein path {
  fill: var(--contrast);
}

figcaption {
  font-size: 0.8rem;
  opacity: 0.8;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
  margin: 0 !important;
}

.wp-social-link-instagram {
  background-color: var(--contrast) !important;
}
.wp-social-link-instagram a {
  color: var(--beige) !important;
}

.main-navigation .main-nav > ul {
  gap: 15px;
}

.menu-item {
  position: relative;
}
.menu-item::after {
  content: "";
  width: 2px;
  height: 0;
  background-color: var(--contrast);
  display: block;
  top: 0;
  right: 0;
  position: absolute;
  transition: all 250ms cubic-bezier(0.8, 0, 0.4, 1);
}
.menu-item:hover::after {
  height: 100%;
}

.current-menu-item {
  position: relative;
}
.current-menu-item::after {
  content: "";
  height: 100%;
}
.current-menu-item a::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none' viewBox='0 0 10 10'%3e%3cg id='Group'%3e%3cpath id='Star 2' fill='%231A1A1A' d='M5 0L5.86104 2.92127L8.53553 1.46447L7.07873 4.13896L10 5L7.07873 5.86104L8.53553 8.53553L5.86104 7.07873L5 10L4.13896 7.07873L1.46447 8.53553L2.92127 5.86104L0 5L2.92127 4.13896L1.46447 1.46447L4.13896 2.92127L5 0Z'/%3e%3c/g%3e%3c/svg%3e");
  position: absolute;
  bottom: 25px;
  right: 5px;
  width: 10px;
  height: 10px;
}
@media (prefers-color-scheme: dark) {
  .current-menu-item a::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none' viewBox='0 0 10 10'%3e%3cg id='Group'%3e%3cpath id='Star 2' fill='%23FFEFC5' d='M5 0L5.86104 2.92127L8.53553 1.46447L7.07873 4.13896L10 5L7.07873 5.86104L8.53553 8.53553L5.86104 7.07873L5 10L4.13896 7.07873L1.46447 8.53553L2.92127 5.86104L0 5L2.92127 4.13896L1.46447 1.46447L4.13896 2.92127L5 0Z'/%3e%3c/g%3e%3c/svg%3e");
  }
}
.dark-mode .current-menu-item a::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none' viewBox='0 0 10 10'%3e%3cg id='Group'%3e%3cpath id='Star 2' fill='%23FFEFC5' d='M5 0L5.86104 2.92127L8.53553 1.46447L7.07873 4.13896L10 5L7.07873 5.86104L8.53553 8.53553L5.86104 7.07873L5 10L4.13896 7.07873L1.46447 8.53553L2.92127 5.86104L0 5L2.92127 4.13896L1.46447 1.46447L4.13896 2.92127L5 0Z'/%3e%3c/g%3e%3c/svg%3e");
}

.main-navigation li {
  padding-top: 20px;
}

.site-logo {
  width: 0;
  height: 0;
}

.inside-header {
  padding: 0 40px;
}

.header-image.is-logo-image {
  width: auto;
  height: 120px;
  max-width: none;
}

#site-navigation {
  margin-right: auto;
}

.main-navigation.has-sticky-branding:not(.has-branding):not(.navigation-stick) .navigation-branding {
  display: block;
}

.home .site-logo {
  display: none;
}
.home .site-main {
  margin: 0;
}
.home .inside-article {
  padding: 0;
}

#animHome svg {
  width: 100%;
  height: calc(100vh - 140px);
  min-height: 550px;
}
@media screen and (max-width: 960px) {
  #animHome svg {
    width: 200%;
    translate: -25%;
  }
}

.dark-mode #anim-home-start path,
.dark-mode #anim-home-start .texte {
  fill: var(--contrast);
}
.dark-mode #anim-home-start .dash {
  stroke: var(--contrast);
}

.gb-grid-wrapper.grid-productions {
  display: flex;
  row-gap: 40px;
}
.gb-grid-wrapper.grid-productions .gb-grid-column {
  max-width: 50%;
}
@media screen and (max-width: 480px) {
  .gb-grid-wrapper.grid-productions .gb-grid-column {
    max-width: none;
  }
}

.card-production {
  padding: 0 15px;
  height: 100%;
  overflow: hidden;
}
.card-production h2 a {
  text-decoration: underline;
  text-decoration-color: rgba(246, 90, 61, 0);
  transition: all 450ms cubic-bezier(0.8, 0, 0.4, 1);
  text-decoration-style: dotted;
  text-underline-offset: 20px;
  text-decoration-thickness: 2px;
}
.card-production figure {
  overflow: hidden;
  aspect-ratio: 0.7;
}
.card-production figure img {
  transition: all 650ms cubic-bezier(0.4, 0, 0.4, 1);
}
.card-production .volet-overlay {
  position: absolute;
  top: 25%;
  left: 15px;
  opacity: 0;
  width: calc(100% - 30px);
  height: 100%;
  background-color: rgba(31, 32, 65, 0.9);
  transition: all 450ms cubic-bezier(0.8, 0, 0.4, 1);
  padding: 30px;
}
.card-production .volet-overlay * {
  color: #FFEFC5;
}
.card-production .volet-overlay img {
  filter: saturate(0);
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0;
  transition: all 450ms cubic-bezier(0.8, 0, 0.4, 1);
}
@keyframes reveal {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.card-production:hover .volet-overlay {
  opacity: 1;
  top: 0;
}
.card-production:hover .volet-overlay img {
  animation: reveal 250ms ease-in-out forwards;
  animation-delay: 300ms;
}

.single-productions .entry-header {
  padding: 4rem 0;
}
.single-productions .entry-header h1, .single-productions .entry-header h2 {
  text-align: center;
}
.single-productions .description {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media screen and (max-width: 960px) {
  .single-productions .description {
    flex-direction: column;
  }
  .single-productions .description aside {
    max-width: none;
  }
}
.single-productions .description aside {
  flex: 1 0 auto;
  max-width: 350px;
  width: 33%;
}
.single-productions .description aside .bloc-details {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  padding: 0 2rem;
  border-left: 3px solid var(--contrast);
}
.single-productions .description aside .bloc-details .label {
  font-weight: 600;
}
.single-productions .description aside .bloc-details ul {
  list-style: none;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .single-productions .description aside {
    max-width: none;
    width: 100%;
  }
  .single-productions .description aside .bloc-details {
    flex-direction: row;
    padding: 0;
    gap: 40px;
    border: none;
  }
  .single-productions .description aside .bloc-details .affiche {
    min-width: 33%;
  }
  .single-productions .description aside .bloc-details .affiche img {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .single-productions .description aside .bloc-details {
    flex-direction: column;
  }
}
.single-productions .critiques,
.single-productions .listes-critiques,
.single-productions .listes-avis {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-style: italic;
}
.single-productions .critiques h3,
.single-productions .listes-critiques h3,
.single-productions .listes-avis h3 {
  margin-bottom: 1rem;
  font-size: 3.3rem;
  line-height: 0.75em;
}
.single-productions .critiques .content p:last-child,
.single-productions .listes-critiques .content p:last-child,
.single-productions .listes-avis .content p:last-child {
  margin-bottom: 0.5rem;
}
.single-productions .critiques .author,
.single-productions .listes-critiques .author,
.single-productions .listes-avis .author {
  font-weight: 600;
  font-family: Cormorant, serif;
  font-size: 1.33rem;
  margin-bottom: 0;
}
.single-productions .critique {
  font-weight: 400;
}
.single-productions .critique p {
  position: relative;
}
.single-productions .critique span.lettrine {
  font-size: 8rem;
  font-family: Cormorant, serif;
  line-height: 0;
  display: inline-block;
  top: 0.4em;
  position: relative;
}
.single-productions .critique span.lettrine-end {
  bottom: -32px;
  font-size: 8rem;
  display: block;
  top: auto;
  position: absolute;
  height: 0;
  right: 0;
}
.single-productions .avis-single {
  max-width: 850px;
}
.single-productions .avis-single.is-right {
  margin-right: auto;
}
.single-productions .avis-single.is-left {
  margin-left: auto;
}
.single-productions .gallerie {
  margin: 3rem 0;
  height: 550px;
}
.single-productions .gallerie .credits {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 5px;
}

.bloc-details li {
  margin-bottom: 1rem;
}
.bloc-details li a.cta-equipe {
  cursor: pointer;
}

#main.detail-is-open .detail {
  top: 0;
}

.detail {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: -150vh;
  overflow: auto;
  z-index: 20000;
  transition: all 450ms cubic-bezier(0.8, 0, 0.4, 1);
}
.detail .cta_icon {
  position: absolute;
  background-color: transparent;
  top: 1rem;
  right: 0.5rem;
  color: var(--contrast);
}
.detail #posts-area {
  background-color: var(--beige);
  padding: 100px;
  height: auto;
  min-height: 100%;
}
.detail #posts-area .content {
  max-width: 960px;
  margin: auto;
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.detail #posts-area .content .image {
  max-width: 33%;
}
.detail #posts-area .content .text {
  width: 66%;
}
@media screen and (max-width: 600px) {
  .detail #posts-area .content {
    flex-direction: column;
  }
  .detail #posts-area .content .image {
    max-width: 50%;
  }
  .detail #posts-area .content .text {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .detail #posts-area {
    padding: 30px;
  }
}

.grid-artistes > div:nth-child(even) .card-equipe:hover figure img {
  rotate: 5deg;
}
.grid-artistes > div:nth-child(odd) .card-equipe:hover figure img {
  rotate: -5deg;
}
.grid-artistes .card-equipe figure {
  overflow: hidden;
}
.grid-artistes .card-equipe figure img {
  transition: all 450ms cubic-bezier(0.8, 0, 0.4, 1);
}
.grid-artistes .card-equipe:hover figure img {
  scale: 1.2;
}

.single-artistes .entry-content {
  margin: 80px 0;
  text-align: center;
}
.single-artistes .portrait img {
  max-width: 600px;
}

.frontispice {
  position: relative;
  width: 700px;
  height: 700px;
  z-index: 9000;
}
@media screen and (max-width: 760px) {
  .frontispice {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 30px;
  }
}
.frontispice > div {
  position: absolute;
  width: 100%;
}
.frontispice .center {
  left: 50%;
  transform: translateX(-50%);
}
.frontispice #fr-fond {
  z-index: -1;
}
.frontispice#front-compagnie .path svg {
  width: 109.5714285714%;
  height: auto;
}
.frontispice#front-compagnie #fr-terre {
  top: 49%;
}
.frontispice#front-compagnie #fr-terre img {
  width: 48.2857142857%;
}
.frontispice#front-compagnie #fr-coccinelle {
  top: 28%;
  z-index: 100;
}
.frontispice#front-compagnie #fr-coccinelle img {
  width: 32.2857142857%;
}
.frontispice#front-compagnie #fr-lune {
  top: 7%;
}
.frontispice#front-compagnie #fr-lune img {
  width: 18.2857142857%;
}
.frontispice#front-production .fr-mask {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 350px;
  overflow: hidden;
}
.frontispice#front-production .fr-mask > div {
  position: absolute;
  width: 100%;
}
.frontispice#front-production #fr-colombes {
  top: 75%;
  transform: scale(0.5);
}
.frontispice#front-production #fr-colombes img {
  width: 67.5714285714%;
}
.frontispice#front-production #fr-montagne-fond {
  top: 48%;
  left: 15%;
}
.frontispice#front-production #fr-montagne-fond img {
  width: 70.4285714286%;
}
.frontispice#front-production #fr-montagne-devant {
  top: 52%;
}
.frontispice#front-production #fr-montagne-devant img {
  width: 100%;
}
.frontispice#front-production #fr-village {
  top: 70%;
}
.frontispice#front-production #fr-village img {
  width: 95.8571428571%;
}

.splide__slide img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .splide__slide img {
    object-fit: contain;
  }
}

.page-hero {
  min-height: 600px;
  height: 65vh;
}
@media screen and (max-width: 960px) {
  .page-hero {
    min-height: auto;
    aspect-ratio: 16/9;
    height: auto;
  }
}

@media screen and (max-width: 960px) {
  /* CSS in here for tablet AND mobile max 960px */
  #content {
    margin: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  /* CSS in here for mobile only 768px */
  h1.entry-title {
    font-size: 70px;
  }
}
@media screen and (max-width: 480px) {
  #content {
    margin: 0 30px;
  }
  .separateur svg {
    padding: 0 30px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  /* CSS in here for tablet only */
}
@media screen and (min-width: 1025px) {
  /* CSS in here for desktop only */
}

/*# sourceMappingURL=custom.css.map */
