/* Equipment page - Updated with GymDepot colors and professional styling */

/* 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;
}

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

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

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

/* Equipment Cards */
.equipment-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;
}

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

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

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.card-header h3 {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

.card-content {
    margin-bottom: 2rem;
}

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

.card-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

/* Dual Links */
.dual-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.learn-btn, .shop-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.learn-btn {
    background: #f8f9fa;
    color: #000000;
    border: 2px solid #000000;
}

.learn-btn:hover {
    background: #000000;
    color: white;
}

.shop-btn {
    background: #1f8570;
    color: white;
    border: 2px solid #1f8570;
}

.shop-btn:hover {
    background: #176b5a;
    border-color: #176b5a;
}

.dual-links i {
    font-size: 1.2rem;
}

.dual-links span {
    font-size: 1rem;
}

.dual-links small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Dual Approach Section */
.dual-approach {
    padding: 4rem 0;
    background: white;
}

.dual-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(400px, 1fr));
    gap: 3rem;
}

.approach-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.approach-card.learn {
    background: #f8f9fa;
    border: 2px solid #000000;
}

.approach-card.shop {
    background: #e8f4f2;
    border: 2px solid #1f8570;
}

.approach-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.approach-card.learn .approach-icon {
    color: #000000;
}

.approach-card.shop .approach-icon {
    color: #1f8570;
}

.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;
}

/* Equipment CTA */
.equipment-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-content {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .equipment-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;
    }
}

@media (max-width: 480px) {
    .category-hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .equipment-card {
        padding: 1.5rem;
    }
    
    .dual-links {
        grid-template-columns: 1fr;
    }
    
    .approach-card {
        padding: 2rem;
    }
}