/* Home Page Tracks Section Styles - Original Theme */

.tracks-section {
    padding: 100px 0;
    background: #ffffff; /* Reverted to white */
    color: #0a0a0a;
}

.tracks-section .section-header h2 {
    color: #0a0a0a;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.track-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.track-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.track-card-icon {
    width: 70px;
    height: 70px;
    background: #f0f7f1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #39B54A;
    transition: all 0.4s ease;
}

.track-card:hover .track-card-icon {
    background: #39B54A;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.track-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0a0a0a;
    line-height: 1.3;
}

.track-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.track-card .learn-more {
    font-size: 0.95rem;
    font-weight: 600;
    color: #39B54A;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.track-card:hover .learn-more {
    gap: 15px;
}

@media (max-width: 992px) {
    .tracks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tracks-grid {
        grid-template-columns: 1fr;
    }
    
    .track-card {
        padding: 40px 25px;
    }
    
    .tracks-section {
        padding: 70px 0;
    }
}
