
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fdf7ec; /* Creamy white background */
    color: #333; /* Default text color */
}

/* NavBar Section */

.header {
    position: relative;
    width: 100%;
    /* margin-left: 3.8vw; */
    top: 0;
    left: 0;
    background-color: #fdf7ec; /* Creamy white background */
    backdrop-filter: blur(10px); /* Slight blur effect */
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}


.logo img {
    height: 80px;
    animation: fadeIn 2s ease-out;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    animation: slideIn 2s ease-out;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #ffbb33; /* Golden yellow on hover */
}

.nav-menu ul li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffbb33; /* Golden yellow underline */
    bottom: -5px;
    left: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.social-icons a {
    text-decoration: none;
    font-size: 25px;
    color: #333;
    transition: color 0.3s ease;
    margin-right: 2vw;
}

.social-icons a:hover {
    color: #ffbb33; /* Golden yellow on hover */
    
}

.reserve-btn {
    background: linear-gradient(90deg, #ffbb33, #ff9900);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.reserve-btn:hover {
    background: linear-gradient(90deg, #ff9900, #ffbb33);
    transform: scale(1.05);
    
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Hero Section */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e63946; /* Rich red for heading */
    margin-bottom: 40px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #e63946; /* Rich red for a bold statement */
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
    animation: distort 3s infinite alternate;
}
@keyframes distort {
    0% {
        transform: perspective(500px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(500px) rotateX(5deg) rotateY(5deg);
    }
    100% {
        transform: perspective(500px) rotateX(-5deg) rotateY(-5deg);
    }
}

.hero p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.cta-btn, .search-btn {
    background: #ffbb33;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

.search-btn {
    background: #fff;
    color: #ffbb33;
    border: 2px solid #ffbb33;
}

.cta-btn:hover:hover {
    background: linear-gradient(90deg, #ff9900, #ffbb33);
    transform: scale(1.03);
}
.search-btn:hover {
    background: linear-gradient(90deg, #ebbe64, #f1881e);
    color: white;
    transform: scale(1.03);
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 153, 0, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
    }
}

.hero-image {
    position: relative;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vertical-menu {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: slideIn 1s ease-out forwards;
}

.vertical-menu a {
    background: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.vertical-menu a:hover {
    background: #ffbb33;
    color: #fff;
    transform: translateX(5px);
    transform: scale(1.1);
}


.vertical-menu a:nth-child(1) {
    animation-delay: 0.2s;
}

.vertical-menu a:nth-child(2) {
    animation-delay: 0.6s;
}

.vertical-menu a:nth-child(3) {
    animation-delay: 1.0s;
}

.vertical-menu a:nth-child(4) {
    animation-delay: 1.4s;
}

.vertical-menu a:hover {
    background: #ffbb33;
    transform: scale(1.1);
}


@keyframes slideIn {
    from {
        right: -100px;
        opacity: 0;
    }
    to {
        right: -60px;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vertical-menu a i {
    font-size: 18px;
}



/* Popular Dishes */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.popular-dishes {
    padding: 20px 0;
    text-align: center;
}

.popular-dishes h2 {
    font-size: 36px;
    color: #e63946; /* Rich red for heading */
    margin-bottom: 40px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.popular-dishes h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    margin: 10px auto 0;
    border-radius: 2px;
}


.dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dish-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.dish-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.dish-card p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.dish-price {
    font-size: 18px;
    font-weight: bold;
    color: #e63946;
    margin-bottom: 20px;
}

.add-to-cart {
    background: linear-gradient(90deg, #ffbb33, #ff9900);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.add-to-cart:hover {
    background: linear-gradient(90deg, #ff9900, #ffbb33);
    transform: scale(1.05);
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}


/* Service Section */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services {
    padding: 100px 0;
}

.services-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-chef-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-overlay {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0; /* Light grey background for soft UI */
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff; /* Neumorphism effect */
}


.chef-img {
    width: 100%;
    /* height: auto; */
    display: block;
    border-radius: 20%;
}

.frame-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Makes sure these elements don't interfere with hover on the main image */
    /* background-color: blue; */
}

.leaf, .ingredients {
    position: absolute;
    transition: transform 0.5s ease;
    animation: move 3s infinite ease-in-out;
}

.leaf {
    top: .25vh;
    width: 10vw;
    height: 10vw;
    /* background-color: red; */
}

.ingredients {
    bottom: 10px;
    right: 20px;
    width: 10vw;
   
}

@keyframes move {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}
.chef-img:hover + .frame-elements .leaf,
.chef-img:hover + .frame-elements .ingredients {
    transform: scale(1.1);
}

.service-list {
    flex: 1.5;
    padding-left: 50px;
}

.service-list h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e63946; /* Rich red for heading */
    margin-bottom: 40px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    color: #e63946; /* Rich red for a bold statement */
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
    animation: distort 3s infinite alternate;
}
@keyframes distort {
    0% {
        transform: perspective(500px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(500px) rotateX(1deg) rotateY(1deg);
    }
    100% {
        transform: perspective(500px) rotateX(-1deg) rotateY(-1deg);
    }
}
.service-list h2::before {
    content: '';
    position: absolute;
    width: 45vw;
    height: 5px;
    background-color: #ffbb33;
    bottom: -10px;
    left: 0;
    border-radius: 5px;
}

.service-list p {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
    max-width: 450px;
    line-height: 1.6;
}

.service-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-list li {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffbb33, #ff9900);
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 24px;
}

.service-list li span {
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-list li:hover span {
    color: #ff9900;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, #ffbb33, #ff9900);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}


.btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #ff9900, #ffbb33);
}


 /* Regular menu*/

 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.regular-menu {
    padding: 100px 0;
}
.regular-menu h2 {
    margin-left: 33vw;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e63946; /* Rich red for heading */
    margin-bottom: 40px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}
.menu-title {
    font-size: 48px;
    font-weight: 700;
    color: #e63946; /* Rich red for a bold statement */
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
   
}



.filter-section {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: #fff;
    border: 2px solid #ffbb33;
    color: #ffbb33;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ffbb33;
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.menu-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(239, 147, 27, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.menu-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.menu-item .price {
    font-size: 18px;
    color: #e63946;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn.add-to-cart {
    background: linear-gradient(90deg, #ffbb33, #ff9900);
    border: 2px solid #ffbb33;
    color: #fff;;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn.add-to-cart:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #ff9900, #ffbb33);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Reservation Section  */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reservation {
    padding: 100px 0;
    margin-left: 2vw;
}

.reservation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reservation-text {
    max-width: 50%;
}

.reservation-text h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e63946; /* Rich red for heading */
    margin-bottom: 40px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}
.reservation-title {
    font-size: 48px;
    font-weight: 700;
    color: #e63946; /* Rich red for a bold statement */
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
    animation: distort 3s infinite alternate;
}
@keyframes distort {
    0% {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg);
    }
    50% {
    transform: perspective(500px) rotateX(2deg) rotateY(2deg);
    }
    100% {
    transform: perspective(500px) rotateX(-2deg) rotateY(-2deg);
    }
}

.reservation-text p {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn.reserve-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #ffbb33, #ff9900);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn.reserve-btn i {
    margin-right: 10px;
    font-size: 22px;
}

.btn.reserve-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #ff9900, #ffbb33);
}

.reservation-image {
    max-width: 45%;
}

.reservation-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reservation-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


/* Testimonial section  */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials {
    padding: 100px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e63946; /* Rich red for heading */
    margin-bottom: 40px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    font-style: normal;
}

.testimonial-title {
    font-size: 48px;
    font-weight: 700;
    color: #e63946; /* Rich red for a bold statement */
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
    animation: distort 3s infinite alternate;
}
@keyframes distort {
    0% {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg);
}
    50% {
    transform: perspective(500px) rotateX(2deg) rotateY(2deg);
}
    100% {
    transform: perspective(500px) rotateX(-2deg) rotateY(-2deg);
}
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.testimonial-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Meet our chef section  */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.meet-our-chefs {
    padding: 100px 0;
    text-align: center;
}

.meet-our-chefs h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e63946; /* Rich red for heading */
    margin-bottom: 40px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    font-style: normal;
}

.meet-our-chefs-title {
    font-size: 48px;
    font-weight: 700;
    color: #e63946; /* Rich red for a bold statement */
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
    animation: distort 3s infinite alternate;
}

@keyframes distort {
    0% {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg);
}
    50% {
    transform: perspective(500px) rotateX(2deg) rotateY(2deg);
}
    100% {
    transform: perspective(500px) rotateX(-2deg) rotateY(-2deg);
}
}

.chefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    margin-left: 15vw;
}

.chef-card {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chef-info {
    position: relative;
    z-index: 1;
    max-width: 60%;
}

.chef-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.chef-info p {
    font-size: 16px;
    color: #777;
    font-weight: 400;
}

.chef-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin-left: -50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 0;
    transition: transform 0.3s ease;
}

.chef-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chef-card:hover .chef-image img {
    transform: scale(1.1);
}

.chef-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* mobile app ads  */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-app-promotion {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fdf7ec;
    border-radius: 20px;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.promotion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fdf7ec;
    border-radius: 20px;
    box-shadow: inset 10px 10px 20px #bebebe, inset -10px -10px 20px #ffffff;
}

.promotion-text {
    max-width: 50%;
    padding: 20px;
}

.promotion-text h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e63946; /* Rich red for heading */
    margin-bottom: 40px;
    background: linear-gradient(90deg, #e63946, #ff6f61);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    font-style: normal;
}

.promotion-text p {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.mobileapp-btn {
    display: inline-flex;
    align-items: center;
    background: #333;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(55, 52, 48, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(55, 52, 48, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(55, 52, 48, 0.5);
    }
}

.mobileapp-btn i {
    margin-right: 10px;
    font-size: 22px;
}

.mobileapp-btn:hover {
    transform: translateY(-3px);
    background: #555;
}

.phone-mockup {
    max-width: 45%;
    text-align: right;
    background: #fdf7ec;
    border-radius: 20px;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    padding: 20px;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    box-shadow: inset 10px 10px 20px #bebebe, inset -10px -10px 20px #ffffff;
    border-radius: 20px;
    animation: moveLeftRight 3s infinite alternate ease-in-out;
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(7px);
    }
}

/* footer section  */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffbb33;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscription-form input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

.subscribe-btn {
    background-color: #ffbb33;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(55, 52, 48, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(55, 52, 48, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(55, 52, 48, 0.5);
    }
}

.subscribe-btn:hover {
    background-color: #ff9900;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffbb33;
}

.footer-column p i {
    margin-right: 10px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 16px;
    color: #ccc;
}




/* General Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 15px;
    }
}

/* Adjustments for Tablets and Smaller Desktops */
@media (max-width: 992px) {
    /* NavBar Section */
    .header {
        padding: 15px 10px;
    }

    .nav-menu ul {
        gap: 20px;
    }

    .header-right {
        gap: 30px;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-image {
        max-width: 80%;
    }

    .vertical-menu {
        position: static;
        margin-top: 20px;
    }

    /* Popular Dishes Section */
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Service Section */
    .services-content {
        flex-direction: column;
    }

    .service-list {
        padding-left: 0;
        margin-top: 30px;
    }

    .service-list ul {
        grid-template-columns: 1fr;
    }

    /* Regular Menu Section */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reservation Section */
    .reservation-content {
        flex-direction: column;
        text-align: center;
    }

    .reservation-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .reservation-image {
        max-width: 80%;
    }

    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Meet Our Chefs Section */
    .chefs-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
    }

    /* Mobile App Promotion Section */
    .promotion-content {
        flex-direction: column;
        text-align: center;
    }

    .promotion-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .phone-mockup {
        max-width: 70%;
        margin-top: 20px;
    }

    /* Footer Section */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Adjustments for Mobile Devices */
@media (max-width: 768px) {
    /* NavBar Section */
    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 36px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
        max-width: 100%;
    }

    .cta-btn, .search-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Popular Dishes Section */
    .dishes-grid {
        grid-template-columns: 1fr;
    }

    /* Regular Menu Section */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* Service Section */
    .service-list ul {
        grid-template-columns: 1fr;
    }

    /* Reservation Section */
    .reservation-content {
        flex-direction: column;
    }

    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile App Promotion Section */
    .phone-mockup {
        max-width: 90%;
    }

    /* Footer Section */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Adjustments for Extra Small Devices */
@media (max-width: 576px) {
    /* NavBar Section */
    .header {
        padding: 10px 5px;
    }

    .logo img {
        height: 60px;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

    .reserve-btn {
        padding: 8px 15px;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 28px;
    }

    .hero-title {
        font-size: 24px;
    }

    .cta-btn, .search-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    /* Popular Dishes Section */
    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .dish-card h3 {
        font-size: 20px;
    }

    .dish-card p {
        font-size: 14px;
    }

    /* Regular Menu Section */
    .menu-item h3 {
        font-size: 18px;
    }

    .menu-item p {
        font-size: 14px;
    }

    .btn.add-to-cart {
        padding: 8px 15px;
    }

    /* Reservation Section */
    .reservation-content {
        flex-direction: column;
    }

    .reservation-text h2 {
        font-size: 36px;
    }

    .reservation-text p {
        font-size: 14px;
    }

    .btn.reserve-btn {
        padding: 10px 20px;
    }

    .reservation-image img {
        border-radius: 15px;
    }

    /* Testimonials Section */
    .testimonials h2 {
        font-size: 36px;
    }

    .testimonial-card h3 {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* Meet Our Chefs Section */
    .meet-our-chefs h2 {
        font-size: 36px;
    }

    .chef-info h3 {
        font-size: 20px;
    }

    .chef-info p {
        font-size: 14px;
    }

    /* Mobile App Promotion Section */
    .promotion-text h2 {
        font-size: 36px;
    }

    .promotion-text p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .phone-mockup {
        margin-top: 30px;
    }

    /* Footer Section */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column p {
        font-size: 14px;
    }
}
