/* Footer styles, building on base.css */
.site-footer {
    background-color: var(--color-graphite-gray);
    color: var(--color-clean-white);
    padding: 2rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-electric-cyan);
}

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

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

.footer-links a {
    color: var(--color-clean-white);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--color-soft-green);
    outline: 2px solid var(--color-electric-cyan);
    outline-offset: 2px;
}

.footer-info p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    color: var(--color-soft-green);
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-deep-navy);
    color: var(--color-clean-white);
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--color-electric-cyan);
    color: var(--color-deep-navy);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-soft-green);
    outline: 2px solid var(--color-electric-cyan);
}

.btn-secondary {
    background-color: var(--color-graphite-gray);
    color: var(--color-clean-white);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--color-soft-green);
    outline: 2px solid var(--color-electric-cyan);
}

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

    .cookie-buttons {
        flex-direction: column;
    }
}