/*** POST-CARDS DES PROJETS ***/
/* Général */
.grille-projets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px;
  overflow: visible;
}
/* Filtres */
.filtres {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* Post-cards */
.carte-projet {
  cursor: pointer;
  animation: apparition 0.5s ease both;
  transition: filter 0.5s ease, opacity 0.5s ease;
  will-change: filter, opacity;
}
.carte-projet.masquee {
  display: none;
}
@keyframes apparition {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.carte-projet--meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: space-between;
  margin: 0px;
  color: var(--color-white);
  gap: 24px;
}
.carte-projet:hover .carte-projet--meta {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
.carte-projet.estompe {
  filter: blur(8px);
  opacity: 0.4;
}


/*** AUCUN RÉSULTAT ***/
.aucun-resultat {
  display: none;
  grid-column: 1 / -1;
  padding: 80px 0;
  text-align: center;
  color: var(--gris-texte);
  background: var(--noir);
}
.aucun-resultat p:first-child {
  font-family: var(--police-titre);
  font-size: 48px;
  color: var(--gris-moyen);
  margin-bottom: 12px;
}



/*** MARQUEE ***/
.track {
  overflow: hidden;
  padding: 24px 0px;
  background-color: var(--color-yellow);
  z-index: 1;
}
.items {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  align-items: center;
  animation: scroll 120s linear infinite;
}
.marquee--square {
  display: inline-block;
  height: 20px;
  width: 20px;
  background-color: var(--color-black);
}

@keyframes scroll {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%);}
}



/*** TB PAGES PROJETS ***/
/*TB de tous les projets */
.tb-image-bg--maisonlua {
    background-image:url("../assets/img/maisonlua/jlzstudio-maisonlua-webdesign-tb.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    margin-top: 48px;
}
.tb-image-bg--cqlp {
    background-image:url("../assets/img/cqlp/jlzstudio-cqlp-da-tb.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    margin-top: 48px;
}
.tb-image-bg--innatura {
    background-image:url("../assets/img/innatura/jlzstudio-innatura-webdesign-tb.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    margin-top: 48px;
}
.tb-image-bg--kickstarter {
    background-image:url("../assets/img/kickstarter/jlzstudio-kickstarter-webdesign-tb.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    margin-top: 48px;
}
.tb-image-bg--printemps {
    background-image:url("../assets/img/printemps/jlzstudio-printemps-motion-tb.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    margin-top: 48px;
}
.tb-image-bg--edgarallanpoe {
    background-image:url("../assets/img/edgarallanpoe/jlzstudio-edgarallanpoe-edition-tb.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    margin-top: 48px;
}
.tb-image-bg--macadam {
    background-image:url("../assets/img/macadam/jlzstudio-macadam-webdesign-tb.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    margin-top: 48px;
}
.tb-image-bg--vinyle {
    background-image:url("../assets/img/vinyle/jlzstudio-vinyle-da-tb.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    margin-top: 48px;
}

.tb-project--content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}


/* Mise en page des TB */
.tb-project--bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin-top: 80px;
}
.tb-project--bottom.desktop > img {
  max-height: 20px;
  width: auto;
}
.project--logiciels {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.project--logiciels > img {
  width: auto;
}
.project--infos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 110px;
}
.tb-project--bottom.mobile {
  display: none;
}



/*** PAGES PROJETS ***/
.citation-top > p:first-child {
  margin-bottom:  160px;
  width: 80%;
}
.citation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  padding-right: 24px;
}
.visual-50 {
  padding-left: 24px;
}
.citation-bottom > p:last-child {
  width: 86%;
}
#kickstarter {
  border: 1px solid var(--color-white);
}
.visual-left {
  padding-right: 8px;
}
.visual-right {
  padding-left: 20px;
}
.mobile {
  display: none;
}


/* MOTION - PRINTEMPS */
#marguerite, #abeille, #poire, #pomme, #trefle, #soleil, #fraise, #poussin, #arrosoir, .objectif {
  padding: 4px 6px;
}
.objectif {
  display: flex;
  flex-direction: column;
  justify-content: end;
}


/* EDGAR ALLAN POE */
.padding-left-edgarallanpoe {
  padding-left: 8px;
}
.padding-right-edgarallanpoe {
  padding-right: 16px;
}

/* IN NATURA */
#innatura-charte, #innatura-home, #innatura-programmation-off {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
#home-mobile {
  display: none;
}

/* CQLP */
#cqlp-ancien {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: end;
}
#oeuf {
  margin-top: -160px;
}
#miel {
  margin-top: 80px;
}
#plv {
  margin-top: -240px;
}

/* Vinyle */
.charte, .pochette3 { padding-right: 8px; }
.tourne-disque { align-self: end; padding-left: 8px; }
.livret { padding-left: 8px; }

/* MAISON LUA */
.scenario--titre h2 {
  width: 80%;
  margin-bottom: 24px;
}
.scenario--titre > p:last-child {
  margin-bottom: 24px;
}
.scenario--description {
  padding-left: 80px;
}
.scenario--cta {
  padding-left: 160px;
  margin-top: 40px;
}
/* Concurrence */
.concurrence {
  display: flex;
  gap: 16px;
  margin-bottom: 110px;
}
.concurrence--item {
  border-left: 1px solid var(--color-yellow);
  padding-left: 24px;
  padding-right: 24px;
}
/* Positionnement */
.positionnement--titre p {
  width: 72%;
}
.positionnement--description {
  align-self: end;
}
/* Problèmes */
.titres { display: flex; justify-content: space-between; }
.problemes {
  background-color: var(--color-onyx);
  padding: 40px;
}
.probleme--item, .item--content {
  display: flex;
  align-items: center;
}
.probleme--item { gap: 40px; border-bottom: 1px solid var(--color-white); }
.item--content { flex-grow: 1; justify-content: space-between; gap: 40px; }
.citation.jaune {
  background-color: var(--color-yellow);
  padding-left: 24px;
  padding-right: 24px;
}
/* Ciblage */
.persona {
  padding-left: 110px;
}
/* Wireframes */
.arborescence {
  background-color: var(--color-onyx);
  padding: 80px 0px;
}
.arborescence--text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Web Design */
.charte--mobile { display: none; }
.charte--cta { text-align: center; }
.visuals--top {
  z-index: 1;
}
.visuals--bottom {
  margin-top: -160px;
  z-index: 0;
}
.visuals--bottom > video {
  width: 100%;
  height: auto;
  margin-top: 16px;
}
.visuals--mobile {
  display: none;
}