@font-face {
  font-family: euphoria;
  src: url(./fonts/EuphoriaScript-Regular.otf);
}

@font-face {
  font-family: crest;
  src: url(./fonts/CreslinaRegular-7BoDB.ttf);
}
@font-face {
  font-family: papernotes;
  src: url(./fonts/Papernotes.otf);
}
:root {
  --accent-color: #ffa3b6 !important;
  --accent-hover: #ff8ea5;
  --accent2: #73a1b1;
  --accent3: #6b4f3f;
  --accent4: #7a3e48;
  --back-color: #fff1e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}
html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  color: black;
  font-family: sans-serif;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.55);
}
body {
  background-color: var(--back-color);
}
button,
a,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

nav {
  display: flex;
  flex-direction: column;
  background-color: var(--accent-color);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4vw 1.4vw 0;
}

.nav-wave {
  width: 100%;
  height: 70px;
  display: block;
  margin-bottom: -70px;
}

#nav1 {
  display: flex;
  align-items: center;
}
.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: euphoria;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: #111;
}
#nav2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  padding-inline: clamp(1rem, 3.5vw, 4rem);
}
#nav2 h1 {
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  font-family: euphoria;
  position: relative;
  cursor: pointer;
}
#nav2 h1::after {
  content: "";
  position: absolute;
  left: 0;
  background: currentColor;
  bottom: 0.15em;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
#nav2 h1:hover::after {
  transform: scaleX(1);
}
#nav3 img {
  height: 40px;
}
#nav3 {
  display: none;
}
#mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--accent4);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;

  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
#mobile-panel .panel-content h1 {
  color: var(--back-color);
  font-family: papernotes;
  font-size: 80px;
}
#mobile-panel.active {
  transform: translateX(0);
}

body.panel-open {
  overflow: hidden;
}

main #hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: fit-content;
}
main #hero #herotext-box {
  padding: 5vw;
}
main #hero #herotext-box h1 {
  font-family: crest;
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: var(--accent3);
}
.highlighted {
  color: var(--accent4);
  text-decoration: underline;
  text-underline-offset: -0.5rem;
}
.highlighted2 {
  color: var(--accent-color);
}
main #hero #heroimage-box {
  margin: 4vw;
  width: fit-content;
}
#illustration {
  height: 45vw;
}
.main-btn {
  width: clamp(160px, 16vw, 260px);
  height: clamp(52px, 5vw, 84px);
  font-size: clamp(0.5rem, 2.5vw, 2rem);
  margin: clamp(16px, 3vw, 32px);
  background-color: var(--accent-color);
  cursor: pointer;
  border: 2px solid #000;
  border-radius: 10px;
  font-family: papernotes;
  font-weight: 500;
}

.main-btn:hover {
  background-color: var(--accent-hover);
}

#stats {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

#stats #statrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: clamp(1.2rem, 3vw, 3rem);
}
#stats #statrow::-webkit-scrollbar {
  height: 0;
  display: none;
}

.statbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 2rem 1rem;
  background-color: var(--accent4);
  color: var(--back-color);
  text-align: center;
  border-radius: clamp(10px, 1.2vw, 16px);
  width: clamp(160px, 22vw, 240px);
  height: clamp(200px, 32vw, 340px);
}

#stats #statrow .statbox img {
  height: clamp(60px, 10vw, 120px);
  flex-shrink: 0;
}
#stats .statbox h3 {
  font-family: papernotes;
  font-size: clamp(1rem, 3vw, 2rem);
  line-height: 0.9;
  margin: 0 0 clamp(0.4rem, 1vw, 0.6rem) 0;
}

#stats .statbox h5 {
  font-family: sans-serif;
  font-size: clamp(0.5rem, 1.4vw, 0.9rem);
  line-height: 1.1;
  font-weight: 100;
  opacity: 0.9;
  letter-spacing: 0.1;
}

main #reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  background-color: var(--accent4);
  width: clamp(280px, 50vw, 720px);
  height: clamp(260px, 30vw, 420px);
  border-radius: clamp(10px, 1.2vw, 16px);
  align-self: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.cards .cardhead {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(0.5rem, 1.2vw, 0.75rem);
  gap: clamp(0.3rem, 0.6vw, 0.6rem);
  align-self: flex-start;
}
.cards .cardhead h4 {
  font-family: sans-serif;
  color: var(--back-color);
  font-size: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.1rem, 0.4vw, 0.3rem);
  line-height: 1;
}
.cards .cardhead img {
  height: clamp(28px, 3vw, 38px);
  border-radius: 50%;
  border: solid clamp(0.5px, 0.1vw, 1px) #111;
}
.cards .cardbody {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.6rem, 1.5vw, 1rem);
}
.cards .cardbody h5 {
  font-family: papernotes;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--back-color);
}
.cards .cardbody img {
  height: clamp(160px, 20vw, 280px);
  border-radius: clamp(10px, 1.2vw, 16px);
}
.badge {
  font-size: clamp(0.45rem, 1.2vw, 0.75rem);
  font-weight: 500;
  margin-left: clamp(0.3rem, 0.8vw, 0.5rem);
  padding: clamp(0.15rem, 0.6vw, 0.3rem) clamp(0.4rem, 1.2vw, 0.8rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  letter-spacing: 0.02em;
}
.carousel {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-viewport {
  width: clamp(280px, 50vw, 720px);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  will-change: transform;
}

.arrow {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  position: absolute;
  z-index: 10;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}
#finalcta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: clamp(2rem, 6vw, 6.25rem);
  height: clamp(18rem, 60vw, 31.25rem);
}

#finalcta h1 {
  font-family: euphoria;
  font-size: clamp(2.5rem, 8vw, 6.25rem);
}

#finalcta h2 {
  font-family: euphoria;
  font-weight: 200;
  font-size: clamp(1.25rem, 4vw, 2.5rem);
}
#finalcta button {
  margin-top: clamp(1.25rem, 4vw, 3.125rem);
  width: clamp(170px, 16vw, 260px);
  height: clamp(55px, 5vw, 84px);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.section {
  padding: clamp(0.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 4vw, 2rem);
}
.heading {
  font-family: papernotes;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
}
.special {
  text-decoration: none !important;
}
.logo-footer {
  height: clamp(30px, 5vw, 40px);
  width: auto;
  object-fit: contain;
}
.logo-text-footer {
  font-family: euphoria;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #111;
}
.tagline {
  font-family: euphoria;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.9rem);
  color: #111;
}

footer {
  background-color: var(--accent-color);
  height: clamp(130px, 10vw, 150px);
  display: grid;
}
footer #footer-logo-box {
  display: flex;
  align-items: flex-start;
  justify-self: flex-end;
  object-fit: contain;
}
footer #footer-logo-row {
  display: flex;
  align-items: center;
  margin: 1px 10px;
}

footer #contactme {
  display: flex;
  flex-direction: column;
  padding: 5px;
  align-self: flex-end;
  color: #252525;
}
footer #contactme h1 {
  font-family: papernotes;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 500;
}
footer #contactme h3 {
  font-size: clamp(10px, 3vw, 30px);
}

#products {
  display: grid;
  grid-template-columns: repeat(2, minmax(18rem, 1fr));
  gap: clamp(1rem, 3vw, 3rem);
  justify-content: center;
  justify-items: center;
  margin: 0 auto;
  padding: 20px;
  max-width: clamp(40rem, 92vw, 90rem);
}

.shop-card {
  background-color: var(--accent4);
  width: 100%;
  max-width: clamp(22rem, 35vw, 36rem);
  height: clamp(15rem, 20vw, 18rem);
  border-radius: clamp(10px, 1.2vw, 16px);

  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);

  padding: clamp(1rem, 2vw, 1.5rem);
}

.cardtext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.6rem, 1.5vw, 1rem);
}

.shop-card img {
  height: clamp(11rem, 50vw, 13rem);
  width: auto;
  border-radius: clamp(10px, 1.2vw, 16px);
  margin: 0;
}

.shop-card h3 {
  font-family: papernotes;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  color: var(--back-color);
}
.shop-card h5 {
  font-family: papernotes;
  line-height: 1;
  font-size: 1.5;
  color: var(--back-color);
  opacity: 0.9;
  font-weight: 100;
}

.order-btn {
  border: solid 2px black;
  width: clamp(6rem, 15vw, 12rem);
  height: 3rem;
  border-radius: 5px;
  background-color: var(--accent-color);
  color: rgb(0, 0, 0);
  font-family: papernotes;
  font-size: clamp(1rem, 2vw, 1.2rem);
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 1vw, 0.5rem);
  cursor: pointer;
  margin-top: 0.5rem;
}

.order-btn i {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.order-btn:hover {
  background-color: var(--accent-hover);
}
#custom-product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 200px;
  margin: 50px;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}
#custom-card-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px 0;
}

.special-card {
  background-color: var(--accent4);

  width: clamp(20rem, 85vw, 60rem);
  min-height: clamp(16rem, 22vw, 22rem);

  border-radius: clamp(12px, 1.5vw, 18px);

  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(1rem, 3vw, 2rem);

  padding: clamp(1rem, 2.5vw, 2rem);
}

.special-card img {
  height: clamp(10rem, 18vw, 16rem);
  width: auto;
  border-radius: clamp(12px, 1.5vw, 18px);
  flex-shrink: 0;
}

.special-card .cardtext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
}

.special-card h3 {
  font-family: papernotes;
  font-size: clamp(2.4rem, 3vw, 3rem);
  color: var(--back-color);
}

.special-card h5 {
  font-family: papernotes;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.1;
  color: var(--back-color);
  opacity: 0.9;
  font-weight: 100;
}

.special-btn {
  width: clamp(8rem, 18vw, 14rem);
  height: clamp(3.2rem, 4vw, 3.8rem);
  border-radius: clamp(6px, 1vw, 10px);
  background-color: var(--accent-color);
  border: solid 2px black;
  color: black;
  font-family: papernotes;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 0.6rem);
  cursor: pointer;
}

.special-btn i {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.special-btn:hover {
  background-color: var(--accent-hover);
}

#contactusbox {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
#madeby {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 80px 2px;
}
.Credits {
  font-family: papernotes !important;
  font-size: clamp(4rem, 8vw, 5rem);
}
#disclaimer {
  display: flex;
  text-align: center;
  font-size: clamp(0.6rem, 1vw, 1rem);
}
.mobilebr {
  display: none;
}
@media (min-width: 1300px) {
  #stats #statrow {
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    max-width: 1400px;
  }
  .statbox {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: clamp(0.8rem, 1.5vw, 1.2rem);
    align-items: center;
    text-align: left;
    width: clamp(360px, 30vw, 440px);
    height: clamp(170px, 14vw, 200px);
    padding: clamp(0.9rem, 1.5vw, 1.3rem);
  }
  .statbox img {
    grid-row: 1 / span 2;
    height: clamp(80px, 6vw, 105px);
    flex-shrink: 0;
  }
  .statbox h3 {
    align-self: end;
  }
  .statbox h5 {
    margin-top: clamp(0.3rem, 0.8vw, 0.5rem);
    align-self: start;
  }
}

@media (max-width: 1000px) {
  main #hero #heroimage-box {
    display: none;
  }
  main #hero #herotext-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  main #hero {
    margin-top: 14vh;
    align-items: center;
    justify-content: center;
  }
  main #hero #herotext-box h1 {
    font-size: clamp(4.5rem, 12vw, 9rem);
    max-width: 16ch;
    text-align: center;
    line-height: 1.05;
  }
  main #hero .main-btn {
    width: 45vw;
    height: 10vw;
    font-size: 8vw;
    letter-spacing: 0.04em;
    margin-top: 3rem;
    border-width: 2.5px;
    border-radius: 12px;
  }
}
@media (max-width: 750px) {
  .mobilebr {
    display: block;
  }
  #products {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 701px) {
  #mobile-panel {
    display: none;
  }
}

@media (max-width: 700px) {
  #nav2 {
    display: none;
  }
  #nav3 {
    display: block;
  }
  main #hero .main-btn {
    width: 50vw;
    height: 12vw;
    font-size: 10vw;
  }
  .arrow {
    display: none;
  }
}
@media (max-width: 500px) {
  #finalcta {
    margin: 0;
  }
}
@media (max-width: 405px) {
  .Credits {
    font-size: 3rem;
  }
}
@media (max-width: 310px) {
  .section {
    padding: 20px 1px;
  }
}
@media (max-width: 300px) {
  main #hero #herotext-box h1 {
    max-width: auto;
    padding: 0;
    font-size: 60px;
  }
  #hero {
    padding: 0;
  }
}
