.main-footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 0;
    margin-top: 20rem;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.25);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    background: transparent;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.85);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.footer-links a {
    color: #2abfc3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.4rem;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 1.8rem; /* Slightly larger than text */
    vertical-align: middle;
}

.footer-links a:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Specific colors for each platform */
.fa-instagram {
    color: #2abfc3;
}

.fa-facebook {
    color: #2abfc3;
}

/* Mobile styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-section {
        padding: 0.5rem;
    }

    .location-hours {
        margin-top: 1rem;
    }

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

.location-hours {
    margin-top: 1rem;
}

.location-hours h5 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--color-text);
    opacity: 0.8;
} 

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2abfc3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-secondary);
}

/* Add hover effect */
.social-links a:hover .fa-instagram,
.social-links a:hover .fa-facebook {
    color: var(--color-secondary);
} 