/* Downloads Page Styling */

:root {
    --color-one: #000;
    --color-two: #fff;
    --color-three: #f0f0f0;
    --color-accent: #007bff;
}

.downloadsContainer {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.downloadsHeader {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--color-three);
    padding-bottom: 30px;
}

.downloadsHeader h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--color-one);
}

.downloadsHeader p {
    font-size: 1.1em;
    color: #666;
}

.downloadsList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.downloadItem {
    background: var(--color-three);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.downloadItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.downloadItem h3 {
    color: var(--color-one);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.downloadItem p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.downloadItem .downloadMeta {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 15px;
}

.downloadButton {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.downloadButton:hover {
    background-color: #0056b3;
}

.noDownloads {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1em;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .downloadsContainer {
        margin: 40px auto;
    }

    .downloadsHeader h1 {
        font-size: 2em;
    }

    .downloadsList {
        grid-template-columns: 1fr;
    }
}
