/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 0 0;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.restricted-access-btn {
    padding: 8px 15px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    margin-top: auto;
    width: fit-content;
    transition: background-color 0.3s;
}

.restricted-access-btn:hover {
    background-color: #ff8533;
}

.developer-logo {
    max-width: 150px;
    height: auto;
    margin-top: 10px;
}

.developed-by {
    margin-bottom: 5px;
    font-weight: bold;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        margin-bottom: 1rem;
    }
    
    .restricted-access-btn {
        margin-top: 15px;
    }
}