/* styles.css */
@font-face {
    font-family: 'Heavitas';
    src: url('../fonts/heavitas.ttf') format('truetype'); /* Adjust the path based on your structure */
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: motor, monospace;
font-style: normal;
font-weight: 400;
    
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; /* Hides horizontal overflow */
    
}

.catering-header{
    font-size: 50px;
    
    margin-top: 60px;
    justify-content: center !important;

    
}

.catering-header-right{
    text-align: right;
    justify-content: center !important;
    width: 50%;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bolder;
    letter-spacing: 4px;
}

.catering-header-right a{
    color: #000;
    text-underline-offset: 3px;
}
.catering-header-right a:hover{
    color: #7c7979;
    
    
}

.catering-header-left{
    text-align: left;
    justify-content: center !important;
    width: 50%;
    padding: 10px;
    font-size: 1.6rem;
    font-weight: bolder;
    letter-spacing: 4px;
}
.catering-header-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    
}


.contact-header{
    font-size: 50px;
    
    margin-top: 60px;
    justify-content: center !important;
    text-align: right;

    
}

.catering-contact-container{
    justify-content: center;
    text-align: right;
}

.menu-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 10px;
    background-color: #fff;
    /* border-radius: 8px;
    border: 2px solid #ddd; */
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-category {
  flex: 0 0 100%;
  box-sizing: border-box;
  margin-bottom: 40px;
  
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.menu-category h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
    border-bottom: 2px solid #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    
}

.menu-item {
    
    flex-direction: row;
    padding: 10px;
    letter-spacing: 2px;
    width: 100%;
    
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name-price {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-description {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    text-align: left; /* Ensures alignment matches the text in the item */
    font-weight: lighter !important;
}

.item-name {
    font-weight: 600;
    color: #000;
}

.item-name-viet {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    font-weight: 400;
    font-family: "Tai Heritage Pro", serif;
  font-weight: 700;
  letter-spacing: none;
    
}

.item-price {
    font-weight: 600;
    color: #444;
}
.test-logo img{
    width: 70%;  /* Adjusts width to fit the container */
  height: 600px; /* Fixed height */
  object-fit:fill;/* Ensures images maintain aspect ratio and fill the space */
  display: block; /* Removes bottom spacing from inline images */
  margin: auto; /* Centers images */
}

@media screen and (max-width: 768px) {
    .menu-items {
        justify-content: center; /* Center all items in the container */
    }

    .menu-item {
        flex: 0 0 calc(50% - 20px); /* Adjust width for smaller screens */
        margin: 0 auto; /* Center individual items */
        text-align: center; /* Center text content inside each item */
        letter-spacing: 1.2px;
    }

    .test-logo img{
        width: 100%;  /* Adjusts width to fit the container */
      
    }

    .item-name-viet {
        font-size: 0.2rem;
        letter-spacing: none;
    }
    
    .item-name {
    font-weight: 600;
    color: #000;
    font-size: 0.85rem;
}

.menu-extras {
    
    font-size: 0.8rem;
    
}

.protein-options {
    
    font-size: 0.8rem;
}

.soup-toppings {
    
    font-size: 0.8rem;
}

}

@media screen and (max-width: 580px) {
    .item-name-viet {
        font-size: 0.67rem;
        letter-spacing:none;
        
    }

    .item-name {
    display: flex;
    flex-direction: column;
    font-size: 0.76rem;
}

    .menu-items {
        justify-content: center; /* Center all items in the container */
    }

    .menu-item {
        flex: 0 0 100%; /* Make items full-width */
        margin: 0 auto; /* Center individual items */
        text-align: left; /* Center text content inside each item */
        letter-spacing: 1px;
        font-size: 1.2rem;

    }

    .menu-container{
        margin: 0px;
        gap:0px;
        padding:0px !important;
        
    }

    .menu-category{
        margin-left: 5px;
        margin-right: 5px;
    }

    .catering-header-container{
        margin-top:100px;
        display:flex;
        flex-direction: column;
        justify-content: center;
        
        
    }

    .test-logo img{
        width: 100%;  /* Adjusts width to fit the container */
      
    }

    .catering-header-left{
    text-align: center;
    justify-content: center !important;
    width: 100%;
    padding: 0px;
    font-size: 1.2rem;
    font-weight: bolder;
    letter-spacing: 4px;
    margin-bottom: 20px;
    }

    .catering-header-right{
    text-align: center;
    justify-content: center !important;
    width: 100%;
    padding: 0px;
    font-size: 0.9rem;
    font-weight: bolder;
    letter-spacing: 4px;
    }

    .item-name-divider{
        display: none;
    }

    .item-price{
        display: flex;
        flex-direction: column;
        font-size: 0.8rem;
        
    }
}


@media screen and (min-width: 769px) and (max-width: 1044px) {

    .item-name-viet {
        font-size: 0.67rem;
        letter-spacing:none;
        
    }

    .menu-items {
        justify-content: center; /* Center all items in the container */
    }

    .menu-item {
        flex: 0 0 100%; /* Make items full-width */
        margin: 0 auto; /* Center individual items */
        text-align: center; /* Center text content inside each item */
        letter-spacing: 1.3px;
    }

    .test-logo img{
        width: 100%;  /* Adjusts width to fit the container */
      
    }

}

@media screen and (min-width: 1921px) {
    
    .test-logo img{
    width: 55%;  /* Adjusts width to fit the container */
  height: 600px; /* Fixed height */
  object-fit:fill;/* Ensures images maintain aspect ratio and fill the space */
  display: block; /* Removes bottom spacing from inline images */
  margin: auto; /* Centers images */
}





    

}


.menu-extras {
    margin-top: 40px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.protein-options {
    font-weight: bold;
    color: #000;
}

.soup-toppings {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}




@media screen  and (max-width: 400px) {

    /* .item-name-viet {
        font-size: 0.6rem;
        
    }
    .item-name{
        font-size:0.5rem;
    } */
    .menu-items {
        justify-content: center; /* Center all items in the container */
    }

    

    .test-logo img{
        width: 100%;  /* Adjusts width to fit the container */
      
    }

}



@media screen and (max-width: 768px) {
    .item-name-viet {
        font-size: 0.67rem;
        letter-spacing:none;
        
    }

    .item-name {
    display: flex;
    flex-direction: column;
    font-size: 0.76rem;
}

    .menu-items {
        justify-content: center; /* Center all items in the container */
    }

    .menu-item {
        flex: 0 0 100%; /* Make items full-width */
        margin: 0 auto; /* Center individual items */
        text-align: left; /* Center text content inside each item */
        letter-spacing: 1px;
        font-size: 1.2rem;

    }

    .menu-container{
        margin: 0px;
        gap:0px;
        padding:0px !important;
        
    }

    .menu-category{
        margin-left: 5px;
        margin-right: 5px;
    }

    .catering-header-container{
        margin-top:100px;
        display:flex;
        flex-direction: column;
        justify-content: center;
        
        
    }

    .test-logo img{
        width: 100%;  /* Adjusts width to fit the container */
      
    }

    .catering-header-left{
    text-align: center;
    justify-content: center !important;
    width: 100%;
    padding: 0px;
    font-size: 1.2rem;
    font-weight: bolder;
    letter-spacing: 4px;
    margin-bottom: 20px;
    }

    .catering-header-right{
    text-align: center;
    justify-content: center !important;
    width: 100%;
    padding: 0px;
    font-size: 0.9rem;
    font-weight: bolder;
    letter-spacing: 4px;
    }

    .item-name-divider{
        display: none;
    }

    .item-price{
        display: flex;
        flex-direction: column;
        font-size: 0.8rem;
        
    }
}


@media screen and (min-width: 920px) and (max-width: 1279px) {
    footer {
        margin-top: 0px !important;
    }
}