/* Footer Styles */
.main-footer {
    position: relative;
    background-color: var(--primary-brown);
    color: white;
    overflow: hidden;
    padding-top: 100px;
}

/* Wave Animation */
.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23DCD262' fill-opacity='0.2' d='M0,96L48,106.7C96,117,192,139,288,154.7C384,171,480,181,576,165.3C672,149,768,107,864,101.3C960,96,1056,128,1152,133.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 1440px 100px;
}

.wave1 {
    z-index: 1;
    opacity: 0.5;
    animation: wave 20s linear infinite;
}

.wave2 {
    z-index: 2;
    opacity: 0.3;
    animation: wave 15s linear infinite reverse;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Logo Section */
.footer-logo-section {
    text-align: center;
}

.restaurant-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Contact Info Section */
.footer-info-section {
    text-align: center;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-yellow);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--primary-brown);
    transform: translateY(-3px);
}

.social-link:hover i {
    transform: scale(1.2);
}

.hover-text {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--primary-yellow);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.social-link:hover .hover-text {
    opacity: 1;
}

/* Quick Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.quick-links h3,
.hours h3 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quick-links ul,
.hours ul {
    list-style: none;
    padding: 0;
}

.quick-links li,
.hours li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.quick-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.hours li {
    color: rgba(255, 255, 255, 0.8);
}

/* Bottom Bar */
.footer-bottom {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 3rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-yellow);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 1rem;
}

/* Wave Animation */
@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1440px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .restaurant-name {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding-top: 60px;
    }

    .footer-waves {
        height: 60px;
    }

    .wave {
        height: 60px;
        background-size: 1440px 60px;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }
}