/* 
 * EZTEAM Custom Styles
 * Usa SOLO clases de color del tema existente (app.css)
 * Compatible con todos los temas: cosmic, blues, burning, etc.
 */

/* ============================================
   HERO SECTION
   ============================================ */

.hero-card {
    /* Usa bg-light-primary del tema para consistencia */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-2px);
}

/* Gradiente de texto usando la clase text-primary del tema */
.gradient-text-primary {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Badge usando bg-light-primary existente */
.badge-primary-glow {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.animate-pulse-slow {
    animation: pulse-glow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* ============================================
   STAT CARDS
   ============================================ */

.stat-card {
    /* Usa bg-light-white-4 para fondo semi-transparente */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.feature-section {
    /* Usa bg-light-white-4 del tema */
    backdrop-filter: blur(10px);
}

.feature-card {
    /* Usa bg-light-white-4 del tema */
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    /* Usa bg-light-primary del tema */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar-dark .navbar-nav .nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover {
    transform: translateY(-1px);
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   UTILITIES
   ============================================ */

.radius-15 {
    border-radius: 15px !important;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-card .card-body {
        padding: 2rem 1rem !important;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
    scroll-behavior: smooth;
}
