* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100svh;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 16px;
}

@font-face {
  font-family: CaveatBold;
  src: url(../fonts/Caveat-Bold.ttf);
}
@font-face {
  font-family: CaveatRegular;
  src: url(../fonts/Caveat-Regular.ttf);
}
@font-face {
  font-family: GillSansIt;
  src: url(../fonts/GillSans\ Italic.ttf);
}
@font-face {
  font-family: GillSansLi;
  src: url(../fonts/GillSans-Light.ttf);
}
@font-face {
  font-family: GillSans;
  src: url(../fonts/GillSans.ttf);
}
@font-face {
  font-family: LatoBlack;
  src: url(../fonts/Lato-Black.ttf);
}
@font-face {
  font-family: LatoBlackIt;
  src: url(../fonts/Lato-BlackItalic.ttf);
}
@font-face {
  font-family: LatoBold;
  src: url(../fonts/Lato-Bold.ttf);
}
@font-face {
  font-family: LatoBoldIt;
  src: url(../fonts/Lato-BoldItalic.ttf);
}
@font-face {
  font-family: LatoIt;
  src: url(../fonts/Lato-Italic.ttf);
}
@font-face {
  font-family: LatoLi;
  src: url(../fonts/Lato-Light.ttf);
}
@font-face {
  font-family: LatoLiIt;
  src: url(../fonts/Lato-LightItalic.ttf);
}
@font-face {
  font-family: LatoReg;
  src: url(../fonts/Lato-Regular.ttf);
}
@font-face {
  font-family: LatoThin;
  src: url(../fonts/Lato-Thin.ttf);
}
@font-face {
  font-family: LatoThinIt;
  src: url(../fonts/Lato-ThinItalic.ttf);
}
.content {
  position: relative;
  min-height: 100svh;
  max-width: 100%;
  background-image: linear-gradient(to bottom, rgba(242, 94, 84, 0.8), rgba(242, 94, 84, 0.8)), url(../img/heroBgImage.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.content .circle_wrapper .yellow_circle {
  position: absolute;
  top: 25%;
  right: 35%;
  width: 350px;
  height: 350px;
  background-color: #FFD972;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .circle_wrapper .yellow_circle h2 {
  font-family: Caveat;
  letter-spacing: 2px;
  position: relative;
  bottom: 50px;
  left: 70px;
}
.content .circle_wrapper .yellow_circle .heroText {
  width: 150px;
  position: relative;
  top: 30px;
  right: 80px;
  text-align: center;
  font-size: 13px;
  font-family: Lato;
}
.content .pink_circle {
  width: 150px;
  height: 150px;
  background-color: #FCBCB8;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  left: 60%;
}
.content .pink_circle p {
  text-align: center;
  width: 100px;
  position: relative;
  top: 60px;
  left: 25px;
  font-family: Lato;
  font-size: 10px;
}

@media screen and (max-width: 738px) {
  .content .circle_wrapper .yellow_circle {
    width: 300px;
    height: 300px;
    font-size: 14px;
  }
}
.account {
  max-width: 100%;
  min-height: 100svh; /* 50% of the viewport height */
  background-color: #FFD972;
  font-family: Lato;
}
.account .flex-container_account {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, auto); /* Adjust the number of columns as needed */
  place-items: center;
  margin: 0 auto;
  padding: 10em 5em;
}
.account .flex-container_account .boxOne_account input, .account .flex-container_account .boxTwo_account input {
  border: none;
  border-bottom-width: medium;
  display: block;
  background: transparent;
  border-bottom: 3px solid black;
  margin-bottom: 45px;
  color: black;
  outline: none;
}
.account .flex-container_account .boxOne_account ::-webkit-input-placeholder, .account .flex-container_account .boxTwo_account ::-webkit-input-placeholder {
  color: black;
  font-size: 12px;
}
.account .flex-container_account .boxOne_account .title {
  font-family: LatoBlack;
  font-size: 26px;
  padding-bottom: 30px;
}
.account .flex-container_account .boxOne_account #logBtn {
  height: 45px;
  width: 210px;
  border: none;
  border-radius: 43px;
  text-align: center;
  color: black;
  background-color: #FFD972;
  box-shadow: 0px 7px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.account .flex-container_account .boxOne_account i {
  font-size: 20px;
  cursor: pointer;
  margin: 25px;
}
.account .flex-container_account .boxOne_account i .popover-body {
  font-size: 0.8em;
  white-space: pre-line; /* Ensures the text appears in block format */
}
.account .flex-container_account .boxTwo_account {
  padding-top: 5em;
}
.account .flex-container_account .boxTwo_account .title {
  letter-spacing: 2px;
  font-size: 30px;
  font-family: Lato;
  padding-bottom: 40px;
}
.account .flex-container_account .boxTwo_account .subtext {
  font-family: LatoIt;
}
.account .flex-container_account .boxTwo_account #signupBtn {
  height: 45px;
  width: 250px;
  border: none;
  border-radius: 43px;
  text-align: center;
  border-radius: 43px;
  color: black;
  background-color: #FFD972;
  box-shadow: 0px 7px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

@media screen and (max-width: 738px) {
  .account .flex-container_account {
    grid-template-columns: repeat(1, auto); /* Adjust the number of columns as needed */
  }
  .account .flex-container_account .boxOne_account {
    padding-right: 40px;
  }
}
/* Loader styles */
.loader {
  position: fixed; /* Position it fixed to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  display: flex; /* Center the loader */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  font-size: 24px; /* Loader text size */
  color: #333; /* Loader text color */
  z-index: 9999; /* Ensure it is on top of other content */
  visibility: hidden; /* Initially hidden */
  opacity: 0; /* Initially transparent */
  transition: visibility 0s, opacity 0.5s linear; /* Smooth transition */
}

.loader.show {
  visibility: visible; /* Show the loader */
  opacity: 1; /* Make it fully visible */
}

nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  z-index: 999;
}
nav .logo {
  height: 100%;
  margin-left: 50px;
  display: flex;
}
nav .mainMenu {
  display: flex;
  list-style: none;
  right: 0;
}
nav .mainMenu li a {
  display: inline-block;
  cursor: pointer;
}
nav .openMenu {
  font-size: 24px;
  margin-right: 10px;
  display: none;
}
nav .openMenu i {
  cursor: pointer;
}
nav .closeMenu {
  font-size: 2rem;
  display: none;
}
nav .closeMenu i {
  cursor: pointer;
}
nav a {
  display: flex;
  justify-content: flex-end;
  font-family: CaveatRegular;
  color: black;
  text-decoration: none;
  font-size: 25px;
  margin-right: 45px;
}
nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: CaveatRegular;
  font-size: 25px;
  height: 45px;
  width: 190px;
  background-color: #FFD972;
  border-radius: 43px;
  border: none;
  box-shadow: 0px 7px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

@media (max-width: 768px) {
  nav .mainMenu {
    height: 75%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 1s ease;
    background-color: white;
    /* transition top is the animation of the hamburger menu coming from the top of the page */
    display: none;
    z-index: 9999;
  }
  nav .mainMenu .closeMenu {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  nav .openMenu {
    display: block;
  }
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-style: italic;
  width: 100%;
  margin-top: auto;
}
footer .copy {
  margin-left: 50px;
}
footer .links {
  margin-right: 50px;
}
footer .links a {
  text-decoration: none;
  margin-left: 20px;
}

.formHolder {
  display: flex;
  flex-direction: column;
  padding-top: 150px;
  min-height: 100vh;
  max-width: 100%;
}
.formHolder input {
  border: 0;
  height: 30px;
  width: 100%;
  border-bottom: 3px solid black;
  margin-bottom: 80px;
  font-family: Lato;
  color: black;
  outline: none;
}
.formHolder .createRecipe #attachBtn {
  width: 110px;
  height: 40px;
  background-color: #EFA7A7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  font-family: Caveat;
  border-radius: 25px;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 225px;
  user-select: none;
  font-weight: bold;
}
.formHolder p {
  margin-bottom: 0px;
}
.formHolder .createRecipe .title,
.formHolder .addIngredients .title,
.formHolder .addInstructions .title {
  font-family: Lato;
  font-size: 16px;
  padding-bottom: 20px;
}
.formHolder .createRecipe .recipeMessage,
.formHolder .addIngredients .recipeMessage,
.formHolder .addInstructions .recipeMessage {
  font-family: Caveat;
  font-size: 25px;
  padding-bottom: 60px;
}
.formHolder .addIngredients {
  position: relative;
  margin-top: 10px;
}
.formHolder .addIngredients .addBtn {
  position: absolute;
  right: 0px;
  bottom: -500px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
}
.formHolder .addInstructions {
  position: relative;
  margin-top: 25px;
}
.formHolder .addInstructions .addStepBtn {
  width: 40px;
  height: 40px;
  background-color: #EFA7A7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 0px;
  bottom: -80px;
  user-select: none;
  font-weight: bold;
}
.formHolder .createRecipeBtn {
  margin: auto;
  width: 400px;
  height: 35px;
  border: none;
  background-color: #EFA7A7;
  border-radius: 20px;
  margin-bottom: 60px;
  font-family: Caveat;
  font-size: 20px;
  box-shadow: 0px 7px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .formHolder {
    padding: 20px;
  }
  .formHolder .createRecipe .recipeMessage {
    padding-top: 100px;
  }
  .formHolder .createRecipe #attachBtn {
    top: 195px;
    right: 20px;
  }
  .formHolder .createRecipeBtn {
    width: 300px;
  }
}
.formHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  width: clamp(600px, 1200px, 100%);
  margin: 0px auto;
  height: 100%;
}
.formHolder input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom-width: medium;
  display: block;
  background: transparent;
  border-bottom: 3px solid black;
  margin-bottom: 85px;
  font-family: Lato;
  color: black;
  outline: none;
}
.formHolder .attachBtn {
  width: 110px;
  height: 40px;
  background-color: #EFA7A7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  font-family: Caveat;
  border-radius: 25px;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 5px;
  margin-top: 275px;
  user-select: none;
  font-weight: bold;
}
.formHolder .addStepBtn, .formHolder .addBtn {
  width: 40px;
  height: 40px;
  background-color: #EFA7A7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  border-radius: 25px;
  cursor: pointer;
  position: absolute;
  right: 5px;
  bottom: 5px;
  user-select: none;
  font-weight: bold;
}
.formHolder .addStepBtn {
  margin-bottom: 180px;
}
.formHolder .addBtn {
  margin-bottom: 600px;
}
.formHolder .editRecipe, .formHolder .editIngredients, .formHolder .editInstruction {
  display: flex;
  flex-direction: column;
  width: clamp(600px, 1200px, 100%);
  margin: 0px auto;
}
.formHolder .editRecipe .title, .formHolder .editIngredients .title, .formHolder .editInstruction .title {
  font-family: Lato;
  font-size: 16px;
  padding-bottom: 20px;
}
.formHolder .editRecipe .message, .formHolder .editIngredients .message, .formHolder .editInstruction .message {
  font-family: Caveat;
  font-size: 25px;
  padding-bottom: 60px;
}
.formHolder .editRecipe {
  padding-top: 200px;
}
.formHolder .editIngredients {
  padding-top: 50px;
}
.formHolder .editInstruction {
  padding-top: 50px;
}
.formHolder .editRecipeBtn {
  margin: 0 auto;
  width: 400px;
  height: 35px;
  border: none;
  background-color: #EFA7A7;
  border-radius: 20px;
  margin-bottom: 60px;
  font-family: Caveat;
  font-size: 20px;
  box-shadow: 0px 7px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .formHolder {
    margin: 0 auto;
  }
}
.recipe-content,
.your-recipe-content {
  background-image: url(../img/recipe-hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100svh;
  max-width: 100%;
  font-family: CaveatBold;
  font-size: 30px;
}
.recipe-content .recipe-title p,
.your-recipe-content .recipe-title p {
  padding-top: 130px;
  text-align: center;
}
.recipe-content .row,
.your-recipe-content .row {
  display: grid;
  grid-template-columns: repeat(2, auto); /* Adjust the number of columns as needed */
  place-items: center;
}
.recipe-content .row .recipe-food,
.your-recipe-content .row .recipe-food {
  display: flex;
  padding: 30px;
}
.recipe-content .row .recipe-food img,
.your-recipe-content .row .recipe-food img {
  height: 300px;
  width: 350px;
  border-radius: 20px;
}
.recipe-content .row .recipe-food .ingredients-direction,
.your-recipe-content .row .recipe-food .ingredients-direction {
  width: 244px;
  background-color: white;
  border-radius: 20px;
}
.recipe-content .row .recipe-food .ingredients-direction .title-underline,
.your-recipe-content .row .recipe-food .ingredients-direction .title-underline {
  border-bottom: 5px solid black;
  width: 130px;
  margin: auto;
}
.recipe-content .row .recipe-food .ingredients-direction p,
.your-recipe-content .row .recipe-food .ingredients-direction p {
  font-family: LatoReg;
  font-size: 11px;
  padding: 30px 20px 0px;
}
.recipe-content .row .recipe-food .ingredients-direction h2,
.your-recipe-content .row .recipe-food .ingredients-direction h2 {
  font-size: 20px;
  font-family: LatoReg;
  text-align: center;
  padding-top: 23px;
}
.recipe-content .row .recipe-food .ingredients-direction h2:hover,
.your-recipe-content .row .recipe-food .ingredients-direction h2:hover {
  color: #FFD972;
  cursor: pointer;
}
.recipe-content .row .recipe-food .ingredients-direction .icon,
.your-recipe-content .row .recipe-food .ingredients-direction .icon {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  height: 44px;
}
.recipe-content .row .recipe-food .ingredients-direction .icon img,
.your-recipe-content .row .recipe-food .ingredients-direction .icon img {
  width: 30px;
  height: auto;
}
.recipe-content .row .recipe-food .ingredients-direction .icon .minutes,
.your-recipe-content .row .recipe-food .ingredients-direction .icon .minutes {
  font-family: LatoReg;
  padding: 20px;
}
.recipe-content .row .recipe-food .ingredients-direction .icon .servings,
.your-recipe-content .row .recipe-food .ingredients-direction .icon .servings {
  font-family: LatoReg;
  padding: 20px;
}

@media only screen and (max-width: 1100px) {
  .recipe-content .row, .your-recipe-content .row {
    grid-template-columns: repeat(1, 1fr); /* Change to one column when viewport width is 1000px or less */
  }
}
@media only screen and (max-width: 650px) {
  .recipe-content .row .recipe-food, .your-recipe-content .row .recipe-food {
    display: flex;
    flex-direction: column;
  }
  .recipe-content .row .recipe-food img, .your-recipe-content .row .recipe-food img {
    width: 200px;
    height: 150px;
  }
  .recipe-content .row .recipe-food .ingredients-direction, .your-recipe-content .row .recipe-food .ingredients-direction {
    width: 200px;
    min-height: 150px;
    font-size: 11px;
  }
  .recipe-content .row .recipe-food .ingredients-direction p, .your-recipe-content .row .recipe-food .ingredients-direction p {
    font-size: 9px;
  }
  .recipe-content .row .recipe-food .ingredients-direction h2, .your-recipe-content .row .recipe-food .ingredients-direction h2 {
    font-size: 14px;
  }
}
.ingredients-content {
  padding: 150px 25px;
}
.ingredients-content .food-information {
  display: flex;
  max-width: 100%;
}
.ingredients-content .food-information .food-title {
  display: flex;
}
.ingredients-content .food-information .food-title p {
  font-size: 25px;
  font-family: LatoReg;
  text-orientation: sideways-right;
  writing-mode: vertical-rl;
  text-align: center;
}
.ingredients-content .food-information img {
  max-width: 100%;
  height: 450px;
}
.ingredients-content .food-information .descriptions {
  max-width: 550px;
  font-family: LatoReg;
  padding: 25px;
}
.ingredients-content .food-information .descriptions .description-title {
  font-size: 32px;
}
.ingredients-content .food-information .descriptions .description-paragraph {
  font-size: 17px;
  line-height: 2;
}
.ingredients-content .food-information .descriptions .time {
  font-size: 20px;
}
.ingredients-content .food-information .descriptions .hours-minutes {
  font-size: 20px;
}
.ingredients-content .food-information .descriptions .servings {
  font-size: 20px;
  font-family: LatoBlack;
}
.ingredients-content .food-information .descriptions .servings .serving-amount {
  font-size: 20px;
  font-family: CaveatRegular;
}
.ingredients-content .ingredients, .ingredients-content .instructions {
  max-width: 825px;
  margin-top: 44px;
  margin-left: 20px;
}
.ingredients-content .grid-container {
  display: grid; /* Enable grid layout */
  grid-template-rows: 1fr 1fr; /* Create two equal columns */
  gap: 20px; /* Space between the columns */
  max-width: 100%; /* Ensure it doesn't exceed the container width */
  margin-top: 44px; /* Add margin to the top of the grid container */
}
.ingredients-content .grid-container .ingredients {
  font-size: 25px;
  font-family: LatoReg;
}
.ingredients-content .grid-container .ingredients .ingredients-instructions {
  font-size: 20px;
  font-family: CaveatRegular;
}
.ingredients-content .grid-container .instructions {
  font-size: 25px;
  font-family: LatoReg;
}
.ingredients-content .grid-container .instructions .cooking-instructions {
  font-size: 20px;
  font-family: CaveatRegular;
}
.ingredients-content .edit-recipe-button-container {
  display: flex;
  align-items: center;
  justify-content: start;
}
.ingredients-content .edit-recipe-button-container .edit-recipe-button, .ingredients-content .edit-recipe-button-container .delete-recipe-button {
  font-family: CaveatRegular;
  height: 45px;
  width: 190px;
  margin: 10px;
  cursor: pointer;
}
.ingredients-content .edit-recipe-button-container .edit-recipe-button {
  background-color: #daa104;
}
.ingredients-content .edit-recipe-button-container .delete-recipe-button {
  background-color: #a12121;
}
.ingredients-content .edit-recipe-button-container .edit-recipe-button p {
  margin-top: 15px;
}

@media only screen and (max-width: 900px) {
  .ingredients-content .food-information {
    display: block;
  }
  .ingredients-content .food-information .food-title p {
    display: block;
    text-orientation: upright;
    writing-mode: horizontal-tb;
  }
  .ingredients-content .food-information img {
    height: 300px;
  }
  .ingredients-content .ingredients, .ingredients-content .instructions {
    max-width: 550px;
  }
}

/*# sourceMappingURL=styles.css.map */
