/* style/download.css */

/* Base styles for the download page */
.page-download {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark background */
    background-color: var(--black-color); /* Inherit from shared.css */
}

/* Header offset for the first section */
.page-download__hero-section {
    padding-top: var(--header-offset, 120px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    background: linear-gradient(135deg, #26A9E0, #1A7BB0); /* Brand color gradient */
    color: #ffffff;
}

.page-download__hero-content {
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    position: relative;
}

.page-download__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 800px;
    z-index: 5;
    opacity: 0.8;
}

.page-download__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.page-download__download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General button styles */
.page-download__btn-primary,
.page-download__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-download__btn-primary {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
    box-shadow: 0 4px 15px rgba(38, 169, 224, 0.4);
}

.page-download__btn-primary:hover {
    background: #1A7BB0;
    border-color: #1A7BB0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 169, 224, 0.6);
}

.page-download__btn-secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}