/* General styling and responsiveness */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #EAECEE; /* Soft light grey background */
    min-height: 100vh;
    padding: 10px;
}

.header {
    width: 100%;
    background-color: #1C2833;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

.header h1 {
    font-size: 2.5rem;
    transition: opacity 1s ease;
    opacity: 0;
}

.fade-in {
    opacity: 1 !important;
}

.menu-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
    width: 100%;
    justify-items: center;
}

.menu-gallery img {
    width: 90%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .menu-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .menu-gallery img {
        width: 80%;
        max-width: 350px;
    }
}

@media (min-width: 1024px) {
    .menu-gallery img {
        width: 70%;
        max-width: 300px;
    }
}


.social-icons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-icons .icon {
    font-size: 2.8rem;
    color: #34495E;
    margin: 0 15px;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
}

.social-icons .icon:hover {
    color: #2980B9;
    transform: translateY(-5px) scale(1.1);
}

.social-icons .icon:active {
    transform: translateY(0) scale(0.95);
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: #1C2833;
    color: #fff;
    padding: 15px 0;
    margin-top: auto;
}

.footer img.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer p {
    font-size: 0.9rem;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .menu-gallery {
        grid-template-columns: 1fr;
    }

    .menu-gallery img {
        width: 95%;
        max-width: none;
    }

    .social-icons {

        gap: 15px;
        margin-bottom: 40px;
    }

    .footer {
        padding: 10px;
    }

    .footer p {
        font-size: 0.8rem;
    }
}
span{
  color: white !important;
}
