.about_area {
    padding: 120px 0;
    background: #faf9f6;
}

/* Image Area */
.about_thumb2 {
    position: relative;
    width: 430px;
}

.about_thumb2 .img_1 img {
    width: 100%;
    border-radius: 6px;
}

.about_thumb2 .img_2 img {
    width: 240px;
    position: absolute;
    bottom: -35px;
    right: -25px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RIGHT TEXT AREA */
.section_title span.a-tag {
    color: #d39b2a;
    font-size: 20px;
    font-weight: 600;
}

.a-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    margin-top: 10px;
}

.a-text {
    margin-top: 15px;
    width: 420px;
    line-height: 1.6;
    color: #555;
}

/* Signature */
.a-sign {
    margin-top: 30px;
    font-size: 26px;
    font-family: 'Pacifico', cursive;
    color: #000;
}

.food-search-sec {
    background: #ffffff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.food-heading {
    font-size: 40px;
    font-weight: 700;
    color: #111;
}

.food-viewall-btn {
    font-size: 18px;
    font-weight: 600;
    color: #1c76ba;
    text-decoration: none;
}

.food-arrow {
    border: none;
    background: #f7b200;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.food-arrow:hover {
    transform: scale(1.05);
}

.food-card {
    text-align: center;
}

.food-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.food-card p {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-top: 10px;
}

.food-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
}

/* fade + slide effect */
.food-card.show {
    transform: translateY(0);
    opacity: 1;
}

.food-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s;
}

.food-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 25px rgba(247,178,0,0.4);
}

.food-card:hover img {
    transform: scale(1.1);
}


/* -------------------------------------------------
   ✅ MOBILE VIEW FIX (ONLY FOR MOBILE)
   ------------------------------------------------- */
@media (max-width: 768px) {

    .about_area {
        padding: 60px 0;
        text-align: center;
    }

    /* Image container fix */
    .about_thumb2 {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about_thumb2 .img_1 img {
        width: 100%;
    }

    .about_thumb2 .img_2 img {
        width: 150px;
        bottom: -20px;
        right: -10px;
    }

    /* Text responsive */
    .a-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .a-text {
        width: 100%;
        font-size: 14px;
        line-height: 22px;
        padding: 0 15px;
    }

    .a-sign {
        font-size: 18px;
        margin-top: 15px;
    }
}
