:root {
  --white01: #f3eef7;
}

html,
body {
  height: 100%;
  font-size: 14px;
  font-family: 'Gadugi', sans-serif;
  background-color: #110B1F;
}

* {
  margin: 0;
  color: var(--white01);
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  padding: 0;
}

nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 12px;
  bottom: 12px;
  right: 12px;
}

nav button {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  background-color: #3B2B5E;
  opacity: 0.86;
}

nav button:hover {
  opacity: 1;
}

nav button.disabled {
  /* cursor: unset; */
  background-color: #c4c4c4;
  opacity: 0.8;
}

nav button#up-btn {
  background-image: url("assets/chevron-small-up.svg");
}

nav button#down-btn {
  background-image: url("assets/chevron-small-down.svg");
}

h1 {
  font-family: 'Fredericka the Great', serif;
  font-size: clamp(2rem, 10vw, 4rem);
}

p {
  font-family: 'Gadugi', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}

article {
  min-height: 100vh;
  padding: 1rem;
}

article.background-img {
  background: url(assets/cuddlebook-bg.png);
  background-color: unset;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

article.background-img main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 90vh;
  text-align: center;
}

article.background-img main img {
  align-self: flex-start;
}

article.background-img main section {
  max-width: 700px;
}

article.background-img main section.intro {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

article.background-img main section.badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

article.background-img main section.badges img {
  max-height: 54px;
  max-width: 100%;
}

article.background-img main section.reviews {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

article.slide section {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  gap: 4rem;
}

/* Desktop */
@media (min-width: 768px) {
  article.slide section {
    flex-direction: row;
    padding-left: 4rem;
    /* gap: 1rem; */
  }
}

article.slide section .text {
  flex: 1 0 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

article.slide section .text .gradient-bilingual {
  background: linear-gradient(90deg, #78D6FF 52.87%, #E09EFF 97.17%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

article.slide section .text .gradient-bedtime-stories {
  background: linear-gradient(90deg, #E8B8FF 0.22%, #FFA234 80.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

article.slide section .text-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

article.slide section .image {
  flex: 1 0 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

article.slide section .image img {
  max-width: 100%;
}

/* Desktop */
@media (min-width: 768px) {
  article.slide section .image img {
    max-width: 90%;
    width: unset;
  }
}

article.slide#contact {
  background-color: #403b4b;
}

article.slide#contact section.contact-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10rem;
}

article.slide#contact section.contact-section div.contact-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

article.slide#contact section.contact-section div.contact-content div.contact-content-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

article.slide#contact section.contact-section div.contact-content div.contact-content-item div.social-links {
  display: flex;
  flex-direction: rows;
  gap: 1rem;
}

article.slide#contact section.contact-section a.contact-email {
  border-bottom: 1px solid transparent;
  font-size: clamp(1rem, 7vw, 4rem);
  /* font-size: clamp(1rem, 4rem, 1vw); */
  width: fit-content;
  padding-bottom: 0.5rem;
}

article.slide#contact section.contact-section a.contact-email:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

article.slide#contact section.contact-section svg {
  width: 40px;
  height: 40px;
  fill: var(--white01);
}

article.slide#contact section.contact-section a.social-link:hover>svg {
  fill-opacity: 0.3;
}