/* style/download-center.css */

/* General Styling for Download Center Page */
.page-download-center {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light backgrounds */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background */
}

.page-download-center__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-download-center__hero {
    background: linear-gradient(135deg, #003366, #004d99); /* Deep blue gradient */
    color: #ffffff; /* White text for dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-download-center__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-center__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.8;
}

.page-download-center__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-download-center__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    cursor: pointer;
}

.page-download-center__btn--primary {
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Deep blue text */
    border: 2px solid #FFCC00;
}

.page-download-center__btn--primary:hover {
    background-color: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-download-center__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Gold text */
    border: 2px solid #FFCC00;
}

.page-download-center__btn--secondary:hover {
    background-color: rgba(255, 204, 0, 0.1);
    transform: translateY(-3px);
}

.page-download-center__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2; /* Subtle background image */
}

.page-download-center__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

/* Section General */
.page-download-center__section {
    padding: 60px 0;
    text-align: center;
}

.page-download-center__section:nth-of-type(even) {
    background-color: #f1f1f1; /* Slightly darker background for alternating sections */
}

.page-download-center__section-title {
    font-size: 2.2em;
    color: #003366; /* Deep blue for titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download-center__section-subtitle {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Download Section */
.page-download-center__why-download {
    background-color: #ffffff;
}

.page-download-center__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-download-center__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-download-center__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-download-center__feature-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
}

.page-download-center__feature-description {
    color: #666666;
    font-size: 0.95em;
}

/* Download Options Section */
.page-download-center__download-options {
    background-color: #f1f1f1;
}

.page-download-center__download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center__download-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center__download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-download-center__download-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-download-center__download-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-center__download-description {
    color: #666666;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1; /* Ensures consistent height */
}

.page-download-center__qr-code-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #555555;
}

.page-download-center__qr-code {
    width: 100px;
    height: 100px;
    border: 1px solid #eeeeee;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.page-download-center__btn--download {
    background-color: #003366; /* Deep blue button */
    color: #FFCC00; /* Gold text */
    border: 2px solid #003366;
    padding: 12px 25px;
    font-size: 1em;
    margin-top: auto; /* Push button to bottom */
}

.page-download-center__btn--download:hover {
    background-color: #002244; /* Darker blue */
    border-color: #002244;
}

/* Detail Pages Section */
.page-download-center__detail-pages {
    background-color: #ffffff;
}

.page-download-center__detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-download-center__detail-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center__detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-download-center__detail-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-center__detail-title a {
    color: #003366; /* Deep blue for link titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-download-center__detail-title a:hover {
    color: #FFCC00; /* Gold on hover */
}

.page-download-center__detail-description {
    color: #555555;
    font-size: 0.9em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-download-center__btn--link {
    background-color: transparent;
    color: #003366; /* Deep blue for link button */
    border: 1px solid #003366;
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: auto;
}

.page-download-center__btn--link:hover {
    background-color: #003366;
    color: #ffffff;
}

/* Call to Action Section */
.page-download-center__cta {
    background-color: #003366; /* Dark blue background */
    color: #ffffff; /* White text */
    padding: 80px 0;
}

.page-download-center__cta .page-download-center__section-title {
    color: #FFCC00; /* Gold title */
}

.page-download-center__cta .page-download-center__section-subtitle {
    color: #f0f0f0; /* Light gray subtitle */
}

.page-download-center__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center__hero-title {
        font-size: 2.2em;
    }
    .page-download-center__section-title {
        font-size: 1.8em;
    }
    .page-download-center__features-grid,
    .page-download-center__download-grid,
    .page-download-center__detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-download-center__hero {
        padding: 60px 0;
    }
    .page-download-center__hero-title {
        font-size: 1.8em;
    }
    .page-download-center__hero-description {
        font-size: 1em;
    }
    .page-download-center__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-download-center__section {
        padding: 40px 0;
    }
    .page-download-center__section-title {
        font-size: 1.6em;
    }
    .page-download-center__download-item,
    .page-download-center__feature-item,
    .page-download-center__detail-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-download-center__hero-title {
        font-size: 1.5em;
    }
    .page-download-center__hero-description {
        font-size: 0.9em;
    }
    .page-download-center__btn {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-download-center__section-title {
        font-size: 1.4em;
    }
    .page-download-center__features-grid,
    .page-download-center__download-grid,
    .page-download-center__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center__download-image {
        width: 120px;
        height: 120px;
    }
    .page-download-center__qr-code {
        width: 80px;
        height: 80px;
    }
}