/* ==========================================================================
   FOOTER
   ========================================================================== */
#main-footer {
    
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: sans-serif;
    width: 100%;
    padding: 80px 0 40px 0; /* Vi fjerner side-padding herfra og lægger den på indholdet */
    border-top: 1px solid rgba(100, 255, 218, 0.2);
    background-color: #0a192f; /* Din mørke blå/sorte farve */
}


.footer-content {
    /* Dette holder teksten centreret og samlet */
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 40px 20px; /* Her styrer vi luft i siderne for indholdet */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section li {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    padding: 0;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* Tving indholdet til at være synligt, selvom reveal-klassen driller */
.footer-content.reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: grid !important; /* Bevar dit grid layout */
}

/* Sørg for at baggrunden altid er der */
#main-footer {
    background-color: #0a192f !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}
#main-footer {
    clear: both !important;
    display: block !important;
    position: relative !important;
    z-index: 9999 !important; /* Læg den øverst af alt */
    margin-top: 50px !important; /* Skub den væk fra elementet ovenover */
    background: #0a192f !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px !important;
    height: auto !important; /* Tving den til at måle indholdet */
    min-height: 200px !important; 
    overflow: visible !important;
}

/* ==========================================================================
   FOOTER SOCIAL ICONS & PRIVACY LINK STYLING
   ========================================================================== */

/* Make all text links in footer white (including privacy policy) */
.footer-section a,
.footer-bottom a {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-bottom a:hover {
    color: var(--accent) !important; /* #64ffda - your teal accent on hover */
    text-decoration: underline;
}

/* Specifically target the privacy policy link if it has a class or is in .footer-bottom */
.footer-bottom a[href*="privatliv"],
.footer-bottom a[href*="privacy"],
.footer-bottom a {
    font-weight: 500;
    color: #ffffff !important;
}

/* Social icons – make larger and white */
.footer-section .social-links,
.footer-section .social-icons,
.footer-bottom .social-icons {
    display: flex;
    gap: 20px;          /* space between icons */
    justify-content: center; /* or flex-start/left depending on design */
    margin-top: 15px;
}

.footer-section i.fab,
.footer-section i.fa,
.footer-bottom i.fab,
.footer-bottom i.fa {
    color: #ffffff !important;
    font-size: 1.8rem !important;     /* original probably ~1.2–1.4rem – this makes them noticeably larger */
    transition: all 0.3s ease;
}

.footer-section i.fab:hover,
.footer-section i.fa:hover,
.footer-bottom i.fab:hover,
.footer-bottom i.fa:hover {
    color: var(--accent) !important;   /* teal on hover */
    transform: translateY(-3px) scale(1.15);
}

/* Optional: if icons are inside <a> tags, make sure the link itself has no underline by default */
.footer-section .social-links a,
.footer-bottom .social-icons a {
    text-decoration: none;
}

/* If you have very specific classes (adjust if needed) */
.social-icon,
.fa-facebook-f, .fa-instagram, .fa-youtube, .fa-tiktok {
    font-size: 2rem !important;        /* even bigger if you want – try 1.8–2.2rem */
}