/* Footer Component Styles - 200 Millas Branding */
.footer {
    background-color: var(--negro-suave);
    color: var(--blanco);
    padding: 4rem 0 0;
    font-family: var(--font-cuerpo);
    position: relative;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Brand Column */
.footer-brand {
    padding-right: 1.5rem;
}

/* Footer Logo Image */
.footer-logo-image {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-tagline {
    color: var(--amarillo-dorado);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description {
    color: var(--gris-claro);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Contact Info */
.footer-heading {
    font-size: 1.25rem;
    color: var(--blanco);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    font-weight: 600;
    font-family: var(--font-subtitulos);
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--amarillo-dorado);
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--amarillo-dorado);
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.contact-item p, .contact-item a {
    color: var(--gris-claro);
    transition: color 0.3s ease;
    margin: 0;
}

.contact-item a:hover {
    color: var(--blanco);
}

/* Navigation Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gris-claro);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--blanco);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--amarillo-dorado);
}

.footer-links a:hover::before {
    left: -10px;
    opacity: 1;
}

/* Featured Dishes */
.featured-dishes {
    margin-bottom: 2rem;
}

.dish-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gris-oscuro);
}

.dish-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dish-name {
    color: #ffffff !important;
    font-weight: 900 !important; /* Increased boldness for more emphasis */
    font-size: 1.3rem !important;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: 1px !important;
}

.dish-desc {
    color: var(--gris-claro);
    font-size: 0.9rem;
}

/* Payment Methods */
.payment-methods p {
    color: var(--gris-claro);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--gris-claro);
}

.payment-icons i {
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--amarillo-dorado);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gris-oscuro);
    color: var(--blanco);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--amarillo-dorado);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--gris-oscuro);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

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

.copyright {
    color: var(--gris-claro);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: var(--gris-claro);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--amarillo-dorado);
}

.divider {
    color: var(--gris-oscuro);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.whatsapp-float span {
    font-size: 0.6rem;
    font-weight: 600;
    display: block;
    margin-top: -2px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

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

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

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .whatsapp-float span {
        display: none;
    }
}

/* Footer Component Styles - 200 Millas Branding */
.footer {
    background-color: var(--negro-suave);
    color: var(--blanco);
    padding: 4rem 0 0;
    font-family: var(--font-cuerpo);
    position: relative;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Brand Column */
.footer-brand {
    padding-right: 1.5rem;
}

/* Footer Logo Image */
.footer-logo-image {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-tagline {
    color: var(--amarillo-dorado);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description {
    color: var(--gris-claro);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Contact Info */
.footer-heading {
    font-size: 1.25rem;
    color: var(--blanco);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    font-weight: 600;
    font-family: var(--font-subtitulos);
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--amarillo-dorado);
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--amarillo-dorado);
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.contact-item p, .contact-item a {
    color: var(--gris-claro);
    transition: color 0.3s ease;
    margin: 0;
}

.contact-item a:hover {
    color: var(--blanco);
}

/* Navigation Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gris-claro);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--blanco);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--amarillo-dorado);
}

.footer-links a:hover::before {
    left: -10px;
    opacity: 1;
}

/* Featured Dishes */
.featured-dishes {
    margin-bottom: 2rem;
}

.dish-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gris-oscuro);
}

.dish-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dish-name {
    color: #ffffff !important;
    font-weight: 900 !important; /* Increased boldness for more emphasis */
    font-size: 1.3rem !important;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: 1px !important;
}

.dish-desc {
    color: var(--gris-claro);
    font-size: 0.9rem;
}

/* Payment Methods */
.payment-methods p {
    color: var(--gris-claro);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--gris-claro);
}

.payment-icons i {
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--amarillo-dorado);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gris-oscuro);
    color: var(--blanco);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--amarillo-dorado);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--gris-oscuro);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

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

.copyright {
    color: var(--gris-claro);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: var(--gris-claro);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--amarillo-dorado);
}

.divider {
    color: var(--gris-oscuro);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.whatsapp-float span {
    font-size: 0.6rem;
    font-weight: 600;
    display: block;
    margin-top: -2px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

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

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

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .whatsapp-float span {
        display: none;
    }
}

.footer-description {
    color: #b3b3b3;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Contact Info */
.footer-heading {
    font-size: 1.25rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #f8b400;
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: #f8b400;
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.contact-item p, .contact-item a {
    color: #b3b3b3;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-item a:hover {
    color: #ffffff !important;
}

/* Navigation Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #ffffff !important;
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #f8b400;
}

.footer-links a:hover::before {
    left: -10px;
    opacity: 1;
}

/* Featured Dishes */
.featured-dishes {
    margin-bottom: 2rem;
}

.dish-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.dish-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dish-name {
    color: #ffffff !important;
    font-weight: 900 !important; /* Increased boldness for more emphasis */
    font-size: 1.3rem !important;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: 1px !important;
}

.dish-desc {
    color: #b3b3b3;
    font-size: 0.9rem;
}

/* Payment Methods */
.payment-methods p {
    color: #b3b3b3;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #b3b3b3;
}

.payment-icons i {
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #f8b400;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #ffffff !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #f8b400;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #111;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

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

.copyright {
    color: #b3b3b3;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #f8b400;
}

.divider {
    color: #666;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.whatsapp-float span {
    font-size: 0.6rem;
    font-weight: 600;
    display: block;
    margin-top: -2px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

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

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

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .whatsapp-float span {
        display: none;
    }
}
