    body {
        margin: 0;
        font-family: 'Bebas Neue', sans-serif;
        background-color: #000;
        color: #fff;
        text-align: center;
    }
    header {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }
    .swiper {
        width: 100%;
        height: 100%;
    }
    .swiper-slide {
        background-size: cover;
        background-position: center;
        position: relative;
    }
    .swiper-slide::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    .header-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
    }
    .logo {
        max-width: 500px;
    }
    .section {
        max-width: 900px;
        margin: auto;
        padding: 50px 20px;
        color: #fff;
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }
    .menu {
        background: #222;
    }
    .find-us {
        background: #111;
    }
    .menu-grid {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .menu-card {
        background: #222;
        padding: 20px;
        border-radius: 10px;
        width: 250px;
        text-align: center;
    }
    .menu-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }
    .btn {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 25px;
        font-size: 1.3rem;
        font-weight: bold;
        background: #ff0000;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: 0.3s;
    }
    .btn:hover {
        background: #b22222;
    }
    footer {
        background: #000;
        padding: 30px;
        font-size: 1rem;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        align-items: center;
        text-align: left;
    }
    .contact-details, .hygiene-rating {
        max-width: 400px;
    }
    .hygiene-rating h3 {
        text-align: center;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: auto;
    }

    form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    input,
    textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .btn-small {
        padding: 10px 20px;
        font-size: 1rem;
        background: #ff0000;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn-small:hover {
        background: #b22222;
    }

.hygiene-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    padding-left: 50%;
    padding-right: 50%;
}
.hygiene-badge {
    display: flex;
    justify-content: center;
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.social-links a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}
.social-links a img:hover {
    transform: scale(1.2);
}
