/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #010101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Social media menu styling */
.social-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 20px; /* Add space below the icons */
}

.social-menu ul {
    display: flex;
    gap: 15px; /* Add space between icons */
    padding: 10px;
    margin: 0;
}

.social-menu ul li {
    list-style: none;
}

.social-menu ul li a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFDD0;
    text-align: center;
    transition: 0.5s;
    transform: translate(0, 0px);
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}

.social-menu ul li a:hover {
    transform: translate(0, -5px);
}

.social-menu ul li .fa {
    color: #000000;
    font-size: 25px;
    line-height: 50px;
    transition: .5s;
}

.social-menu ul li .fa:hover {
    color: #ffffff;
}

.social-menu ul li:nth-child(1) a:hover {
    background-color: #E4405F;
}

.social-menu ul li:nth-child(2) a:hover {
    background-color: #25D366;
}

/* Styling images for restaurant menu */
img {
    width: 100%;
    max-width: 1200px; /* Limit maximum width */
    height: auto;
    display: block;
    margin-bottom: 20px;
}

/* Media Queries */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Reduce the size of social media icons */
    .social-menu ul li a {
        width: 45px;
        height: 45px;
    }

    .social-menu ul li .fa {
        font-size: 22px;
        line-height: 45px;
    }

    img {
        max-width: 768px;
    }
}

/* Smartphones (600px and below) */
@media (max-width: 600px) {
    /* Adjust social media icons for mobile */
    .social-menu ul {
        gap: 15px;
    }
    .social-menu ul li a {
        width: 40px;
        height: 40px;
    }

    .social-menu ul li .fa {
        font-size: 18px;
        line-height: 40px;
    }

    img {
        max-width: 100%;
    }
}
