@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

                        /* :root will always go first ! */
:root {
    --orange:       #E87722;
    --orange-dark:  #CF6510;
    --orange-light: #FEF3E2;
    --teal:         #4E7F7F;
    --teal-dark:    #3A6060;
    --green:        #7CB98A;
    --gold:         #F0C07A;
    --spice-red:    #C03C1A;

    --bg-main:      #FFFDF9;
    --bg-cream:     #F8F6F0;
    --bg-mango:     #FEF3E2;
    --bg-mint:      #E8F5EE;

    --text-heading: #1A1A1A;
    --text-body:    #4A4A4A;
    --text-muted:   #888880;

    --border:       #E8E4DA;
}

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

html {
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-body);
    padding-top : 60px;
}

                        /* ============================================== NAVBAR   ============================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.7); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    transition: background-color 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 1em 2em;
    text-decoration: none;
    outline: none;
    margin-top: 1em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    background-color: var(--teal);       
    color: #FFFFFF;
    border: 2px solid var(--teal);
    border-radius: 30px;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease,
                transform 0.2s ease,
                box-shadow 0.3s ease;
}

.btn:hover {
    background-color: var(--teal-dark); 
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 127, 127, 0.35);
}



.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}


.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;  
    mix-blend-mode: multiply;
}

.menu-items {
    display: flex;
    align-items: center;

    list-style: none;
    gap: 2rem;
}

.menu-items li {
    margin-left: 0; 
}

.menu-items a {
    text-decoration: none;
    color: var(--text-heading);
    font-size: 1.8rem;   
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated underline on hover */
.menu-items a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--orange);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.menu-items a:hover {
    color: var(--orange);
}

.menu-items a:hover::after {
    width: 70%;
}


.menu-items a.nav-cta {
    background-color: var(--orange);
    color: #fff;
    border-radius: 25px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.menu-items a.nav-cta:hover {
    background-color: var(--orange-dark);
    transform: translateY(-1px);
    color: #fff;
}

.menu-items a.nav-cta::after {
    display: none; 
}

                    /* ############## SHOWCASE STYLING ########## */
.showcase-area {
    background: linear-gradient(rgba(240,240,240,0.144),rgba(255,255,255,0.8)),url("ella-olsson-oPBjWBCcAEo-unsplash.jpg");
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

/* .showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    height : 100%;
    font-size : 1.5rem;
    color : var(--text-body);
    padding-top : 9rem;
} */

.showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    height: 100%;
    font-size: 1.5rem;
    color: var(--text-body);
    padding: 9rem 2rem 2rem 2rem;  /* Added left/right padding */
    text-align: center;  /* Center align text */
    max-width: 100%;  /* Prevent overflow */
    box-sizing: border-box;  /* Include padding in width calculation */
}


/* #################### About-area Styling #############  */
.about-area {
    padding: 6rem 0;
    background: #f5f5f7;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

/* Left text column */
.about-content {
    flex: 1 1 400px;
    transform : translate(-150%);
    animation-name : Toleft;
    animation-duration: 1s;
    animation-delay : 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes Toleft {
    100% {
        transform : translate(0);
    }
}

.about-label {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.8rem;
}

.about-content h2 {
    font-size: 3.2rem;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Right image column */
.about-image {
    flex: 1 1 400px;
    transform : translate(150%);
    animation-name : Toright;
    animation-duration: 1s;
    animation-delay : 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    height: 420px;          
    overflow: hidden;       
    border-radius: 16px;    
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); 
}


    @keyframes Toright {
        100% {
            transform : translate(0);
        }
    }


.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 12px;
    display: block;
    transition : transform 0.5s ease;
}

.about-image img:hover {
    transform : scale(1.03);
}

                    /* =====================  FOOD TYPES SECTION ===================== */

.food-types {
    padding: 8rem 0;
    background-color: var(--bg-main);
}

.food-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.food-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.8rem;
}

.food-heading h2 {
    font-size: 3.5rem;
    color: var(--text-heading);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.food-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


.food-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(232, 119, 34, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.food-card:hover .food-overlay {
    opacity: 1;
}

.food-card:hover img {
    transform: scale(1.08);
}

.food-overlay h3 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.05em;
}


.overlay-btn {
    display: inline-block;
    padding: 0.8rem 2.4rem;
    background-color: #ffffff;
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color 0.3s ease,
                color 0.3s ease,
                transform 0.2s ease;
}

.overlay-btn:hover {
    background-color: var(--orange-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

            /* ########################## FOOD-MENU STYLING ############  */

.food-menu {
    padding : 8rem 0;
    background-color: var(--bg-cream);
}

.food-menu-heading {
    text-align: center;
    margin-bottom: 4em;
}

.food-menu-heading h2 {
    font-size :3.5rem;
    color : var(--text-heading);
    font-weight: 600;
}


.food-menu-container {
    display: flex;
    flex-wrap : wrap;
    gap : 3rem;
} 

.food-menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap : 3rem;
    flex: 1 1 calc(50% - 1.5rem);
    background: var(--bg-main);
    padding : 2rem;
    border-radius: 16px;
    border : 1px solid var(--border);
    transition : box-shadow 0.3s ease,transform 0.3s ease;
} 

.food-menu-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.food-image {
    height : 100px;
    width : 100px;
    flex-shrink: 0;
}

.food-image img {
    width : 100%;
    height : 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    border : 3px solid var(--orange-light);
}

.food-description{
    flex : 1;
}


.food-menu-title {
    font-size: 1.8rem;
    color: var(--text-heading);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.food-description p {
    font-size: 1.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.food-description .food-menu-price {
    font-size: 1.6rem;
    color: var(--teal);
    font-weight: 600;
}

                                /* ################# TESTIMONIALS-STYLING ########### */
    
    .testimonial {
        background: #f5f5f7;
        padding : 5rem 0;
    }

    .testimonial-heading {
        margin-bottom: 4rem;
        text-align: center;
    }

.testimonial-label {
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

    .testimonial-heading h3 {
        font-size : 3.5rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color : var(--text-heading);
    }

    .testimonial-heading p {
        color : var(--text-muted);
        font-size: 1.5rem;
    }

    .testimonial-grid {
        display : flex;
        flex-wrap: wrap;
        gap : 2.5rem;
    }


    .testimonial-card {
        padding : 3rem;
        background-color : var(--bg-main);
        border: 1px solid var(--border);
        border-radius : 16px;
        display: flex;
        flex-direction: column;
        flex: 1 1 calc(33% - 1.7rem);
        gap : 1.2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.quote-mark {
    font-size: 5rem;
    color: var(--orange);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: -1rem;
}

.star-icons span {
    color: var(--orange);
    font-size: 1.8rem;
}

.food-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    width: fit-content;
}

.review-text {
    font-size: 1.4rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
}

.testimonial-line {
    height: 1px;
    background: var(--border);
}

.user-details {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-heading);
}

.user-location {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}



/* ################## CONTACT US STYLING ########### */

    .contact {
    background: var(--bg-main);
    padding: 8rem 0;
}

.contact-container {
    width: 80%;
    margin: 0 auto;

}

.contact-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-label {
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.contact-heading h3 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-heading);
}

.contact-heading p {
    color: var(--text-muted);
    font-size: 1.5rem;
}


.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: stretch;
}


.contact-left {
    flex: 1 1 250px;
    background-color: var(--orange);
    border-radius: 16px;
    padding: 4rem 2.5rem;
}

.contact-left h3 {
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-left > p {
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 3rem;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 2rem;
}

.info-label {
    display: block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.info-row p {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
}


.social-media-links {
    display: flex;
    gap: 2rem;
}

.social-media-links a {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size : 1.8rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-media-links a:hover {
    background: rgba(255, 255, 255, 0.35);
}


.contact-right {
    flex: 1 1 300px;
    background-color: var(--bg-cream);
    border-radius: 16px;
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;               
    gap: 1.8rem;           
}


.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(50% - 0.75rem);
    gap: 0.8rem;
}


.form-group.full {
    flex: 1 1 100%;
}

.form-group label {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.3rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-heading);
    background: var(--bg-main);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-group textarea {
    resize: none;
    flex: 1;
    min-height : 140px;
}

.btn-submit {
    width: 100%;
    padding: 1.6rem;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}


/* ############################# FOOTER STYLING ####################### */

.footer {
    background-color: #1A1A1A;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}

.footer::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    opacity : 0.5;
    background: radial-gradient(
        circle at center,
        rgba(232,119,34,0.12),
        transparent 50%
    );
    pointer-events: none;
}

.footer:hover::before {
    opacity: 1;
    transition: 0.4s ease;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}


.footer-brand {
    flex: 2 1 200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand .footer-logo {
    color: var(--orange);
    font-size: 2.6rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(232,119,34,0.2);
}

.footer-logo span {
    color: var(--teal);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.4rem;
    line-height: 1.7;
    max-width: 220px;
}


.footer .social-media-links {
    display: flex;
    gap: 1rem;
}

.footer .social-media-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-media-links a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
}


.divider-line {
    width: 1px;                         
    background: rgba(255,255,255,0.05);
    align-self: stretch;                 
}


.footer-col {
    flex: 1 1 150px;                     
    display: flex;                      
    flex-direction: column;
    gap: 1.6rem;
    padding-left: 1rem;
}

.footer-col .col-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.9);

}

.col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.col-links li a ,
.col-links li {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.25s ease;
}

.col-links li a:hover {
    color: var(--orange);
    transform : translateX(4px);
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;    
    margin-top: 2rem;
    padding-top: 0.3rem;
    opacity: 0.9;
}

.copyright,
.made-by {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.35);
}

.copyright span {
    color: var(--orange);
    font-weight: 500;
}

.made-by span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}


                /* ################### MEDIA QUERIES ##########  */

/* ===== MOBILE PORTRAIT (≤ 768px) ===== */
@media (max-width: 768px) {
    html { font-size: 55%; }
    body { padding-top: 64px; } 

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type='checkbox'] {
        position: absolute;
        height: 32px;
        width: 40px;
        top: 18px;
        left: 5px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
        display: block;
    }

    .navbar-container .hamburger-lines {
        display: flex;
        height: 26px;
        width: 32px;
        position: absolute;
        top: 18px;
        left: 5px;
        padding: 5px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 2;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
    }

    .navbar-container .line {
        height: 4px;
        width: 100%;
        background: #333;
        border-radius: 10px;
        transition: 0.3s;
    }

    .navbar-container input:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
        transform-origin: 0 0;
    }

    .navbar-container input:checked ~ .hamburger-lines .line2 {
        opacity: 0;
    }

    .navbar-container input:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
        transform-origin: 0 100%;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
    }

    .logo-image { height: 50px; }

    .menu-items {
        position: absolute;
        top: 64px;
        left: -100%;
        width: 80%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.35s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 998;
    }

    .navbar-container input:checked ~ .menu-items {
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }

    .menu-items li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
    }

    .menu-items a {
        display: block;
        padding: 1.8rem;
        font-size: 1.8rem;
    }

    .showcase-area { height: 55vh; }
    .showcase-container {
        padding: 6rem 2rem 2rem;
        text-align: center;
    }
    .showcase-container h1 {
        font-size: 3rem;
        line-height: 1.3;
    }
    .showcase-container p { font-size: 1.4rem; }

    .about-container {
        flex-direction: column;
        gap: 3rem;
    }
    .about-content,
    .about-image {
        flex: 1 1 100%;
        animation: none;    
        transform: none;    
    }
    .about-image { height: 280px; }

    .food-grid { grid-template-columns: 1fr; }
    .food-card { height: 240px; }


    .food-menu-item {
        flex: 1 1 100%;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .food-description p { font-size: 1.5rem; }


    .testimonial-card {
        flex: 1 1 100%;
        padding: 2.5rem;
    }

    .contact-grid { flex-direction: column; }
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 3rem;
    }
    .divider-line { display: none; }
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    .footer-col {
        text-align: left;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .btn, .btn-submit { min-height: 48px; }
}

                /* ===== LANDSCAPE PHONE ===== */
@media (max-width: 900px) and (orientation: landscape) {
    body { padding-top: 56px; }
    .navbar-container { height: 56px; }
    .navbar-container input[type='checkbox'],
    .navbar-container .hamburger-lines {
        top: 14px;
    }
    .logo { top: 8px; }
    .logo-image { height: 42px; }
    .showcase-area {
        height: auto;
        min-height: 100vh;
    }

    .showcase-container {
        padding: 8rem 2rem 4rem;
        justify-content: center;
    }
    .form-row { flex-direction: row; }
.contact-grid { flex-direction: row; }
    .about-container { flex-direction: row; }
    .about-content,
    .about-image { flex: 1 1 300px; }
    .about-image { height: 320px; }
}

                    /* ===== TABLET (769px – 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    html { font-size: 58%; }
    .container { width: 88%; }
    .food-grid { grid-template-columns: repeat(2, 1fr); }
    .food-menu-item { flex: 1 1 100%; }
    .testimonial-card { flex: 1 1 calc(50% - 1.25rem); }
    .contact-grid { flex-direction: column; }
}

                    /* ===== SMALL MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {

    html { font-size: 50%; }

    .logo-image { height: 40px; }

    .showcase-area { height: 50vh; }

    .showcase-container h1 { font-size: 2.4rem; }

    .about-content h2,
    .food-heading h2,
    .food-menu-heading h2,
    .testimonial-heading h3,
    .contact-heading h3 { font-size: 2.6rem; }

    .food-card { height: 200px; }

    .contact-left,
    .contact-right { padding: 2.5rem 1.5rem; }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}