body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    
}

main {
    overflow-x: hidden;
    background-color: #FDDADA;
    max-width: 100%;
    margin: 0;
}

h1 {
    font-size: 48px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

footer {
    font-family: Arial;
}

.hero-section {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0; /* Remove default body padding */
}

#globalHeader {
    transition: top 1s ease,/* slide animation */ opacity 1s ease; /* fade animation */
}

#globalHeader.hidden {
    opacity: 0;
}

.header {
    background-color: transparent;
    top: 0;
    max-height: 140px;
    height: 100%;
    width: 100vw;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
}

.header2 {
    position: fixed;
    top: 0;
    width: 100%;
    max-height: 140px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F40704; /* start transparent */
    opacity: 1;
    transition: top 0.5s ease,/* slide animation */ opacity 0.5s ease;/* fade animation */
    z-index: 1000;
}

/* When header is hidden (scrolling down) */
.header2.hidden {
  top: -150px; /* match your header height */
  opacity: 0;  /* fade out */
}

/* When header is visible after scrolling up */
.header2.visible {
  background-color: #F40704; /* red when scrolling up */
}

.header-logo {
    width: 400px;
    height: 140px;
    cursor: pointer;
}

header.hidden {
  top: -1000px; /* move it off screen */
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    width: 100vw;
    height: 120px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-left: 2px solid white;
    height: 140px;
    width: 260px;
    cursor: pointer;
}

.nav-item:hover {
    text-decoration: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 175px;
    flex-direction: column;
    padding-inline: 60px;
}

.hero-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin-bottom: -160px;
}

.hero-text{
    text-align: center;
    font-size: 18px;
    max-width: 950px;
}

.special-offers-section{
    height: 700px;
}    

.special-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
}

.special-subheading {
    margin-top: -20px;
    max-width: 710px;
    text-align: center;
    font-size: 18px;
}

.special-offers {
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 150px;
}

.rectangle {
    display: flex;
    flex-direction: column; 
    align-items: center;
    height: 370px;
    width: 320px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.5);
}

.special-img-grid {
    display: flex;
    justify-content: center;
    border-radius: 12px;
}

.special-img {
    height: 225px;
    width: 320px;
    border-radius: 12px;
}

.special-dish-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.special-button{
    background-color: #F40704;
    border: 1px solid #F40704;
    border-radius: 100px;
    width: 90px;
    padding-block: 5px;
    color: white;
    font-size: 16px;
    margin-bottom: -5px;
    cursor: pointer;
}

.special-button:hover {
    background-color: transparent;
    transition: 0.3s ease;
    color: #F40704;
}

.special-dish-price {
    font-size: 18px;
}

.menu-section {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 110vh;
}

.menu-title {
    display: none;
}

a.menu-link  {
    display: block;
    text-decoration: none; /* optional — remove underline */
    color: inherit; /* keep text color same as before */
    width: 20vw;
}

.top5menus, .bottom5menus {
    width: 100vw;
    display: flex;
    height: 50vh;
}

.bottom5menus {
    gap: 5vw;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 20vw;
    background-image: url('images/menu1.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.menu2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 20vw;
    background-image: url('images/menu2.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.menu3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 20vw;
    background-image: url('images/menu3.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.menu4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 20vw;
    background-image: url('images/menu4.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.menu5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 20vw;
    background-image: url('images/menu5.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.menu6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 25vw;
    background-image: url('images/menu6.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.menu7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 25vw;
    background-image: url('images/menu7.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.menu8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 25vw;
    background-image: url('images/menu8.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.menu9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 50vh;
    height: 100%;
    width: 25vw;
    background-image: url('images/menu9.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.bn {
    color: #F40704;
    background-color: white;
    font-size: 18px;
    margin-bottom: -5px;
}

.menu-name {
    font-size: 24px;
}

.about-us-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    height: auto;
    padding-inline: 13vw;
    padding-block: 40px;
}

.aboutus-content {
    display: flex;
    gap: 200px;
}

.about-main-img {
    display: flex;
    justify-content: center;
    background-image: url('images/teamphoto.jpg');
    background-position: center; /* Centers both horizontally and vertically */
    background-repeat: no-repeat;
    width: 700px;
    height: 500px;
    margin-bottom: 105px;
}

.about-us-sub-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-right: 10px;
    gap: 350px;
}

.about-subimg {
    width: 300px;
    height: 180px;
    border-radius: 12px;
}

.aboutus-text {
    max-height: 270px;
    height: auto;
    text-wrap: wrap;
}

.aboutus-btn {
    background-color: #F40704;
    border: 2px solid #F40704;
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.aboutus-btn:hover {
    background: transparent;
    transition: 0.3s ease;
    color: #F40704;
}

.social-media-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 850px;
    height: 100%;
    background-color: #f9f9f9;
}

.sc-title {
    padding-bottom: 30px;
}

.sc-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 470px;
    height: 100%;
    gap: 3.125vw;
    padding-bottom: 100px;
}

.sc-card-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.167vw;
}

.sc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: #D9D9D9;
    height: 470px;
    width: 330px;
}

.sc-image {
    position: absolute;
    z-index: 2;
    background-image: url('images/placeholder.jpg');
    background-size: cover;
    background-position: center;
    max-height: 330px;
    max-width: 330px;
    height: 100%;
    width: 100%;
    order: 1;
}

.sc-text {
    max-width: 280px;
    position: absolute;
    z-index: 2;
    bottom: -2px;
}

#sc-chevron-right, #sc-chevron-left {
    cursor: pointer;
}

#sc-chevron-right:hover, #sc-chevron-left:hover {
    color: #F40704;
}

/* About Us Page */

.values-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 30px 130px;
}

.value-textbox {
    max-width: 725px;
    width: 100%;
}

.value-title {
    font-size: 48px;
    margin-top: 0px;
    margin-bottom: 50px;
}

.value-img {
    max-width: 390px;
    max-height: 295px;
    height: 100%;
    width: 100%;
    border: 2px solid #F40704;
    border-radius: 12px;
}

#pad-img {
    margin-right: 23px;
    margin-left: 120px;
}

#pad-img2 {
    margin-right: 23px;
    margin-top: 23px;
    margin-left: 120px;
}

.team-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-title {
    font-size: 48px;
}

.team-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    gap: 25px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-photo {
    width: 330px;
    height: 330px;
    border-radius: 999px;
}

.team-name {
    font-size: 24px;
    margin-bottom: -5px;
}

.team-role {
    font-size: 18px;
    color: #F40704;
}

#absc {
    cursor: pointer;
}

#absc:hover {
    color: #F40704;
}

.faq-section {
    background-color: #f9f9f9;
    padding-top: 1px;
    padding-bottom: 50px;
}

.faq-content {
    display: flex;
    gap: 13.542vw;
    flex-wrap: wrap;
}

.faq-grid {
    display: flex;
    grid-template-columns: auto 1fr;
}

.faq-title {
    font-size: 48px;
    padding-left: 50px;
}

.faq {
    display: flex;
    align-items: center;
    background-color: #fbb4b3;
    max-width: 640px;
    width: 35vw;
    height: 65px;
    border: 2px solid #fbb4b3;
    border-radius: 12px;
    padding-right: 20px;
    margin-left: 110px;
    margin-bottom: 7px;
    cursor: pointer;
}

.faq-question {
    padding-left: 20px;
    padding-right: 375px;
    color: #F40704;
    font-size: 18px;
}

.faq-text {
    display: none;
    background-color: #fbb4b3;
    max-width: 640px;
    width: 35vw;
    border-top: 2px solid;
    margin-left: 110px;
    padding-left: 20px;
    padding-block: 10px;
    padding-right: 4px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-bottom: 7px;

}

.faq-desc {
    text-wrap: wrap;
}

#chevron-faq1, #chevron-faq2, #chevron-faq3, #chevron-faq4, #chevron-faq5,
#chevron-faq6, #chevron-faq7, #chevron-faq8, #chevron-faq9, #chevron-faq10,
#chevron-faq11, #chevron-faq12, #chevron-faq13, #chevron-faq14, #chevron-faq15,
#chevron-faq16 {
    color: #F40704;
}

#faq-pad {
    margin-bottom: 50px;
}
/* Menu Page */
.menu-grid {
    display: flex;
    flex-direction: column;
    width: 100vw;
    align-items: center;
}

.menu-textbox {
    display: flex;
    gap: 35px;
    padding-top: 60px;
    padding-inline: 60px;
    z-index: 2000;
}

.menu-filters {
    display: flex;
    gap: 35px;
}

.menutype-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    width: auto;
    font-size: 16px;
    color: black;
}


.menutype-btn:hover {
    color: #F40704;
    text-decoration: underline;
}


#search-box {
    background-color: transparent;
    border-top: none;
    border-inline: none;
    border-color: black;
    width: 515px;
    color: black;
    margin-left: 20vw;
}

#search-box::placeholder {
    color: #49454F;
}

.menu-content {
    display: flex;
    gap: 150px;
    padding-top: 100px;
}

.menu-food-img {
    height: 443px;
    width: 770px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 630px;
}

.menu-item-box {
    display: flex;
    align-items: left;
    margin-right: 531px;
}

.menuname {
    font-size: 24px;
    margin-top: -30px;
}

.menu-item-content {
    display: flex;
    position: relative;
    background-color: transparent;
    padding-bottom: 20px;
    margin-top: -10px;
    overflow: hidden;
    text-decoration: none;
    width: 600px;
}

.menu-item-content:hover {
    cursor: pointer;
    background: linear-gradient(135deg, #FDDADA 0%, #F8BABA 100%);
}

.menu-item-img {
    height: 100px;
    width: 110px;
    border-radius: 15px;
}

.text-row1 {
    display: flex;
    gap: 200px;
    margin-bottom: -15px;
    padding-left: 23px;
}

#textrow2 {
    gap: 180px;
}

#textrow3, #textrow12, #textrow13, #textrow15, #textrow17, #textrow18, #textrow19, #textrow22, #textrow29 {
    gap: 150px;
}

#textrow14, #textrow16 {
    gap: 100px;
}

#textrow28 {
    gap: 60px;
}

.dishname-price {
    font-size: 20px;
    color: #F40704;
    text-wrap: nowrap;
}

.dish-desc {
    padding-left: 23px;
    opacity: 80%;
    color: black;
}

#items-pages9 {
    padding-bottom: 50px;
}

.menu-chevron, .circle-menu, .fa-circle {
    cursor: pointer;
    color: #bfbbbb;
}

.menu-chevron:hover, .circle-menu:hover {
    color: #F40704;
}

.fa-circle:hover {
    color: #F40704;
}
/* Gallery Page */

.gallery-hero-section {
    background-color: #F40704;
    margin-bottom: 90px;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 180px;
    padding-bottom: 90px;
    max-width: 1860px;
}

/* Hover effect */
.gallery-image {
    object-fit: cover;
    width: 400px;
    height: 500px;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Hide element when 'hidden' is present */
.lightbox[hidden] {
    display: none !important;
}

/* Lightbox base style (only visible when not hidden) */
.lightbox {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox.show {
    opacity: 1;
    pointer-events: auto;
}


/* Image in lightbox */
.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
}

/* Navigation arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.3s;
}

.nav-btn:hover {
    color: #F40704;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
} 

@media (max-width: 1559px) {
    .gallery-section {
        padding-bottom: 180px;
    }
}

/* Footer Section */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F40704;
    padding-block: 50px 5px;
}

.footer-content {
    border: 1px solid white;
    height: auto;
    width: 1335px;
    padding-block: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 250px;
    padding-bottom: 30px;
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 155px;
}

.footer-nav-item {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.footer-nav-item:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 430px;
    height: 300px;
    margin-top: -50px;
    margin-bottom: -100px;
    margin-left: 30px;
}

.footer-logo-div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.personal-branding {
    color: white;
    font-size: 18px;
    padding-top: 10px;
    text-align: center;
}

.hamburger-menu {
    cursor: pointer;
    background-color: transparent;
    border: none;
}

#hamburger-menu-content {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: #F40704;
    gap: 60px;
}

.x {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100vw;
    margin-top: -400px;
    padding-right: 30px;
    color: white;
}

#x-container {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-top: 200px;
    margin-bottom: 100px;
    margin-right: 100px;
    width: 0px;
}

.hamburger-menu-item {
    color: white;
    font-size: 32px;
    text-decoration: none;
}

.hamburger-menu-item:hover {
    text-decoration: underline;
}

@media (max-width: 1915px) {
    .values-section {
        flex-direction: column;
        gap: 50px;
        padding: 70px;
    }

    .value-images {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1.042vw;
        width: 100%;
    }

    .value-title, .value-text {
        text-align: center;
    }

    #pad-img, #pad-img2 {
        margin: 0;
    }
}

@media (max-width: 1810px) {
    .sc-content {
        gap: 2vw;
    }

    .sc-card-grid {
        gap: 2vw;
    }
}

@media (max-width: 1774px) {
    .faq {
        width: 32vw;
        height: 4.167vw;
    }

    .faq-text {
        width: 32vw;
    }

    #search-box {
        margin-left: 25vw;
    }
}

@media (max-width: 1762px) {
    #search-box {
        margin-left: 15vw;
    }
}

@media (max-width: 1660px) {
    #search-box {
        width: 23vw;
    }
}

@media (max-width: 1641px) {
    .sc-content {
        padding-inline: 40px;
    }

    .sc-card-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 1589px) {
    .text-row1 {
        gap: 15vw;
    }

    .menu-food-img {
        padding-left: 20px;
    }
}

@media (max-width: 1573px) {
    .about-us-section {
        padding-block: 0px;
    }
    .aboutus-content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 50px;
        margin-top: -40px;
    }

    .about-us-sub-images {
        margin-left: 10px;
    }

    .aboutus-textbox {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0px;
    }
}

@media (max-width: 1545px) {
    .faq {
        height: 100px;
        width: 30vw;
    }    

    .faq-question {
        padding-right: 190px;
    }

    .faq-text {
        width: 30vw;
    }
}

@media (max-width: 1520px) {
    .menu-content {
        flex-direction: column; 
        align-items: center;
    }

    .menu-food-img {
        padding: 0;
    }

    .menu-item-box {
        margin-right: 0px;
        margin-top: -50px;
        padding-bottom: 50px;
    }

    .text-row1 {
        gap: 250px;
    }
}

@media (max-width: 1444px) {
    #search-box {
        width: 15vw;
    }
}

@media (max-width: 1352px) {
    .footer-content {
        width: 90vw;
    }
}

@media (max-width: 1298px) {
    .special-offers {
        gap: 45px;
    }
}

@media (max-width: 1289px) {
    nav {
        display: none;
    }

    header {
        padding-inline: 30px;
        gap: 50vw;
    }

    .header-logo {    
        padding-right: 0px;
    }

    .hamburger-menu {
        padding-left: 0px;
    }
}

@media (max-width: 1232px) {
    .menu-textbox {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #search-box {
        margin-left: 0px;
        width: 400px;
    }
} 

@media (max-width: 1169px) {
    .special-offers-section {
        height: auto;
    }

    .special-offers {
        align-items: center;
        flex-direction: column;
        gap: 0px;
        padding-top: 0px;
    }

    .special-img {
        width: 100vw;
        height: 400px;
    }
 
    .rectangle {
        width: 100vw;
        height: auto;
        box-shadow: 0px 0px 0px;
    }

    .menu-section {
        height: 4275px;
        width: 100vw;
    }

    .menu-title {
        display: flex;
        align-self: center;
        padding-block: 30px;
    }

    .top5menus {
        margin-bottom: 1822px;
    }

    .bottom5menus {
        gap: 0vw;
    }

    .top5menus, .bottom5menus {
        flex-direction: column;
    }

    .menu, .menu2, .menu3, .menu4, .menu5, .menu6, .menu7, .menu8, .menu9 {
        width: 100vw;
        height: 80vh;
        border-radius: 12px;
    }

    .aboutus-content {
        margin-top: 50px;
    }

    .footer-nav {
        gap: 15vw;
    }

    .footer-info {
        gap: 15vw;
    }
}

@media (max-width: 1034px) {
    .menu-filters {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding-bottom: 10px;
    }
}

@media (max-width: 1014px) {
    .faq-section {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .faq-content {
        flex-direction: column;
        align-items: center;
    }

    .faq {
        margin-left: 0px;
        width: 80vw;
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: center; 
        padding: 0;
        text-align: center;
    }

    .faq-text {
        width: 80vw;
        margin-left: 0px;
        padding-left: 0px;
    } 

    .faq-title {
        padding-left: 0px;
        padding-bottom: 30px;
    }

    .faq-desc {
        text-align: center;
        padding-inline: 20px;
    }

    #chevron-faq1, #chevron-faq2, #chevron-faq3, #chevron-faq4, #chevron-faq5, #chevron-faq6, #chevron-faq7, #chevron-faq8, #chevron-faq9, #chevron-faq10, #chevron-faq11, #chevron-faq12, #chevron-faq13, #chevron-faq14, #chevron-faq15, #chevron-faq16 {
        display: none;
    }
}

@media (max-width: 972px) {
    .about-main-img {
        width: 90vw;
        background-size: cover; 
        background-repeat: no-repeat;
        background-position: center;
    }

    .about-subimg {
        display: none;
        gap: 0px;
    }
}

@media (max-width: 936px) {
    .footer-nav {
        gap: 10vw;
    }
    .footer-info {
        gap: 10vw;
    }
}

@media (max-width: 885px) {
    .hero-content {
        gap: 5vh;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 840px) {
    .footer-nav {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 10px;
    }

    .footer-info {
        flex-direction: column;
        gap: 0px;
    }
}

@media (max-width: 810px) {
    header {
        gap: 35vw;
    }

    .hamburger-menu {
        margin-left: -5px;
    }

    
}

@media (max-width: 788px) {
    .hero-content {
        justify-content: center;
    }
    .hero-image {
        width: 100vw;
        height: auto;
    }

    .hero-text {
        padding-top: 30px;
    }

    .menu-food-img { 
        width: 100vw;
    }
}

@media (max-width: 730px) {
    .hero-image {
        min-width: 600px;
        margin-left: 50px;
    } 

    .special-subheading {
        font-size: 16px;
        padding-inline: 20px;
    }

    .menu, .menu2, .menu3, .menu4, .menu5 {
        height: 100vh;
    }
}

@media (max-width: 732px) {
    .team-name {
        font-size: 20px;
    }

    .team-photo {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 663px) {
    .faq-title {
        font-size: 36px;
    }

    .faq {
        height: auto;
    }
}

@media (max-width: 620px) {
    header {
        gap: 20vw;
    }

    .menu-item-content {
        width: 80vw;
    }

    .text-row1, #textrow2, #textrow12, #textrow13, #textrow14, #textrow15, #textrow16, #textrow19, #textrow22, #textrow29 {
        gap: 10vw;
    }

    #textrow3, #textrow9, #textrow17, #textrow18, #textrow28 {
        gap: 5px;
    }
}

@media (max-width: 602px) {
    .text-row1, #textrow2, #textrow13, #textrow19, #textrow22, #textrow29 {
        gap: 10vw;
    }

    #textrow12, #textrow14, #textrow15, #textrow16 {
        gap: 3px;
    }

    #textrow28 {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
}

@media (max-width: 580px) {
    .sc-title {
        font-size: 36px;
    }

    .about-main-img {
        width: 100vw;
        height: 50vh;
    }

    .aboutus-textbox {
        padding: 0px 30px;
    }

    .sc-content {
        padding-inline: 60px;
    }

    #sc-chevron-left, #sc-chevron-right {
        display: none;
    }
}

@media (max-width: 542px) {
    .text-row1, #textrow2, #textrow3, #textrow12, #textrow13, #textrow15, #textrow17, #textrow18, #textrow19, #textrow22, #textrow29, #textrow14, #textrow16, #textrow28  {
        flex-direction: column;
        gap: 0px;
    }  

}

@media (max-width: 500px) {
    header {
        gap: 10vw;
        padding-inline: 40px;
    }

}

@media (max-width: 450px) {
    header {
        gap: 5vw;
    }

    .header-logo {
        width: 350px;
        height: auto;
        padding-right: 50px;
    }

    .hero-image {
        min-width: 500px;
        height: 400px;
    }

    #mainpg-ab-content {
        margin-top: 0px;
}
