/* =================
RESET
===================*/
*,
*::before,
*::after {
   box-sizing: border-box;
}
* {
   margin: 0;
   padding: 0;
}

html {
   font-size: 62.5%;
}

html,
body {
   height: 100%;
}

body {
   font-size: 1.6rem;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   line-height: 1.5;
   -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
   display: block;
   max-width: 100%;
}
input,
button,
textarea,
select {
   font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Cormorant Garamond', serif;
}

p {
   font-family: 'Work Sans', sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
   overflow-wrap: break-word;
}

#root,
#__next {
   isolation: isolate;
}

/* =================
COMING SOON
===================*/

.fruits-img {
   position: absolute;
}

.fruits-top {
   top: 0;
   left: 0;
}

.fruits-bottom {
   bottom: 0;
   left: 0;
   display: none;
}

.no-serif {
   font-family: 'Work Sans', sans-serif;
   font-weight: 400;
}

.divider {
   width: 9.4rem;
   height: 2px;
   background-color: rgba(88, 4, 78, 0.3);
   margin: 0 auto;
   transform-origin: left;
   animation: divider 0.5s ease;
}

.coming-soon {
   padding: 6rem 3rem 6rem 3rem;
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
   position: relative;
   align-items: center;
}

.coming-soon-heading {
   text-align: center;
   filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.09));
   margin-bottom: 2rem;
}

.coming-soon-heading h4 {
   color: #c59f7d;
   font-size: 2.7rem;
}

.coming-soon-heading h1 {
   color: #58044e;
   font-size: 4.5rem;
   margin-bottom: 2rem;
}

.coming-soon-info h4 {
   color: #c59f7d;
   font-size: 2rem;
}

.coming-soon-info p {
   text-align: justify;
   font-size: 1.4rem;
}

.coming-soon-info p:not(:last-child) {
   margin-bottom: 1.5rem;
}

.footer p {
   font-size: 14px;
   color: #959595;
   margin: 10px 10px;
   text-align: center;
}

@media screen and (min-width: 480px) {
   .coming-soon-img {
      max-width: 45rem;
   }
}

@media screen and (min-width: 768px) {
   .coming-soon {
      padding: 8rem 7rem 8rem 7rem;
      gap: 8rem;
      align-items: center;
   }

   .coming-soon-heading {
      margin-bottom: 80px;
   }

   .coming-soon-heading h4 {
      font-size: 2.7rem;
   }

   .coming-soon-heading h1 {
      font-size: 6rem;
      margin-bottom: 2rem;
   }

   .coming-soon-info h4 {
      color: #c59f7d;
      font-size: 2.5rem;
      margin-bottom: 15px;
   }

   .coming-soon-info p {
      text-align: justify;
      font-size: 1.6rem;
   }

   .coming-soon-img {
      max-width: 54rem;
   }

   .fruits-bottom {
      display: block;
   }

   .fruits-bottom,
   .fruits-top {
      position: fixed;
   }
}

@media screen and (min-width: 992px) {
   .coming-soon-content {
      max-width: 70rem;
   }
}

@media screen and (min-width: 1024px) {
   .coming-soon {
      flex-direction: row;
      justify-content: center;
      position: static;
   }
   .coming-soon-heading {
      text-align: left;
      margin-bottom: 40px;
   }

   .coming-soon-heading h1 {
      margin-bottom: 1rem;
   }

   .divider {
      margin: 0;
   }

   .coming-soon-img {
      max-width: 50%;
   }
}

@media screen and (min-width: 1200px) {
   .coming-soon-content {
      max-width: 550px;
   }

   .coming-soon-img {
      max-width: 58rem;
   }
}

@keyframes divider {
   from {
      transform: scaleX(0);
   }
   to {
      opacity: 1;
      transform: scaleX(1);
   }
}
