/* Modern Footer Styling */

footer {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(40, 40, 40, 0.98) 100%);
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    position: static;
    width: 100%;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #4a90e2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a,
.footer-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover,
.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: translateX(4px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid rgba(74, 144, 226, 0.4);
    border-radius: 50%;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4a90e2;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-credits {
    flex: 1;
    min-width: 250px;
}

.footer-credits p {
    margin: 0.25rem 0;
    font-size: 12px;
    color: #999;
}

.footer-credits .credits {
    font-size: 11px;
    color: #777;
    margin-top: 0.5rem;
}

.footer-links-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 12px;
}

.footer-links-bottom a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.separator {
    color: #555;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 1.5rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links-bottom {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-section {
        gap: 0.5rem;
    }
    
    .footer-section p {
        font-size: 12px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1rem 0.75rem;
    }
    
    .footer-content {
        gap: 0.75rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-section p {
        font-size: 11px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-credits p {
        font-size: 11px;
    }
    
    .footer-links-bottom {
        font-size: 11px;
        gap: 0.5rem;
    }
}

/*Følg os logo styling*/
.følg-os-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}