@import url(../public/fonts/Brittany/brittany.css);
@import url(../public/fonts/Martel/martel.css);
/* @import url(../public/fonts/Luciole/luciole.css); */
:root{
  --background: #a48270;
  --dark-brown: #57443a;
  --mid-brown : #765b4d;
  --midder-brown : #7d6254;
  --light-brown : #a48270;
  --stroke-color: #ffeccf;
}
.animate-on-scroll-left {
  opacity: 0;
  transform: translateX(-100vw);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-on-scroll-right {
  opacity: 0;
  transform: translateX(100vw);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.stroke{
  stroke: var(--stroke-color);
}
.parallax-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: normal;
}
.parallax-section * {
  position: relative;
  z-index: 1;
}
.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
html{
  scroll-behavior: smooth;
}
h2{
  display: flex;
  flex-direction: column;
}
body{
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background: rgba(0, 0, 0, 0.8)
}
ul{
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  list-style: '✦';
}
span{
  padding: 0;
}
ul li{
  padding-left: 0.5rem;
  font-family: 'Luciole', sans-serif;
}
main{
  display: flex;
  flex-direction: column;
}
nav{
  position: fixed;
  flex-direction: column;
  z-index: 10;
  transform: translateX(100vw);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding-bottom: 2rem;
}
nav.active{
  opacity: 1;
  transform: translateX(0);
}
nav ul{
  display: flex;
  row-gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul a{
  width: 100%;
  text-decoration: none;
}
nav ul li{
  padding: 0;
  font-size: 1.5rem;
  transition: font-size 0.3s ease;
  text-align: center;
}
nav ul li:hover{
  font-size: 2rem;
}

.main-nav{
  height: 80%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-nav li{
  width: 100%;
}

.lang-list{
  flex-direction: row;
  column-gap: 2rem;
  align-items: center;
  justify-self: center;
}

.lang-list li img{
  height: 3rem;
  aspect-ratio: auto;
  border-radius: .5rem;
}

#nav-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
  width: 2rem;
  position: fixed;
  top: 5vh;
  right: 3vw;
  cursor: pointer;
  overflow: hidden;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 1rem;
}
.burger-bar {
  position: relative;
  right: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, right 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}
#nav-icon:hover:not(.active) #nav-icon-first {
  width: 50%;
  right: -50%;
}
#nav-icon:hover:not(.active) #nav-icon-third {
  width: 75%;
  right: -25%;
}
#nav-icon.active {
  width: 3rem;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#nav-icon.active:hover{
  transform: scale(1);
}
#nav-icon.active #nav-icon-first {
  transform: rotate(45deg) translateY(200%) translateX(15%);
}
#nav-icon.active #nav-icon-second {
  opacity: 0;
  transform: translateX(2rem);
}
#nav-icon.active #nav-icon-third {
  transform: rotate(-45deg)  translateY(-200%) translateX(13%);
}
nav{
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
}
section div.background{
  background: var(--background);
}
div.background{
  position: absolute;
  z-index: -1;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
}
section{
  display: flex;
  position: relative;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem 0;
}
.circle{
  position: absolute;
  border-radius: 100%;
  background: var(--mid-brown);
}
.blob{
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}
div.card-container{
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}
div.card *{
  color: #333;
}
div.card{
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow:
  0 4px 6px rgba(0, 0, 0, 0.1),
  0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
a{
  color: var(--light-brown);
}
.card:hover {
  box-shadow:
  0 8px 20px rgba(0, 0, 0, 0.15), 
  0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1.2) translateY(-4px);
}
.card-header{
  display: flex;
  justify-content: center;
  border-radius: 0.5rem;
  position: relative;
}
.card-header img{
  height: 3rem;
  margin: 1rem;
}
.card-body{
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-body h3{
  display: flex;
  flex-direction: column;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Martel', sans-serif;
}
.card-body h3 p{
  font-family: 'Martel', sans-serif;
  font-size: 1.5rem;
  color: var(--dark-brown);
}
.card-body p{
  color: #333;
  font-size: 1rem;
}
.card-content{
  text-align: center;
  padding: 0 0.5rem;
}
.mobile-container{
  display: flex;
  width: 33%;
  justify-content: center;
  align-items: center;
}
.mobile{
  height: 90vh;
  border-radius: 1rem;
  border: 0.3rem solid white;
  background-color: #000;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.mobile img{
  height: 100%;
  border-radius: 0.7rem;
  border: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.mobile-container .mobile:hover img{
  cursor: pointer;
  opacity: 0.3;
}
.mobile-container .mobile:hover{
  transform: scale(1.05);
}
.desktop-container{
  display: flex;
  width: 50%;
  justify-content: center;
  align-items: center;
}
.desktop{
  width: 90%;
  border-radius: 1rem;
  border: 0.3rem solid white;
  }
.underline{
  border-bottom: 0.5rem solid #fff;
  padding-bottom: 1.5rem;
}
.underline.thin{
  border-width: 0.3rem;
}
.clickable{
  cursor: pointer;
}
.clickable *{
  pointer-events: none;
}
.painting-container{
  display: flex;
  width: 100%;
  justify-content: space-around;
  row-gap: 3rem;
}
.painting img{
  width: 100%;
}
.painting-container:nth-of-type(2n){
  align-self: flex-start;
  flex-direction: row;
}
.painting-container:nth-of-type(2n + 1){
  align-self: flex-end;
  flex-direction: row-reverse;
}
div.painting{
  width: 30%;
  background: var(--dark-brown);
  padding: 0.5rem;
  border-radius: 1rem;
}
.painting img{
  border-radius: 0.5rem;
}
.painting-body.text-container{
  flex-direction: column;
  color: #fff;
  font-size: 1.2rem;
  row-gap: 0.5rem;
  width: 40%;
  justify-content: center;
}
.post-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 6rem;
  row-gap: 3rem;
  max-width: calc(15vw * 3 + 12rem);
  justify-content: space-around;
}
.post{
  position: relative;
  display: flex;
  align-items: center;
  height: calc(15vw * 1.25);
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  opacity: 1;
  background-color: #000;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.post:hover{
  transform: scale(1.1);
}
.post:hover img{
  opacity: 0.2;
}
.post img{
  width: 15vw;
  transition: opacity 0.2s ease;
}
.book{
  display: flex;
  flex-direction: row;
  width: 75%;
}
.book .left, .book .right{
  width: 45%;
  aspect-ratio: 0.7;
  position: relative;
}
.book .left{
  left: 0;
}
.book .right{
  right: 0;
}
.book .left .page{
  z-index: 1;
  transform-origin: right;
  transform: rotateY(180deg);
}
.book-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3rem;
}

.book .right img:first-child.active {
  animation: blink 6s ease infinite;
  animation-delay: 5s;
}
.text-container ul{
  display: flex;
  color: #fff;
  flex-direction: column;
  row-gap: 0.5rem;
}
.book-body.text-container{
  flex-direction: column;
  color: #fff;
  font-size: 1.2rem;
  row-gap: 0.5rem;
}
.page{
  visibility: hidden;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  cursor: pointer;
  transition: transform 1s ease;
}
.right .page{
  transform-origin: left;
}
.left .page{
  transform-origin: right;
  transform: rotateY(180deg);
}
.page.active{
  visibility:visible;
  z-index: 2;
}
.right .page.flipped{
  z-index: 3;
  transform: rotateY(-180deg);
  pointer-events: none;
}
.right .page.reverse{
  z-index: 4;
  pointer-events: none;
}
.left .page.flipped{
  z-index: 3;
  transform: rotateY(0deg);
}
.left .page.reverse{
  z-index: 4;
  pointer-events: none;
}
.left .page:not(.left .page:last-child){
  border-right:1px solid var(--light-brown);
}
.right .page:not(.right .page:first-child){
  border-left:1px solid var(--light-brown);
}
.strong{
  font-weight: bold;
}
.flyer{
  position: relative;
  width: 25vw;
  height: calc(25vw * 1.39);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.flyer:hover{
  transform: scale(1.05);
}
.flyer img{
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  backface-visibility: hidden;
}
.flyer img:first-child{
  z-index: 2;
  transition: transform 0.5s ease;
}
.flyer img:last-child{
  transform: rotateY(-90deg);
  transition: transform 0.5s ease;
}
.flyer.rotated img:first-child{
  transform: rotateY(90deg);
}
.flyer.rotated img:last-child{
  z-index: 2;
  transform: rotateY(0deg);
}

.flyer img:first-child:not(.rotated) {
  animation: blink 6s ease infinite;
  animation-delay: 5s;
}
#circle-landing-top{
  width: 45vw;
  height: 45vw;
  top: -60vh;
  left: -5vw;
}
#circle-landing-bottom{
  width: 45vw;
  height: 45vw;
  bottom: -55vh;
  right: 5vw;
}
#landing-big-dark-blob {
  width: 70vw;
  height: 70vw;
  right: -40vw;
  top: 0vw;
  transform: rotate(20deg);
}
#landing-mid-blob {
  width: 70vw;
  height: 70vw;
  right: -40vw;
  top: 0vw;
  transform: rotate(20deg) scale(0.8);
}
#landing-little-blob {
  width: 70vw;
  height: 70vw;
  right: -40vw;
  bottom: -20vw;
  transform: rotate(10deg) scale(0.6);
}
#landing-stroke-blob {
  width: 20vw;
  height: 20vw;
  left: 5vw;
  top: -20vh;
  transform: rotate(70deg);
  stroke-width: 0.5rem;
}
#landing-big-dark-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -30vw;
  top: 25vw;
  transform: rotate(20deg);
}
#landing-mid-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -30vw;
  top: 25vw;
  transform: rotate(20deg) scale(0.8);
}
#landing-little-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -30vw;
  top: 25vw;
  transform: rotate(20deg) scale(0.6);
}
.blob-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.star {
  position: absolute;
  color: white;
}
.star:before {
  content: '✦';
}
div.text-container{
  display: flex;
  flex-direction: column;
}
div#landing-texts{
  position: absolute;
  top: 20vh;
  left: 10vw;
  width: 40vw;
}
span{
  color: #fff;
  margin: 0;
  padding: 0;
}
p, h1, h2, h3{
  color: #fff;
  margin: 0;
  padding: 0;
}
h1, h2, h3{
  font-family: 'Martel', sans-serif;
  font-weight: 800;
}
h1 span{
  display: block;
}
span#hello{
  font-size: 4rem;
}
span, p{
  font-family: 'Luciole', sans-serif;
  font-weight: normal;
}

.cursive{
  font-family: "Brittany", sans-serif;
}
span#me{
  font-family: 'Martel', sans-serif;
  font-weight: 800;
  font-size: 5rem;
}
span#desc{
  font-size: 2.5rem;
}
img#picture-me{
  clip-path: circle(44%);
  width: 35vw;
  position: absolute;
  top: 9vh;
  right: 7vw;
}
.star1 {
  font-size: 2rem;
  top: 30vh;
  left: 40vw;
  transform: translateX(-50%);
  animation: star-blink 3s ease infinite;
}
.star2 {
  font-size: 3rem;
  bottom: 23vh;
  left: 15vw;
  transform: translateX(-50%);
  animation: star-blink 3s ease 2s infinite;
}
.star3 {
  font-size: 4rem;
  top: 23vh;
  left: 42vw;
  transform: translateX(-50%);
  animation: star-blink 3s ease 1s infinite;
}

section#presentation-page{
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-image: url("./imgs/parallax/book-parallax.webp");
}
section#presentation-page img{
  width: 30%;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
div#presentation-texts{
  color: #fff;
  font-size: 1.2rem;
  row-gap: 0.5rem;
  justify-content: space-between;
  width: 40vw;
  height: 50%;
}
svg#reading-girl{
  height: 50vh;
}
h2#presentation-title{
  font-size: 4rem;
}
section#skills-page{
  flex-direction: column;
  row-gap: 10rem;
}
#circle-skills-left{
  width: 45vw;
  height: 45vw;
  top: -40vh;
  left: -15vw;
}
#circle-skills-right{
  width: 45vw;
  height: 45vw;
  bottom: -40vh;
  right: -15vw;
}
#skills-stroke-blob-left{
  width: 25vw;
  height: 25vw;
  left: -10vw;
  top: -20vh;
  transform: rotate(70deg);
  stroke-width: 0.5rem;
}
#skills-stroke-blob-right{
  width: 40vw;
  height: 40vw;
  right: -20vw;
  bottom: 5vh;
  transform: rotate(-240deg);
  stroke-width: 0.5rem;
}
#skills-big-dark-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -25vw;
  top: 30vw;
  transform: rotate(5deg);
}
#skills-mid-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -25vw;
  top: 30vw;
  transform: rotate(5deg) scale(0.8);
}
#skills-little-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -25vw;
  top: 30vw;
  transform: rotate(5deg) scale(0.6);
}
#skills-big-dark-blob-top {
  width: 50vw;
  height: 50vw;
  right: -12vw;
  top: -35vw;
  transform: rotate(-105deg);
}
#skills-mid-blob-top {
  width: 50vw;
  height: 50vw;
  right: -4vw;
  top: -32vw;
  transform: rotate(-75deg) scale(0.8);
}
#skills-little-blob-top {
  width: 50vw;
  height: 50vw;
  right: -12vw;
  top: -32vw;
  transform: rotate(-75deg) scale(0.6);
}
#skills-texts{
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
#skills-title{
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Martel', sans-serif;
}
#skills-subtitle{
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Martel', sans-serif;
}
div#skills-cards div.card{
  width: 19vw;
}
div#skills-cards div.card div.card-header{
  background-color: var(--dark-brown);
}
section#community-management-page{
  justify-content: space-around;
  background-image: url("./imgs/parallax/community-management-parallax.webp");
}
div#community-management-texts{
  display: flex;
  flex-direction: column;
  width: 50%;
  row-gap: 3rem;
  margin-top: 1.5rem;
}
h2#community-management-title{
  display: flex;
  flex-direction: column;
}
h2#community-management-title span{
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Martel', sans-serif;
}
div#community-management-texts-header{
  display: flex;
}
ul#community-management-menu{
  display: flex;
  list-style: none;
  flex-direction: row;
  padding: 0;
  column-gap: 3rem;
}
ul#community-management-menu li{
  display: flex;
  width: 10rem;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0.5rem;
  background-color: var(--midder-brown);
  border-radius: 0.5rem;
  border: transparent 0.5rem solid;
  box-shadow:
  0 4px 6px rgba(0, 0, 0, 0.1),
  0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
ul#community-management-menu li.active{
  border-color: #fff;
  background-color: var(--mid-brown);
  transform: scale(1.1);
}
ul#community-management-menu li:not(.active):hover {
  background-color: var(--mid-brown);
  box-shadow:
  0 8px 20px rgba(0, 0, 0, 0.15), 
  0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1.2) translateY(-4px);
}
ul#community-management-menu li img{
  width: 100%;
  }
#community-management-body-oobaooba, #community-management-body-ttmo, #community-management-insta-oobaooba, #community-management-insta-ttmo{
  display: none;
}
#community-management-body-oobaooba.active, #community-management-body-ttmo.active, #community-management-insta-oobaooba.active, #community-management-insta-ttmo.active{
  display: flex;
}
#community-management-body-oobaooba, #community-management-body-ttmo{
  color: #fff;
  font-size: 1.2rem;
  row-gap: 0.5rem;
}
#community-management-body-oobaooba ul, #community-management-body-ttmo ul{
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

#community-management-insta-oobaooba.active:not(:hover) img, #community-management-insta-ttmo.active:not(:hover) img {
  background-color: #000;
  animation: blink 6s ease infinite;
  animation-delay: 5s;
}
section#web-content-page{
  justify-content: space-around;
}

#circle-web-content{
  width: 45vw;
  height: 45vw;
  bottom: -40vh;
  left: -15vw;
}
#web-content-big-dark-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -25vw;
  top: -30vw;
  transform: rotate(5deg);
}
#web-content-mid-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -25vw;
  top: -30vw;
  transform: rotate(5deg) scale(0.8);
}
#web-content-mid-blob {
  width: 50vw;
  height: 50vw;
  right: -25vw;
  top: 30vw;
  transform: rotate(5deg) scale(0.8);
}
#web-content-stroke-blob-right{
  width: 40vw;
  height: 40vw;
  right: -20vw;
  top: -45vh;
  transform: rotate(-270deg);
  stroke-width: 0.5rem;
}
div#web-content-texts{
  display: flex;
  flex-direction: column;
  width: 50%;
  row-gap: 3rem;
  margin-top: 1.5rem;
}
h2#web-content-title{
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Martel', sans-serif;
}
div#web-content-texts-header{
  display: flex;
}
ul#web-content-menu{
  display: flex;
  list-style: none;
  flex-direction: row;
  padding: 0;
  column-gap: 3rem;
}
ul#web-content-menu li{
  display: flex;
  width: 10rem;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0.5rem;
  background-color: var(--midder-brown);
  border: transparent 0.5rem solid;
  border-radius: 0.5rem;
  box-shadow:
  0 4px 6px rgba(0, 0, 0, 0.1),
  0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
ul#web-content-menu li.active{
  border-color: #fff;
  background-color: var(--mid-brown);
  transform: scale(1.1);
}
ul#web-content-menu li:not(.active):hover {
  background-color: var(--mid-brown);
  box-shadow:
  0 8px 20px rgba(0, 0, 0, 0.15), 
  0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1.2) translateY(-4px);
}
ul#web-content-menu li img{
  width: 100%;
  }
#web-content-blog-oobaooba, #web-content-blog-angel-corp{
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
#web-content-body-oobaooba, #web-content-body-angel-corp, #web-content-blog-oobaooba, #web-content-blog-angel-corp{
  display: none;
}
#web-content-body-oobaooba.active, #web-content-body-angel-corp.active, #web-content-blog-oobaooba.active, #web-content-blog-angel-corp.active{
  display: flex;
}
#web-content-body-oobaooba, #web-content-body-angel-corp{
  color: #fff;
  font-size: 1.2rem;
  row-gap: 0.5rem;
}
#web-content-body-oobaooba ul, #web-content-body-angel-corp ul{
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
section#print-page{
  flex-direction: column;
  row-gap: 3rem;
  height: fit-content;
  background-image: url("./imgs/parallax/print-parallax.webp");
}
#print-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
#print-title span{
  font-size: 3rem;
  font-family: 'Martel', sans-serif;
  font-weight: 800;
}
section#google-page{
  flex-direction: row;
  justify-content: center;
}
#google-big-dark-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -30vw;
  top: -20vw;
  transform: rotate(-10deg);
}
#google-mid-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -30vw;
  top: -20vw;
  transform: rotate(-10deg) scale(0.8);
}
#google-little-blob-corner {
  width: 50vw;
  height: 50vw;
  left: -30vw;
  top: -20vw;
  transform: rotate(-10deg) scale(0.6);
}
#circle-google{
  width: 45vw;
  height: 45vw;
  bottom: -40vh;
  left: -15vw;
}
#google-stroke-blob-right{
  width: 40vw;
  height: 40vw;
  right: -10vw;
  top: -45vh;
  transform: rotate(-300deg);
  stroke-width: 0.5rem;
}
#google-stroke-blob-left{
  width: 40vw;
  height: 40vw;
  left: -15vw;
  bottom: -45vh;
  transform: rotate(-384deg);
  stroke-width: 0.5rem;
}
#google-big-dark-blob-top {
  width: 50vw;
  height: 50vw;
  right: -12vw;
  bottom: -35vw;
  transform: rotate(-105deg);
}
#google-mid-blob-top {
  width: 50vw;
  height: 50vw;
  right: -4vw;
  bottom: -30vw;
  transform: rotate(-75deg) scale(0.8);
}
#google-little-blob-top {
  width: 50vw;
  height: 50vw;
  right: -15vw;
  bottom: -30vw;
  transform: rotate(-75deg) scale(0.6);
}
div#google-texts{
  display: flex;
  flex-direction: column;
  width: 50%;
  row-gap: 3rem;
  margin-top: 1.5rem;
}
h2#google-title{
  display: flex;
  flex-direction: column;
}
h2#google-title span{
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Martel', sans-serif;
}
div#google-texts-header{
  display: flex;
}
ul#google-menu{
  display: flex;
  list-style: none;
  flex-direction: row;
  padding: 0;
  column-gap: 3rem;
}
ul#google-menu li{
  display: flex;
  width: 10rem;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: .5rem;
  background-color: var(--midder-brown);
  border: transparent 0.5rem solid;
  border-radius: 0.5rem;
  box-shadow:
  0 4px 6px rgba(0, 0, 0, 0.1),
  0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
ul#google-menu li.active{
  border-color: #fff;
  background-color: var(--mid-brown);
  transform: scale(1.1);
}
ul#google-menu li:not(.active):hover {
  background-color: var(--mid-brown);
  box-shadow:
  0 8px 20px rgba(0, 0, 0, 0.15), 
  0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1.2) translateY(-4px);
}
ul#google-menu li img{
  width: 100%;
  }
#google-body-ttmo, #google-body-carca, #google-google-ttmo, #google-google-carca{
  display: none;
}
#google-body-ttmo.active, #google-body-carca.active, #google-google-ttmo.active, #google-google-carca.active{
  display: flex;
}
#google-body-carca, #google-body-ttmo{
  color: #fff;
  font-size: 1.2rem;
  row-gap: 0.5rem;
}
#google-body-carca ul, #google-body-ttmo ul{
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

#google-google-carca.active:not(:hover) img, #google-google-ttmo.active:not(:hover) img {
  background-color: #000;
  animation: blink 6s ease infinite;
  animation-delay: 5s;
}
section#evadvice-page{
  height: fit-content;
  flex-direction: column;
  row-gap: 3rem;
  background-image: url("./imgs/parallax/book-parallax.webp");
}
div#evadvice-page-first{
  margin-top: 2rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
}
div#evadvice-texts{
  display: flex;
  flex-direction: column;
  width: 50%;
  row-gap: 3rem;
  margin-top: 1.5rem;
}
h2#evadvice-title{
  display: flex;
  flex-direction: column;
}
h2#evadvice-title span{
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Martel', sans-serif;
}
div#evadvice-texts-header{
  display: flex;
}
#evadvice-body{
  color: #fff;
  font-size: 1.2rem;
  row-gap: 0.5rem;
}
#evadvice-body ul{
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
div#evadvice-page-second{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  row-gap: 3rem;
}
div#evadvice-posts-header{
  display: flex;
  justify-content: center;
}
h2#evadvice-posts-title{
  display: flex;
  font-family: 'Martel', sans-serif;
  font-weight: 800;
  font-size: 3rem;
}
#evadvice-posts{
  align-self: center;
}
[id^="evadvice-posts-"]:hover::after {
  position: absolute;
  color: #fff;
  font-family: 'Luciole', sans-serif;
  font-size: 1.5rem;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#evadvice-posts-critiques.fr:hover::after {
  content: "Critiques";
}
#evadvice-posts-sorties.fr:hover::after {
  content: "Sorties";
}
#evadvice-posts-citations.fr:hover::after {
  content: "Citations";
}
#evadvice-posts-challenges.fr:hover::after {
  content: "Challenges";
}
#evadvice-posts-trends.fr:hover::after {
  content: "Trends";
}
#evadvice-posts-reals.fr:hover::after {
  content: "Réels";
}
#evadvice-posts-critiques.en:hover::after {
  content: "Book reviews";
}
#evadvice-posts-sorties.en:hover::after {
  content: "Monthly new releases";
}
#evadvice-posts-citations.en:hover::after {
  content: "Book quotes";
}
#evadvice-posts-challenges.en:hover::after {
  content: "Reading challenges";
}
#evadvice-posts-trends.en:hover::after {
  content: "Trends";
}
#evadvice-posts-reals.en:hover::after {
  content: "Reels";
}
#evadvice-posts-critiques{
  animation: posts-blink 0.5s ease 1s infinite;
}
#evadvice-posts-sorties{
  animation: posts-blink 0.5s ease 2s infinite;
}
#evadvice-posts-citations{
  animation: posts-blink 0.5s ease 3s infinite;
}
#evadvice-posts-challenges{
  animation: posts-blink 0.5s ease 4s infinite;
}
#evadvice-posts-trends{
  animation: posts-blink 0.5s ease 5s infinite;
}
#evadvice-posts-reals{
  animation: posts-blink 0.5s ease 6s infinite;
}

#evadvice-posts-critiques:not(:hover) {
  animation: blink 6s ease infinite;
  animation-delay: 5s;
}
#evadvice-posts-sorties:not(:hover) {
  animation: blink 6s ease infinite;
  animation-delay: 5.16s;
}
#evadvice-posts-citations:not(:hover) {
  animation: blink 6s ease infinite;
  animation-delay: 5.32s;
}
#evadvice-posts-challenges:not(:hover) {
  animation: blink 6s ease infinite;
  animation-delay: 5.48s;
}
#evadvice-posts-trends:not(:hover) {
  animation: blink 6s ease infinite;
  animation-delay: 6.04s;
}
#evadvice-posts-reals:not(:hover) {
  animation: blink 6s ease infinite;
  animation-delay: 6.20s;
}

#evadvice-mobile.active:not(:hover) img {
  background-color: #000;
  animation: blink 6s ease infinite;
  animation-delay: 5s;
}
footer{
  background-color: var(--dark-brown);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
#footer-nav{
  justify-content: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  list-style: none;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  8.33% { opacity: 0.3; }
}

@media (max-width: 768px) {
  section#landing-page, section#presentation-page, section#skills-page, section#community-management-page, section#web-content-page, section#print-page, section#google-page, section#evadvice-page, div#evadvice-page-first, div#evadvice-page-second{
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
  }

  section#web-content-page{
    flex-direction: column-reverse;
  }

  h2{
    text-align: center;
    font-size: 3rem !important;
  }

  footer {
    padding: 1rem;
    flex-direction: column;
    row-gap: 1rem;
    text-align: center;
  }

  #footer-nav {
    flex-direction: column;
    row-gap: 0.5rem;
  }

  .card-container,
  .painting-container,
  .post-container,
  .book,
  .mobile-container,
  .desktop-container {
    flex-direction: column !important;
    align-items: center;
    width: 100% !important;
  }

  div.card-container{
    row-gap: 2rem;
  }

  div.card {
    width: 70% !important;
    margin-bottom: 1rem;
  }

  .mobile,
  .desktop {
    width: 80% !important;
    height: auto;
  }

  img#picture-me {
    position: relative;
    width: 80vw;
    top: auto;
    right: auto;
    margin: 2rem auto 0;
  }

  div#landing-texts {
    position: relative;
    width: 80vw;
    left: auto;
    top: auto;
    margin: 5rem 0 0 0;
  }

  .star1{
    top: 46vh;
    left: 27vw;
  }
  .star2{
    bottom: 15vh;
  }
  .star3{
    top: 41vh;
    left: 86vw;
  }

  div#landing-texts h1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  span#hello {
    font-size: 2.5rem;
  }

  span#desc {
    font-size: 1.5rem;
  }

  span#me {
    font-size: 3rem;
  }

  .text-container{
    width: 80vw! important;
  }

  section#presentation-page img {
    width: 50%;
    margin-top: 3rem;
  }

  .mobile img{
    width: 100% !important;
  }

  ul#community-management-menu li, ul#google-menu li, ul#web-content-menu li{
    width: 6rem;
  }

  #web-content-blog-oobaooba, #web-content-blog-angel-corp{
    align-items: center;
    row-gap: 2rem;
  }

  .flyer{
    width: 80vw;
    height: calc(80vw * 1.39);
  }

  div.painting{
    width: 80%;
  }

  .book .left, .book .right{
    width: 80%;
    aspect-ratio: 0.7;
    position: relative;
  }

  div#google-texts-header, div#evadvice-texts-header {
    display: flex;
    justify-content: center;
  }

  .post-container{
    max-width: calc(80vw * 3 + 12rem);
  }
  .post{
    height: calc(80vw * 1.25);
  }
  .post img{
    width: 80vw;
  }
}