/*
* Filename: footer.css
* Directory: /www/css/
* Description: Footer styling. Matcher headerens farge.
*/

.site-footer {
    background-color: #1a252f; /* SAMME FARGE SOM HEADER */
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    padding: 3rem 0;
    margin-top: auto; /* Sikrer at footer legger seg i bunn */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Footer Meny */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #bdc3c7;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Copyright tekst */
.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* Admin linker */
.admin-links a {
    color: rgba(255,255,255,0.3) !important;
    text-decoration: none;
    transition: color 0.2s;
}
.admin-links a:hover {
    color: #fff !important;
}