@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins";
}

html,
body {
    height: 100%;
    width: 100%;
}



.whatsapp-icon {
    position: fixed;
    height: 5vw;
    width: 5vw;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatapp-iconn{
    font-size: 2.7vw;
}

.whatsapp-icon {
    bottom: 20px;
    right: 20px;
}
@media (max-width: 480px) {
    .whatsapp-icon {
        width: 20vw; 
        height: 20vw;
        font-size: 2vw;
        bottom: 2%;
        right: 2%;
        z-index: 2000;
    }
    .whatapp-iconn{
        font-size: 10vw;
    }
}














.navbar {
    height: 13vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 4px 20px rgba(144, 238, 144, 0.3);
    padding: 0 2vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar-left {
    height: auto;
    width: 22%;
    overflow: hidden;
}

.navbar-left img {
    height: 100%;
    width: 8vw;
    object-fit: cover;
    margin-top: 1vw;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-right: 2vw;
}

.navbar-right a {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 1.3vw;
    padding: .4vw;
    transition: color 0.3s ease;
}

.navbar-right a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ff7043;
    transition: width 0.4s ease;
}

.navbar-right a:hover::after {
    width: 100%;
}


.main-portion {
    height: 150vh;
    width: 100%;
    background: url('FoodBackgroundNomeat.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    height: 150vh;
    width: 100%;
    position: absolute;
    background-color: black;
    top: 0;
    left: 0;
    opacity: .8;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2vw;
}

.hero h1 {
    font-size: 2.8rem;
    color: #ffffff;
    position: relative;
    z-index: 99;
}

.hero p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 1rem;
    position: relative;
    z-index: 99;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 6vw;
    position: relative;
    z-index: 99;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: #cc4d00;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7vw;
    margin-bottom: 1vw;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form button {
    background: #cc4d00;
    color: #fff;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #a13b00;
}

.contact-info {
    flex: 1;
    max-width: 400px;
    position: relative;
    z-index: 99;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

/* Footer */
.page7 {
    min-height: 55vh;
    width: 100%;
    padding: 1vw 2vw;
    background-color: #F8F8F8;
}

footer {
    height: 100%;
    width: 100%;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3vw;
    border-bottom: 1px solid red;
    margin-bottom: 2vw;
}

.footer-logo {
    width: 33%;
    margin-bottom: 2vw;
}

.footer-logo img {
    width: 12vw;
}

.footer-logo p {
    font-size: .9vw;
    opacity: .7;
}

.footer-menu {
    width: 30%;
    margin-bottom: 2vw;
}

.footer-menu h3 {
    color: red;
    font-weight: 400;
    margin-bottom: 1vw;
    margin-left: 8vw;
}

.footer-anchor {
    display: flex;
    flex-direction: column;
    gap: .3vw;
    margin-left: 8vw;
}

.footer-anchor a {
    text-decoration: none;
    color: black;
    opacity: .7;
    width: fit-content;
}

.footer-anchor a:hover {
    color: red;
}

.footer-social {
    width: 30%;
}

.footer-social h3 {
    color: red;
    font-weight: 500;
}

.icons {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    margin-top: 1vw;
}
.icons a{
    text-decoration: none;
}
.icons i {
    height: 3.5vw;
    width: 3.5vw;
    font-size: 1.8vw;
    color: red;
    border: 1px solid red;
    padding: .7vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all .3s ease;
}

.icons i:hover {
    border: 1px solid black;
    color: black;
    transform: scale(0.8);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p span {
    color: red;
}


@media screen and (max-width: 480px) {
     .navbar {
        width: 100%;
        height: 8vh;
        padding: 1vw 3vw;
        gap: 2vw;
    }

    .navbar-left {
        width: 25vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-left img {
        width: 17vw;
        height: auto;
    }

    .navbar-right {
        justify-content: center;
        gap: 3vw;
    }

    .navbar-right a {
        font-size: 3vw;
    }

    .main-portion {
        height: auto; /* Let content decide height on small screen */
        background-size: cover;
        background-position: center;
        padding-bottom: 10vw;
    }

    .overlay {
        height: 100%; /* Match main content height dynamically */
        opacity: 0.75;
    }

    .hero {
        padding: 2rem 1rem;
        margin-top: 15vw;
    }

    .hero h1 {
        font-size: 7vw;
        line-height: 1.3;
    }

    .hero p {
        font-size: 4vw;
        margin-top: 1rem;
        line-height: 1.5;
    }

    .contact-container {
        flex-direction: column;
        padding: 2vw 3vw;
        gap: 10vw;
    }

    .contact-form,
    .contact-info {
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 3vw;
        font-size: 0.95rem;
        margin-bottom: 3vw;
    }

    .contact-form button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }
}


/* page7 responsive  */
@media screen and (max-width: 480px) {
    .page7 {
        padding: 4vw 5vw;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }

    .footer-logo,
    .footer-menu,
    .footer-social {
        width: 100%;
        margin-bottom: 2vw;
    }

    .footer-logo img {
        width: 30vw;
    }

    .footer-logo p {
        font-size: 3.5vw;
    }

    .footer-menu h3 {
        font-size: 4.5vw;
        margin-left: 0;
    }

    .footer-anchor {
        margin-left: 0;
        gap: 2vw;
    }

    .footer-anchor a {
        font-size: 3.8vw;
    }

    .footer-social h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    .icons {
        gap: 4vw;
        margin-top: 2vw;
    }

    .icons i {
        height: 12vw;
        width: 12vw;
        font-size: 6vw;
        padding: 2vw;
    }

    .footer-bottom p {
        font-size: 3.5vw;
        padding-bottom: 4vw;
    }
}