/* Footer Styles */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 3rem 0 1rem 0;
    margin: 0;
    clear: both;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: white;
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
}

.footer-column p {
    color: #cbd5e1;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

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

.social-link {
    color: white !important; /* Force white color */
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.social-link.twitter {
    background-color: #1DA1F2;
}

.social-link.facebook {
    background-color: #4267B2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube {
    background-color: #FF0000;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0 0 0.5rem 0;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-column {
        min-width: 100%;
    }
}
