/* css/footer.css - THE ORBITAL DROP (POLISHED) */

.alien-footer {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    position: relative;
    padding: 0 0 6rem 0; /* Breathing room at the bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    z-index: 20;
}

/* --- THE TETHER (Laser Anchor) --- */
.footer-tether {
    width: 1px;
    height: 100px; /* Length of the drop */
    
    /* Brighter gradient */
    background: linear-gradient(to bottom, transparent, var(--primary));
    opacity: 0.8; /* Increased visibility */
    box-shadow: 0 0 20px var(--primary); /* Stronger glow */
    
    margin-bottom: 2.5rem;
    position: relative;
}

/* The glowing tip of the laser */
.footer-tether::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 6px; height: 6px; /* Slightly larger node */
    background: #fff;
    box-shadow: 0 0 10px #fff, 0 0 25px var(--primary);
    border-radius: 50%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 800px;
}

/* --- 1. LOGO (Holographic) --- */
.footer-logo {
    width: 150px; /* Slightly larger */
    opacity: 0.9; /* Much clearer */
    filter: brightness(1.1); /* Brighter default */
    transition: all 0.5s ease;
}

.footer-brand-link:hover .footer-logo {
    filter: drop-shadow(0 0 20px rgba(236, 246, 116, 0.4));
    transform: scale(1.05);
}

/* --- 2. NAV (Cinematic) --- */
.footer-nav {
    display: flex;
    gap: 3rem;
    position: relative;
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 0.85rem; /* Bumped up size */
    color: rgba(255, 255, 255, 0.6); /* More visible default */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

/* Hover: White Hot */
.footer-nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px var(--primary);
    letter-spacing: 0.25em; 
}

/* Active Dot */
.footer-nav a::after {
    content: '';
    position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 3px; background: var(--primary);
    opacity: 0; transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--primary);
}
.footer-nav a:hover::after { opacity: 1; bottom: -5px; }

/* --- 3. SOCIAL POD (The Glass Pill) --- */
.social-pod {
    display: flex;
    align-items: center;
    padding: 1rem 2.5rem; /* Larger touch area */
    gap: 2rem;
    
    /* Stronger Glass definition */
    background: rgba(20, 20, 25, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.15); /* Sharper border */
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Lifted off the void */
}

.social-pod:hover {
    border-color: rgba(236, 246, 116, 0.3); /* Yellow tinge on border hover */
    background: rgba(236, 246, 116, 0.05);
    box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 20px rgba(236, 246, 116, 0.1);
}

.social-link {
    color: rgba(255, 255, 255, 0.85); /* BRIGHTER ICONS */
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    color: var(--primary);
    transform: scale(1.3); /* Pop effect */
    text-shadow: 0 0 15px var(--primary); /* Neon glow */
}

.pod-sep {
    width: 1px; height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

/* --- 4. COPYRIGHT (Fixed Visibility) --- */
.footer-copy {
    font-family: monospace;
    font-size: 0.75rem; /* Readable size */
    color: rgba(255, 255, 255, 0.5); /* Much brighter than 0.2 */
    letter-spacing: 0.2em;
    margin-top: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-tether { height: 60px; }
}