/* ============================================
   LA TANDA - FOOTER STYLES v1.0
   Modular footer component
   ============================================ */

.lt-footer {
    background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    padding: 0;
    color: #8b949e;
    font-family: 'Rajdhani', sans-serif;
    margin-top: auto;
}

/* Main Footer Section */
.lt-footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Brand Section */
.lt-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lt-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lt-footer-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.lt-footer-titles {
    display: flex;
    flex-direction: column;
}

.lt-footer-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #00d4ff;
    letter-spacing: 0.5px;
}

.lt-footer-tagline {
    font-size: 0.8rem;
    color: #6e7681;
}

.lt-footer-company {
    font-size: 0.75rem;
    color: #484f58;
    font-style: italic;
    padding-left: 44px;
}

/* Navigation Links */
.lt-footer-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lt-footer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8b949e;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.lt-footer-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
}

.lt-footer-link i {
    font-size: 0.9rem;
    opacity: 0.7;
}

.lt-footer-link:hover i {
    opacity: 1;
}

/* Social Media Section */
.lt-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lt-footer-social-label {
    font-size: 0.8rem;
    color: #6e7681;
}

.lt-footer-social-icons {
    display: flex;
    gap: 8px;
}

.lt-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8b949e;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lt-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Social icon specific colors on hover */
.lt-social-icon[data-social="twitter"]:hover {
    background: rgba(29, 161, 242, 0.15);
    border-color: #1da1f2;
    color: #1da1f2;
}

.lt-social-icon[data-social="telegram"]:hover {
    background: rgba(0, 136, 204, 0.15);
    border-color: #0088cc;
    color: #0088cc;
}

.lt-social-icon[data-social="discord"]:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: #5865f2;
    color: #5865f2;
}

.lt-social-icon[data-social="reddit"]:hover {
    background: rgba(255, 69, 0, 0.15);
    border-color: #ff4500;
    color: #ff4500;
}

.lt-social-icon i {
    font-size: 1rem;
}

/* Coming Soon Badge */
.lt-footer-badge {
    display: flex;
    align-items: center;
}

.lt-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5); }
}

/* Bottom Section */
.lt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1400px;
    margin: 0 auto;
}

.lt-footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lt-footer-copyright {
    font-size: 0.8rem;
    color: #484f58;
}

.lt-footer-corporate {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #6e7681;
    text-decoration: none;
    transition: color 0.2s;
}

.lt-footer-corporate:hover {
    color: #00d4ff;
}

.lt-footer-corporate i {
    font-size: 0.65rem;
}

.lt-footer-version {
    font-size: 0.75rem;
    color: #30363d;
    font-family: 'Space Mono', monospace;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet */
@media (max-width: 1024px) {
    .lt-footer-main {
        padding: 20px 24px;
        gap: 20px;
    }
    
    .lt-footer-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .lt-footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
        gap: 20px;
    }
    
    .lt-footer-brand {
        align-items: center;
    }
    
    .lt-footer-logo {
        flex-direction: column;
        gap: 8px;
    }
    
    .lt-footer-titles {
        align-items: center;
    }
    
    .lt-footer-company {
        padding-left: 0;
    }
    
    .lt-footer-nav {
        justify-content: center;
        gap: 6px;
    }
    
    .lt-footer-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .lt-footer-link span {
        display: none;
    }
    
    .lt-footer-link i {
        font-size: 1.1rem;
        opacity: 1;
    }
    
    .lt-footer-social {
        flex-direction: column;
        gap: 8px;
    }
    
    .lt-footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        text-align: center;
    }
    
    .lt-footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .lt-footer-name {
        font-size: 1.1rem;
    }
    
    .lt-footer-nav {
        gap: 4px;
    }
    
    .lt-footer-link {
        padding: 8px 10px;
    }
    
    .lt-social-icon {
        width: 32px;
        height: 32px;
    }
    
    .lt-coming-soon {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
