
          /*---------screen size: desk top-----------*/

@media only screen and (min-width:1024px){

body {
  font-family: 'Lora', serif;
  color: #2b2b2b;
  background-color: #FAF8F3;
  margin: 0;
  padding: 0;
  width: 100%;
}

/*navigation*/
.nav-container{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    width: 100%;
    box-sizing: border-box;
    background-color: #F1EDE4;
}

.site-id{
    display:flex;
    flex-direction: row;
    align-items: center;
    gap: 16px ;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px; 
}

.menu-items{
  display: flex;
  gap: 16px;
}

.menu-icon{
  display: none;
}
/*navigation end*/

/*item containers*/
.item-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  padding: 1.5%;
  gap: 16px;
}

.item-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  width:100%;
  background-color: #F1EDE4;
  border-radius: 0.5rem;
}

.item-container-2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  width:100%;
  background-color: #F1EDE4;
  border-radius: 0.5rem;
}

.item-image {
  width: 40%;
  height: auto;
  border-radius: 0.5rem;
}

.item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.item-name-description {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
/*item containers end*/

/*text styling*/
.wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: #2f3d30; 
}

.menu-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #2f3d30;
  cursor: pointer;
}

.menu-item:hover {
  color: #d97b33;
  transition: color 0.3s ease;
}

.cta {
  background-color: #d97b33;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.cta:hover {
  background-color: #b65e19;
}

.item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2F3D30;
  margin-bottom: 4px;
}

.item-description {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #2F3D30;
  line-height: 1.6;
}

.item-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2b2b2b;
}
/*text styling end*/

}



        /*---------------screen size: mobile----------*/
@media only screen and (max-width:1024px){

body {
  font-family: 'Lora', serif;
  color: #2b2b2b;
  background-color: #FAF8F3;
  margin: 0;
  padding: 0;
  width: 100%;
}

/*navigation*/
.nav-container{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    width: 100%;
    box-sizing: border-box;
    background-color: #F1EDE4;
}

.site-id{
    display:flex;
    flex-direction: row;
    align-items: center;
    gap: 16px ;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px; 
}

.menu-items{
  display: none;
}

.menu-icon{
  display: block;
}
/*navigation end*/

/*item containers*/
.item-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  padding: 1.5%;
  gap: 16px;
}

.item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  width:100%;
  background-color: #F1EDE4;
  border-radius: 0.5rem;
}

.item-container-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  width:100%;
  background-color: #F1EDE4;
  border-radius: 0.5rem;
}

.item-image {
 border-radius: 0.5rem;
 width: 100%;
 height: auto;
}

.item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}

.item-name-description {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
/*item containers end*/

/*text styling*/
.wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: #2f3d30; 
}

.menu-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #2f3d30;
  cursor: pointer;
}

.menu-item:hover {
  color: #d97b33;
  transition: color 0.3s ease;
}

.cta {
  background-color: #d97b33;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.cta:hover {
  background-color: #b65e19;
}

.item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2F3D30;
  margin-bottom: 4px;
}

.item-description {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #2F3D30;
  line-height: 1.6;
}

.item-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2b2b2b;
}
/*text styling end*/

}
