/* Reto 2025 - Architecture Lab Styles */

/* Badge components */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .6rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 24px -6px rgba(0, 0, 0, .45);
}

.badge-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #f472b6, #60a5fa);
    box-shadow: 0 0 8px rgba(244, 114, 182, .6), 0 0 12px rgba(96, 165, 250, .5);
}

/* Reveal animations - DISABLED for immediate visibility */
.reveal {
    opacity: 1;
    transform: none;
    /* transition: opacity .6s ease, transform .6s ease; */
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* Floating animations - DISABLED for static content
.float-slow {
    animation: floatY 6s ease-in-out infinite;
}

.float-slower {
    animation: floatY 8s ease-in-out infinite;
    animation-delay: 1.2s;
}

.float-slowest {
    animation: floatY 10s ease-in-out infinite;
    animation-delay: .6s;
}
*/

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Challenge grid and cards */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.challenge-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: .4s ease;
}

.challenge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .2);
    box-shadow: 0 12px 40px -8px rgba(0, 0, 0, .6);
}

.challenge-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f472b6, #a78bfa);
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    margin-bottom: .75rem;
}

/* Mobile navigation menu */
#mobile-menu {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation glass effect */
.nav-glass {
    background: rgba(15, 23, 42, .75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* Challenge category styles for better visual hierarchy */
.challenge-category {
    color: #f472b6;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Enhanced hover effects for interactive elements */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(244, 114, 182, 0.4);
}

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .float-slow,
    .float-slower,
    .float-slowest {
        animation: none !important;
    }
    
    .interactive-hover:hover {
        transform: none !important;
    }
}