/* ========================================
   JaktLicens – Footer CSS
   ======================================== */

.site-footer {
    background: var(--primary-darker);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer about */
.footer-about h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.footer-about h3 span {
    color: var(--accent-gold);
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Footer columns */
.footer-column h4 {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-column ul,
.footer-column .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

/* Contact list */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--text-light);
}

/* Responsivt */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
