@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p, li {
  line-height: 1.3rem;
  letter-spacing: 0.02rem;
}

ul span {
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

a {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
  color: inherit;
}

.link, .index a {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  color: var(--color-text);
}
.link::before, .index a::before {
  content: "";
}
.link::before, .link::after, .index a::before, .index a::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link--metis::before, .index a::before {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.link--metis:hover::before, .index a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

/**/
a.primary_btn,
.primary_btn {
  cursor: pointer;
  margin: 16px 0px;
  width: fit-content;
  padding: 12px 24px;
  border: 1px solid;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  color: black;
  background-color: white;
}
a.primary_btn:hover,
.primary_btn:hover {
  background-color: black;
  transition: 0.8s;
  color: white;
  border: 1px solid black;
}

footer button {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 16px 0px;
  padding: 12px 24px;
  border: 1px solid white;
  border-radius: 30px;
  font-size: 16px;
  color: white;
  background-color: black;
}
footer button:hover {
  background-color: white;
  transition: 0.8s;
  color: black;
  border: 1px solid black;
}

span.logo {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
span.logo i {
  position: absolute;
}

header {
  position: fixed;
  top: 0;
  background-color: rgb(12, 12, 12);
  width: 100%;
  z-index: 5;
}
header nav {
  height: 50px;
  justify-content: center;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}

main {
  padding-top: 50px;
}

h1 {
  font-family: "Inter", sans-serif;
  font-size: 160px;
  text-transform: uppercase;
  font-weight: 500;
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

body,
p,
span,
button {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}

body {
  background-color: rgb(12, 12, 12);
  color: white;
}

main.home {
  margin-bottom: 80px;
}

footer {
  background-color: black;
  color: white;
}
footer h2 {
  font-size: 60px;
}
footer .container {
  justify-content: center;
  height: 300px;
}
footer .footer_rs,
footer .footer_legals {
  display: flex;
  justify-content: space-between;
}
footer .footer_rs ul,
footer .footer_legals ul {
  display: flex;
  justify-content: row;
}
footer .footer_rs ul li,
footer .footer_legals ul li {
  padding-right: 16px;
}
footer .footer_rs ul li:last-child,
footer .footer_legals ul li:last-child {
  padding-right: 0px;
}
footer .footer_rs ul li.footer-list,
footer .footer_legals ul li.footer-list {
  padding-right: 0px;
}
footer .footer_rs {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgb(80, 80, 80);
  border-bottom: 1px solid rgb(80, 80, 80);
  padding: 14px 0px;
}
footer .footer_legals {
  padding: 14px 0px;
}

.grid_main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wrapper {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 1500px;
  margin: 0 auto;
}

/*ITEM GALERY*/
.grid_item {
  height: 500px;
  border: 1px solid rgb(43, 41, 41);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background-color 0.8s, color 0.8s;
  padding: 24px;
}
.grid_item .title {
  text-transform: uppercase;
  font-weight: 600;
}
.grid_item:hover {
  background-color: rgb(32, 32, 32);
  color: white;
}
.grid_item:hover .thumbnail img.img1 {
  opacity: 0;
}
.grid_item:hover .thumbnail img.img2 {
  opacity: 1;
}
.grid_item .thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 16px 0px;
}
.grid_item .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.8s;
}
.grid_item .thumbnail .img2 {
  opacity: 0;
}
.grid_item .subtext {
  display: flex;
  font-size: 14px;
  text-transform: uppercase;
  justify-content: flex-end;
}

.index h1 {
  margin-bottom: 40px;
}
.index h2 {
  margin-bottom: 32px;
}
.index p {
  margin: 24px 0px;
}

@media screen and (max-width: 1160px) {
  .index h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 820px) {
  .index h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 426px) {
  .index h1 {
    font-size: 30px;
  }
  .index h2 {
    font-size: 25px;
    line-height: 1.2em;
  }
}
h1 {
  font-family: "Inter", sans-serif;
  font-size: 160px;
  text-transform: uppercase;
  font-weight: 500;
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

body,
p,
span,
button {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}

body {
  background-color: rgb(12, 12, 12);
  color: white;
}

section.landing .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  max-width: 100%;
}

.skill_container {
  overflow: hidden;
  background-color: black;
  margin: 80px 0px;
}
.skill_container .skill_list {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  height: 100px;
}
.skill_container .list {
  display: flex;
  white-space: nowrap;
  animation: loop 35s linear infinite;
}
.skill_container .item-txt {
  font-size: 60px;
  font-weight: 500;
  color: white;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skill_container .item-d {
  display: inline;
}
.skill_container .item-dot {
  max-width: 20px;
  max-height: 20px;
  margin: 0 50px;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  transform: translate(-50%, -50%);
}
.skill_container .dot {
  background-color: white;
}
@keyframes loop {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.accordion .accordion-item {
  margin-bottom: 10px;
}
.accordion .accordion-item h2 {
  margin-bottom: 16px;
}
.accordion .accordion-item h3 {
  font-size: 18px;
}
.accordion .accordion-item .accordion-header {
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid rgb(80, 80, 80);
  outline: none;
  color: white;
  background-color: initial;
  transition: background-color 0.3s ease;
}
.accordion .accordion-item .accordion-header p {
  font-size: initial;
  font-size: 14px;
}
.accordion .accordion-item .accordion-header div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
}
.accordion .accordion-item .accordion-header:hover {
  background-color: #1a1919;
}
.accordion .accordion-item .accordion-header .accordion-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.accordion .accordion-item .accordion-content {
  max-height: 0;
  padding: 0px 16px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion .accordion-item .accordion-content li {
  list-style-type: disc;
  margin-left: 16px;
}
.accordion .accordion-item .accordion-content ul > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.accordion .accordion-item .accordion-content ul > ul li {
  margin-left: 0px;
  list-style-type: none;
  padding: 10px;
  border-radius: 8px;
  background-color: rgb(43, 41, 41);
}
.accordion .accordion-item .accordion-content p,
.accordion .accordion-item .accordion-content ul {
  margin: 16px 0;
}
.accordion .accordion-item.active .accordion-content {
  max-height: 100%;
}

.anim_container {
  text-align: center;
  overflow: hidden;
  height: 280px;
}

.animated_text,
.animated_text2 {
  display: inline-flex;
}

.animated_text span {
  font-weight: bold;
  font-family: "Inter", sans-serif;
  font-size: 200px;
  text-transform: uppercase;
  transform: translateY(100px);
  opacity: 0;
  animation: riseUp 0.6s forwards;
}

.animated_text2 span {
  transform: translateY(100px);
  opacity: 0;
  animation: riseUp 0.3s forwards;
}

.animated_text span:nth-child(1) {
  animation-delay: 0.1s;
}

.animated_text span:nth-child(2) {
  animation-delay: 0.2s;
}

.animated_text span:nth-child(3) {
  animation-delay: 0.3s;
}

.animated_text span:nth-child(4) {
  animation-delay: 0.4s;
}

.animated_text span:nth-child(5) {
  animation-delay: 0.5s;
}

.animated_text span:nth-child(6) {
  animation-delay: 0.6s;
}

.animated_text span:nth-child(7) {
  animation-delay: 0.7s;
}

.animated_text span:nth-child(8) {
  animation-delay: 0.8s;
}

.animated_text span:nth-child(9) {
  animation-delay: 0.9s;
}

.animated_text2 {
  display: none; /* Masquer au début */
  flex-direction: column;
  align-items: center;
}

.animated_text2 span {
  animation: riseUp 0.9s forwards; /* Animation légèrement plus longue */
}

.animated_text2 span:nth-child(1) {
  animation-delay: 0.1s;
  font-size: 30px;
}

.animated_text2 span:nth-child(2) {
  animation-delay: 0.6s;
}

/* Animation de montée */
@keyframes riseUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 2500px) {
  .container {
    max-width: 2300px !important;
  }
}
@media screen and (min-width: 1400px) {
  .home .anim_container {
    height: 250px;
  }
  .home .anim_container .animated_text span {
    font-size: 150px;
  }
  .grid_main {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  footer .container {
    justify-content: center;
    height: 380px;
  }
  .container {
    max-width: 1350px;
  }
}
@media screen and (max-width: 1024px) {
  .home .anim_container {
    height: 250px;
  }
  .home .anim_container .animated_text span {
    font-size: 150px;
  }
  .grid_main {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .grid_item {
    height: 450px;
  }
  footer .container {
    justify-content: center;
    height: 380px;
  }
  .container {
    max-width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .home .anim_container {
    height: 140px;
  }
  .home .anim_container .animated_text span {
    font-size: 80px;
  }
  .grid_item {
    height: 500px;
  }
  .grid_main {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  .container {
    max-width: 600px;
  }
  .accordion {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .container {
    height: 600px;
  }
  footer .footer_rs,
  footer .footer_legals {
    flex-direction: column;
  }
  footer .footer_rs ul,
  footer .footer_legals ul {
    flex-direction: column;
  }
  footer .footer_rs ul li,
  footer .footer_legals ul li {
    padding: 4px 0px;
  }
  footer .footer_legals {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 426px) {
  .presentation .animated_text2 h2 {
    font-size: 28px;
  }
  .presentation .animated_text2 span {
    font-size: 15px;
  }
  .grid_main {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  .home .anim_container .animated_text span {
    font-size: 60px;
  }
  .grid_item {
    height: 450px;
  }
  footer h2 {
    font-size: 50px;
  }
  .container {
    max-width: 400px;
  }
}
@media screen and (max-width: 376px) {
  .presentation .animated_text2 h2 {
    font-size: 25px;
  }
  .presentation .animated_text2 span {
    font-size: 12px;
  }
  .skill_container .item-txt {
    font-size: 50px;
  }
  .accordion .accordion-item h2 {
    font-size: 30px;
  }
  .home .anim_container .animated_text span {
    font-size: 55px;
  }
  .grid_item {
    height: 400px;
  }
  footer h2 {
    font-size: 50px;
  }
  .container {
    max-width: 300px;
  }
}
.portfolio .anim_container {
  height: 800px;
}
.portfolio .anim_container .main_img {
  overflow: hidden;
}

.main_img img,
.side_img img {
  width: 100%;
  object-fit: cover;
}

.animated_img {
  animation: riseUp 1s forwards;
}

li.full_description p {
  margin-bottom: 24px;
}

li.full_description .wp-block-list {
  list-style-type: disc;
  display: flex;
  flex-direction: column !important;
  margin-left: 16px;
}

/*liste metainfos*/
.portfolio .container_infos ul.metas_infos {
  padding: 80px 0px;
}
.portfolio .container_infos ul {
  display: flex;
  justify-content: space-between;
}
.portfolio .container_infos ul ul.infos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.portfolio .container_infos ul ul.infos li {
  margin-left: 32px;
  word-break: break-all;
}
.portfolio .container_infos ul ul.infos li.year {
  margin-left: 0px;
}
.portfolio .container_infos ul ul.infos li.year ul li {
  list-style-type: none;
  margin-left: 0px;
  word-break: break-all;
}
.portfolio .container_infos ul ul.infos li ul {
  display: flex;
  flex-direction: column;
}
.portfolio .container_infos ul ul.infos li ul li {
  list-style-type: disc;
  margin-left: 16px;
  width: 100%;
}
.portfolio .container_infos ul li.full_description {
  width: 60%;
}

.lastnav {
  max-width: none;
  background-color: black;
  border-bottom: 1px solid white;
}

.lastnav a {
  color: white;
}

.lastnavtext {
  color: white;
  height: auto;
}

.lastnavtext ul {
  display: flex;
  justify-content: space-between;
}

.lastnavtext li {
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  color: white;
  height: 150px;
  width: 100%;
}

@media screen and (min-width: 2500px) {
  .portfolio .anim_container {
    height: 1400px;
  }
}
@media screen and (max-width: 1440px) {
  .portfolio ul.infos > li {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1160px) {
  .portfolio .container_infos ul li.full_description {
    width: 45% !important;
    justify-content: left;
  }
  .portfolio ul.infos > li {
    margin-left: 24px;
  }
}
@media screen and (max-width: 820px) {
  .portfolio h1 {
    font-size: 60px;
  }
  .portfolio .anim_container {
    height: 456px !important;
  }
  .portfolio .container_infos h2,
  .portfolio .container_infos h3 {
    word-break: break-all;
  }
  .portfolio .container_infos ul {
    flex-direction: column;
  }
  .portfolio .container_infos ul ul {
    flex-direction: row;
    margin-bottom: 40px;
  }
  .portfolio .container_infos ul ul.infos > li {
    margin-left: 0px;
  }
  .portfolio .container_infos ul li ul li {
    width: 0 auto;
  }
  .portfolio .container_infos ul li.full_description {
    width: 100% !important;
    justify-content: left;
  }
}
@media screen and (max-width: 426px) {
  .portfolio h1 {
    font-size: 60px;
  }
  .portfolio .anim_container {
    height: 305px !important;
  }
  .portfolio .year {
    width: 80px;
  }
  .portfolio .container_infos ul ul, li.year {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 376px) {
  .portfolio h1 {
    font-size: 60px;
  }
  .portfolio .anim_container {
    height: 230px !important;
  }
  .portfolio .year {
    width: 80px;
  }
}
h1 {
  font-family: "Inter", sans-serif;
  font-size: 160px;
  text-transform: uppercase;
  font-weight: 500;
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

body,
p,
span,
button {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}

body {
  background-color: rgb(12, 12, 12);
  color: white;
}

/*sass --watch wp-content/themes/shapon/sass/main.scss:wp-content/themes/shapon/style.css*/

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