/* footer.css - Styles for footer.php */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.main-footer {
    font-family: 'Bebas Neue', cursive;
    background-color: white;
    border-top: 1.25px solid #ddd;
    margin-top: 4rem;
    padding: 3rem 0 1rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
    text-align: center;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-align: center;
}

.footer-section h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-align: center;
}

.footer-section p {
    color: #666;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    font-size: 1rem;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 0.2rem 0;
    border: 1.25px solid transparent;
    background-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.footer-section ul li a:hover {
    color: #333;
    border-bottom-color: #333;
}

.footer-bottom {
    border-top: 1.25px solid #eee;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    margin: 0;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.25px solid #666;
    border-radius: 4px;
    background-color: transparent;
}

.social-icon:hover {
    color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon i {
    font-size: 20px;
}



/* Responsive design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
