@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=New+Amsterdam&display=swap');
html {
    background-color: #FDF1E1;
}
.title {
    color: #8B5E47;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    text-align: center;
}
.sec {
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-style: italic;
}
.navItem{
    color: #4E3629;
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    padding-left: 5px;
    transition: all 0.5s ease-in-out;
}
.navItem:hover {
    background-color: #F7C9D2;
}
.callToAct{
    text-align: center;
}
.actButton{
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    background-color: #F7C9D2;
    color: #4E3629;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}
.actButton:hover{
    font-size: 40px;
    background-color: #D3A489;
    cursor: pointer;
}
.subTitle {
    color: #8B5E47;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 75px;
    text-align: center;
    padding-top: 100px;
}
.section02 {
    margin: 1rem;
    padding: 2rem 2rem;
    text-align: center;
  }
  .menuOpt {
    display: inline-block;
    border: 4px solid #F7C9D2 ;
    background-color: #D3A489;
    padding: 1rem 1rem;
    vertical-align: middle;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
  }
  .menuOpt:hover {
    background-color: #FDF1E1;
    cursor: pointer;
  }
  .bodyText {
    color: #4E3629;
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
  }
  .buttonOpt{
    margin: 1rem;
    padding: 2rem 2rem;
    text-align: center;
  }
  .optButton {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    background-color: #F7C9D2;
    color: #4E3629;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
  }
  .optButton:hover {
    background-color: #D3A489;
    font-size: 22px;
    cursor: pointer;
  }
  .recipeSection {
    padding-left: 20px;
    padding-right: 50px;
  }
  .topInfo {
    text-align: center;
  }
  .footerSection {
    display: flex;
    flex-direction: column;
    padding: 20px;

  }
  .footerItems {
display: flex;
flex-direction: row;
justify-content: center;
  }
  footer {
    background-color: #D3A489;
  }
  .footItem {
    color: #4E3629;
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    transition: all 0.5s;
  }
  .footItem:hover{
    background-color: #FDF1E1;
  }
  .copyright {
    color: #4E3629;
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    padding: 20px;
  }
  .aboutText {
    color: #8B5E47;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-family: "New Amsterdam", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 35px;
    color: #8B5E47;
    text-align: center;
  }

  .faq-item {
    margin-bottom: 20px;
  }

  .faq-question {
    cursor: pointer;
    color: #8B5E47;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
    transition: all 0.5s;
  }
  .faq-question:hover {
    background-color: #F7C9D2;
    border-radius: 20px;
  }
  .form {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
  }
  form {
    background-color: #F7C9D2;
    width: 500px;
    padding: 20px;
    border-radius: 20px;
    border: #4E3629;
    border-width: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 1s;
  }
  form:hover {
    width: 550px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  }
  .formItem {
    background-color: #FDF1E1;
    color: #4E3629;
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    border-radius: 10px;
  }