body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

header {
    background-color: #7b5df7;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;

}

h1:hover{
    color: #ffd700;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #ffd700;
}

.banner {
    background-color: #f8d7da;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 20px;
}

.banner h2 {
    margin-bottom: 10px;
    font-size: 32px;
    color: #ea0b0b;
}

.banner p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.banner button {
    background-color: #7b5df7;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.banner button:hover {
    background-color: #d16d45;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

header {
    background-color: #7b5df7;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #ffd700;
}

/* Our Specialities Section */
.specialities {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.specialities h2 {
    margin-bottom: 25px;
    font-size: 32px;
    color: #7b5df7;
    font-weight: 600;
    padding-bottom: 30px;
}

.specialities h2:hover{
    color: #ffd700;
}
.speciality-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.speciality {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
   
}

.speciality:hover {
    transform: scale(1.05);
}

.speciality img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;

}

.speciality h3 {
    margin-bottom: 10px;
    color: #ea0b0b;
    font-weight: 500;
}

.speciality p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

footer p {
    margin: 5px;
    font-size: 14px;
}

footer a {
    color: #7b5df7;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffd700;
}



/* Mobile View */
@media screen and (max-width: 480px) {
    body {
        padding: 10px;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        text-align: center;
    }

    .logo h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
    }

    .menu ul li {
        margin: 5px 0;
    }

    .banner {
        padding: 30px 15px;
        margin-bottom: 15px;
    }

    .banner h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .banner p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .banner button {
        padding: 8px 18px;
        font-size: 14px;
    }

    .food-categories {
        padding: 20px;
    }

    .food-categories h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category {
        padding: 10px;
        font-size: 14px;
    }

    footer {
        padding: 10px;
        font-size: 12px;
    }

    footer p {
        font-size: 12px;
    }

    footer a {
        font-size: 12px;
    }
}
