/* User page specific styles - GymDepot colors */

/* Category Hero */
.category-hero {
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-text h1 i {
    color: #000000;
    font-size: 3.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* User Categories */
.user-categories {
    padding: 5rem 0;
    background: #f8f9fa;
}

.user-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 3rem;
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* User Cards */
.user-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.user-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 133, 112, 0.15);
    border-color: #1f8570;
}

.user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1f8570, #000000);
}

.user-card.featured {
    border-color: #1f8570;
    background: linear-gradient(135deg, #fff, #f8fffe);
}

.user-card.featured::after {
    content: '⭐ POPULAIRE';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #1f8570;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 3.5rem;
    color: #1f8570;
    transition: color 0.3s ease;
}

.user-card:hover .card-icon {
    color: #000000;
}

.card-badge {
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-subtitle {
    color: #7f8c8d;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.card-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* User Challenges */
.user-challenges {
    background: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #e74c3c;
}

.user-challenges h4 {
    color: #e74c3c;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.user-challenges ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-challenges li {
    padding: 0.3rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.user-challenges li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0.3rem;
    font-size: 0.8rem;
}

/* User Solutions */
.user-solutions {
    margin-bottom: 1.5rem;
}

.user-solutions h4 {
    color: #1f8570;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.solution-tag {
    background: #e8f4f2;
    color: #1f8570;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #1f8570;
}

/* User Benefits */
.user-benefits {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #1f8570;
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
    min-width: 80px;
}

.benefit i {
    font-size: 1.5rem;
    color: #1f8570;
}

.card-footer {
    margin-top: 2rem;
}

.visit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1f8570, #176b5a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.visit-btn:hover {
    background: linear-gradient(135deg, #176b5a, #1f8570);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 133, 112, 0.3);
}

/* Personalization Approach */
.personalization-approach {
    padding: 4rem 0;
    background: white;
}

.personalization-approach h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 3rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-card {
    text-align: center;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.approach-card:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #1f8570;
}

.approach-icon {
    font-size: 3rem;
    color: #1f8570;
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.approach-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.approach-features span {
    color: #333;
    font-size: 0.9rem;
}

/* User CTA */
.user-cta {
    background: linear-gradient(135deg, #000000, #1f1f1f);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-content h2 i {
    color: #1f8570;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.main-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #1f8570;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.main-cta-btn:hover {
    background: #176b5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 133, 112, 0.3);
}

/* Back to Hub */
.back-to-hub {
    padding: 3rem 0;
    background: #f8f9fa;
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #1f1f1f;
    transform: translateY(-2px);
}

.other-categories h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.category-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    min-width: 120px;
    border: 2px solid transparent;
}

.category-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #1f8570;
}

.category-link i {
    font-size: 2rem;
    color: #1f8570;
}

.category-link span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .user-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-benefits {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .solution-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .user-card {
        padding: 1.5rem;
    }
    
    .user-challenges, .user-solutions {
        padding: 1rem;
    }
    
    .approach-card {
        padding: 2rem;
    }
    
    .user-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}