@charset "utf-8";

/* Footer */
footer {
    background: linear-gradient(135deg, #c52f28, #8B1538);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
    max-width: none;
    width: 100%;
}

.footer-section h3 {
    color: #000;
    margin-bottom: 1rem;
}

.footer-section {
    text-align: center;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    color: #BDC3C7;
    max-width: none;
    width: 100%;
}

.footer-bottom div {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

#jaggLien {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

#jaggLien:hover {
    color: white;
}

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