/* Footer Styles - Glass blur effect matching header */

footer {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    min-height: 10vh;
    position: relative;
    z-index: 100;
    margin-top: auto;
    padding: 20px 0;
    
    /* Enhanced Glass blur effect - Extra transparent */
    background: 
        linear-gradient(135deg, rgba(19, 19, 19, 0.15) 0%, rgba(25, 25, 25, 0.2) 100%),
        linear-gradient(90deg, rgba(255,255,255,0.005) 0%, transparent 50%, rgba(255,255,255,0.005) 100%);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    box-shadow: 
        0 -4px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 -1px 3px rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    
    font-size: 0.85vw;
    color: #e0e0e0;
    
    /* Make sure it can blur the background behind */
    overflow: hidden;
}

footer p {
    margin: 0;
    color: rgba(224, 224, 224, 0.7);
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

/* Subtle animation for footer content */
footer p {
    transition: all 0.3s ease;
}

footer:hover p {
    color: rgba(224, 224, 224, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Responsive footer */
@media (max-width: 768px) {
    footer {
        font-size: 3vw;
        min-height: 8vh;
        padding: 15px 0;
    }
    
    footer p {
        font-size: 3vw;
    }
}

/* Add glass effect pseudo-element - Extra transparent */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.008) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255,255,255,0.008) 0%, transparent 50%),
        linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.003) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* Add subtle glow effect - Extra transparent */
footer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.03) 25%, 
        rgba(255,255,255,0.05) 50%, 
        rgba(255,255,255,0.03) 75%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}
