/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section.dinner {
    position: relative;
    top: 8px;
}

.footer-title {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 600;
    color: white;
}

/* Add Underline Effect to Titles */
.footer-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: white;
    margin-top: 5px;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: white;
    margin: 1.5rem 0;
}


.footer p {
    margin: 1rem 0;
    color: #ccc;
    font-size: 1rem;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    margin-top: 1rem;
}

.menu-item {
    margin-top: 5rem;
}

.footer-link:hover {
    text-decoration: none;
}

/* Social Icons */
.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0.5rem;
    text-decoration: none;
}

/* Button */
.footer-button {
    background-color: #666;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 2.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}




.footer-button:hover {
    background-color: #888;
    transform: translateY(-3px);
}



/* Smooth hover effect for all links */
.footer-link,
.smooth-hover {
    position: relative;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover,
.smooth-hover:hover {
    color: #727271;
    transform: translateY(-2px);
}

/* Optional underline animation */
.footer-link::after,
.smooth-hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    text-decoration: none;
    transition: width 0.3s ease;
}

.footer-link:hover::after,
.smooth-hover:hover::after {
    width: 100%;
}





/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #333;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.scroll-to-top a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
}

.scroll-to-top:hover {
    background-color: #555;
}


/* First Column (Branding) */
.footer__branding {
    flex: 1;
    min-width: 250px;

}

.footer__logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer__social a {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
}


.footer__social a:hover {
    color: #555;
}


/* Responsive Design: Two Columns for Smaller Screens */
@media (max-width: 768px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        flex: 1 1 calc(50% - 1.5rem);
        /* Two Columns */
    }
}

/* Responsive Design: Full Width for Very Small Screens */
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section {
        flex: 1 1 100%;
        /* Single Column */
    }
}