/* 
   FSVR - Farming Simulator 25 VR Mod
   Download Resources Styles
*/

/* ===== Download Resources Section ===== */
.download-resources {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.download-resources h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.download-resources h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.download-resources ul {
    list-style: none;
    padding: 0;
}

.download-resources li {
    margin-bottom: 0.8rem;
}

.download-resources a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
    font-weight: 500;
}

.download-resources a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.download-resources i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Specific icon colors */
.download-resources a:nth-child(1) i {
    color: #FF5722; /* PDF icon - orange */
}

.download-resources a:nth-child(2) i {
    color: #2196F3; /* PDF icon - blue */
}

.download-resources a:nth-child(3) i {
    color: #4CAF50; /* Text file icon - green */
}

.download-resources a:nth-child(4) i {
    color: #9C27B0; /* List icon - purple */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .download-resources {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .download-resources h4 {
        font-size: 1.1rem;
    }
    
    .download-resources a {
        font-size: 0.9rem;
    }
}
