@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";

@font-face{
  font-family:jubilat;
  src:url(Jubilat/JubilatRegular.otf) format("opentype");
  font-weight: 400;
}

@font-face{
  font-family:jubilat;
  src:url(Jubilat/JubilatSemibold.otf) format("opentype");
  font-weight: 600;
}

@font-face{
  font-family:proxima;
  src:url(ProximaNova/proximanova-bold.otf) format("opentype");
  font-weight: 700;
}

@font-face{
  font-family:proxima;
  src:url(ProximaNova/proximanova-light.otf) format("opentype");
  font-weight: 400;
}

@font-face{
    font-family:stashblack;
    src:url(StashBlack/StashBlack.otf) format("opentype");
    font-weight: 400;
}

body {
  font-family:jubilat, serif;
}

.header {
  height: 100px;
  padding: 10px 40px;
}

.logo {
  margin-right: 30px;
  width: 130px;
}

.proxima {
  font-family:proxima;
}

.jubilat {
  font-family:jubilat;
}

.stashblack{
    font-family:stashblack;
}

h1{
    line-height: 1;
}

.circle-div svg {
  display: inline;
  margin-left: 1rem;
}

.shop svg {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  height: 100px;
}

.shop h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 1rem;
}

.tastebud h3 {
  font-weight: 600;
  font-size: 21px;
  line-height: 36px;
  margin-bottom: 0.5rem;
}

.tastebud h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
}

.tastebud p {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 1rem;
}

.tastebud img {
  margin-bottom: 1rem;
}

.circle-div {
  background: #fff url(../images/split-cookie.png) right 355px no-repeat;
  position: relative;
}

.spoon {
  margin-left: -1rem;
}

.text-pink-500 {
  color: #ee398c;
}

.reviews,
.ourdough {
  background-color: #f5f5f5;
}

.pinkbg {
  background-color: #e27b8e;
}

.bluebg {
  background-color: #558dd2;
}

.purpbg {
  background-color: #b65196;
}

.greycolor {
  color: #304456;
}

.bg-pink-600 {
  background-color: #dc4c8b;
}

.pinkgif{
    max-height: 45rem;
}

.jagged {
  background-image: url(../images/footer.png);
  height: 10px;
  background-position: center; /* Center the image */
  background-repeat: repeat; /* Do not repeat the image */
  background-size: contain; /* Resize the background image to cover the entire container */
}

.cover {
  object-fit: cover;
  width: 100%;
}

#promo {
  position: absolute;
  right: 40px;
  top: -30px;
  border-radius: 36px;
  background: #F7F7F7;
  width: 420px;
  text-align: center;
  padding: 35px 20px 30px;
}

#promo_top {
  cursor: pointer;
}

.open #promo_top {
  cursor: unset;
}

#form_promo {
  max-height: 0;
  height: 0;
  overflow: hidden;
  -moz-transition: max-height 1s ease;
  -webkit-transition: max-height 1s ease;
  -o-transition: max-height 1s ease;
  transition: max-height 1s ease;
}

.open #form_promo {
  max-height: 500px;
  height: auto;
}

#promo h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

#promo h3 {
  font-size: 42px;
  font-family: proxima, serif;
  color: #DC4C8B;
  font-weight: 700;
  margin: 0 0 0px;
  padding: 0;
  line-height: 1.2;
}

#form_promo input[type="email"] {
  padding: 7px;
  border: 1px solid #B9B9B9;
  border-radius: 8px;
  width: 100%;
  margin: 20px 0;
  font-family: proxima, serif;
}

#form_promo input[type="submit"] {
  background: #EE398C;
  border-radius: 100px;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-family: proxima, serif;
  font-weight: bold;
}

#close {
  position: absolute;
  right: 5px;
  top: 25px;
  font-size: 20px;
  font-family: proxima, serif;
  padding: 10px;
  display: none;
  width: 40px;
  font-weight: bold;
}

.open #close {
  display: block;
}

@media only screen and (max-width: 1200px)  {
  .circle-div {
    background: none;
  }

  .spoon {
    display: none;
  }
}

@media only screen and (max-width: 1000px)  {
  #promo {
    width: 300px;
    padding: 35px 20px 25px;
    right: 20px;
  }

  #promo h2 {
    font-size: 20px;
  }
  
  #promo h3 {
    font-size: 30px;
  }

  #promo p {
    font-size: 13px;
  }

  #form_promo input[type="submit"] {
    font-size: 14px;
  }

  .header {
    padding: 20px 20px;
  }

  .logo {
    margin-right: 10px;
    padding: 2px 15px 5px;
  }

  h1, h2, h3, h4, h5, p{
    font-size: 150%;
  }
  
}