/* 
 * footer.css
 * Premium Glass & Glow Effects V3
 */

/* 
 * 1. Ambient Background Animations 
 */
@keyframes float-orb-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes float-orb-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 40px) scale(1.2);
    }

    66% {
        transform: translate(20px, -30px) scale(0.8);
    }
}

.animate-orb-1 {
    animation: float-orb-1 15s ease-in-out infinite;
}

.animate-orb-2 {
    animation: float-orb-2 18s ease-in-out infinite alternate;
}

/* 
 * 2. Premium Glassmorphism Container 
 */
.glass-panel {
    background: rgba(30, 41, 59, 0.7);
    /* Brand-900 with opacity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        /* Soft drop shadow */
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Inner rim light */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* 
 * 3. Typography & Links 
 */
.footer-heading {
    letter-spacing: 0.1em;
}

.footer-link {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #38bdf8;
    /* Sky-400 */
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    padding-left: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-link:hover::before {
    opacity: 1;
    box-shadow: 0 0 8px #38bdf8;
}

/* 
 * 4. Solidarity Badge Hover Effect 
 */
.solidarity-badge-container {
    perspective: 1000px;
}

.solidarity-badge {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    background-color: transparent;
    /* Changed to transparent to respect image corners */
    border-radius: 1rem;
    /* rounded-2xl equivalent */
}

.solidarity-badge:hover {
    transform: rotateY(5deg) rotateX(2deg) scale(1.02);
    /* box-shadow: 0 25px 50px -12px rgba(239, 64, 54, 0.5); Removed to depend on image shadow or add carefully */
}

/* 
 * 5. Input Field Glow 
 */
.glass-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Badge Text Styles */
.badge-title {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}