@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@keyframes h2SlideIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bookCoverSlideIn {
  0% {
    transform: translateX(100vw) rotate(2deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(-5deg);
    opacity: 1;
  }
}
@keyframes titleAppear {
  0% {
    max-height: 0%;
    color: #fff;
  }
  100% {
    max-height: 100%;
    color: #000;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  display: flex;
}

.content {
  min-height: 200vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 4vw;
}

header {
  position: fixed;
  z-index: 10;
}
header .header_container {
  width: 40vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  background-color: #F3D0D7;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(-40vw);
  transition: transform 0.5s ease-in-out;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header .header_container {
    width: 50vw;
    transform: translateX(-50vw);
  }
}
header input {
  display: none;
}
header label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 80px;
  height: 80px;
  cursor: pointer;
  position: fixed;
  z-index: 5;
  top: 20px;
  left: 20px;
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
  padding: 10px 0;
  overflow: hidden;
  gap: 10px;
  z-index: 11;
}
header label .bar {
  width: 40px;
  height: 3px;
  background-color: black;
  transition: all 0.5s ease-in-out;
  border-radius: 2px;
}
header label.checked {
  background-color: black;
}
header label.checked .bar {
  background-color: white;
}
header label.checked .bar:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
header label.checked .bar:nth-child(2) {
  transform: translateX(-80px);
}
header label.checked .bar:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
header .title {
  margin: 2rem 0.5rem;
}
header .title h1 {
  font-size: 8rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  header .title h1 {
    font-size: 4rem;
  }
}
header nav {
  width: 100%;
}
header nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style-type: decimal;
  margin-top: 4vh;
  margin-left: 1vw;
}
header nav ul li {
  margin-top: 1rem;
}
header nav ul li a {
  font-size: 3rem;
  color: #18272F;
  position: relative;
  text-decoration: none;
  transform: color 0.3s ease-in-out;
}
header nav ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #18272F;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
header nav ul li a:hover {
  color: #404040;
}
header nav ul li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
@media screen and (max-width: 768px) {
  header nav ul li a {
    font-size: 2rem;
  }
}
header .visible {
  transform: translateX(0);
}

.footer {
  display: flex;
  flex-direction: row;
  width: 100vw;
  justify-content: space-between;
  padding: 0 15vw;
  margin: 5vh 0;
}
.footer_links {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  align-items: center;
}
.footer_links a {
  text-decoration: none;
  color: black;
  font-size: 1.75rem;
  font-weight: 300;
  transition: all 0.5s ease-in-out;
}
.footer_links a:hover {
  color: #F3D0D7;
}
.footer h2 {
  font-size: 2rem;
  font-weight: 500;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .footer_links {
    margin: 5vh 0;
    gap: 5vw;
  }
}

.about {
  display: flex;
  width: 100vw;
  flex-direction: column;
  align-items: center;
}
.about .header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  width: 100vw;
}
.about .header .img {
  width: 45vw;
  height: 45vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .header .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.about .header .text {
  width: 50vw;
  display: flex;
  font-size: 5rem;
  text-align: end;
  align-items: center;
  line-height: 150%;
  padding: 2vw;
  animation: titleAppear 3s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .about .header {
    flex-direction: column-reverse;
    align-items: center;
  }
  .about .header .img {
    width: 100vw;
    height: 100vw;
  }
  .about .header .img img {
    border-radius: 0px;
  }
  .about .header .text {
    width: 100vw;
    font-size: 3rem;
    text-align: center;
  }
}
.about .body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4vw;
  width: 100vw;
}
.about .body p {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 5vw;
  line-height: 175%;
}
@media screen and (max-width: 768px) {
  .about .body p {
    line-height: 125%;
    text-align: center;
  }
}
.about .body .creds {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
  margin-top: 5vw;
}
.about .body .creds h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 5vw;
  text-align: center;
}
.about .body .creds .cred_cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
}
.about .body .creds .cred_cards .card {
  width: 30vw;
  height: 15vw;
  background-color: #F3D0D7;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.about .body .creds .cred_cards .card .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .body .creds .cred_cards .card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: black;
  text-align: center;
  margin-bottom: 5px;
}
.about .body .creds .cred_cards .card p {
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about .body .creds .cred_cards {
    flex-direction: column;
    gap: 5vw;
  }
  .about .body .creds .cred_cards .card {
    width: 90vw;
    height: 40vw;
  }
}

.book {
  min-height: 100vh;
}
.book_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 4vw;
}
.book_container .title h1 {
  font-size: 5vw;
  font-weight: 400;
  margin-right: 5vw;
}
.book_container .book_cover {
  width: 25vw;
  height: 40vw;
  background-color: #252525;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transform: rotate(2deg);
  opacity: 0;
  font-size: 2rem;
}
.book_container .bookCoverActive {
  animation: bookCoverSlideIn 1s ease-in-out forwards;
}
.book_text {
  margin-top: 5vh;
  width: 100%;
}
.book_text h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 5vw;
  text-align: center;
}
.book_text p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 175%;
  margin: 0 5vw;
}
@media screen and (max-width: 768px) {
  .book_text p {
    line-height: 125%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .book_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .book_container .title h1 {
    font-size: 10vw;
    margin-right: 0;
    margin-bottom: 5vh;
    text-align: center;
  }
  .book_container .book_cover {
    width: 55vw;
    height: 80vw;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq h2 {
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
  margin-top: 5vh;
}
@media screen and (max-width: 768px) {
  .faq h2 {
    font-size: 2.5rem;
  }
}
.faq h3 {
  font-size: 2rem;
  font-weight: 300;
  margin: 1.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq h3 {
    font-size: 1.5rem;
  }
}
.faq .accordion {
  width: 70vw;
  margin-top: 10vh;
}
@media screen and (max-width: 768px) {
  .faq .accordion {
    width: 95vw;
  }
}
.faq .accordion-items {
  list-style: none;
  padding: 0;
  width: 100%;
}
.faq .item {
  max-height: 0;
  overflow: hidden;
  transition: max-height 2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.faq .item h3 {
  font-size: 1.5rem;
}
.faq button {
  background-color: white;
  border: none;
  font-size: 1.75rem;
  padding: 10px;
  color: black;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .faq button {
    font-size: 1.5rem;
  }
}
.faq li {
  border: solid 1px black;
  border-radius: 10px;
  padding: 2vw;
  margin: 2vw 0;
}/*# sourceMappingURL=styles.css.map */