/* style/index.css */

/* Base styles for the page content */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #f5ddc6; /* Light text for readability on dark backgrounds */
    background-color: #0A2239; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-index-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-index-section-description {
    font-size: 1.1em;
    color: #f5ddc6;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-index-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.page-index-btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2239; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-index-btn-primary:hover {
    background-color: #e0b800; /* Slightly darker gold on hover */
    border-color: #e0b800;
}

.page-index-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-index-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
}

.page-index-btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-index-btn-text {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    text-decoration: underline;
}

.page-index-btn-text:hover {
    color: #e0b800;
}

/* Hero Section */
.page-index-hero-section {
    background: linear-gradient(135deg, #0A2239, #1a3a5a);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.page-index-hero-section .page-index-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-index-hero-content {
    flex: 1;
    min-width: 300px;
}

.page-index-hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-hero-description {
    font-size: 1.2em;
    color: #f5ddc6;
    margin-bottom: 40px;
}

.page-index-hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-index-hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-index-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-index-features-section {
    background-color: #0A2239;
    padding: 80px 0;
}

.page-index-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-feature-item {
    background-color: #1a3a5a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-index-feature-item:hover {
    transform: translateY(-10px);
}

.page-index-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-index-feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-feature-text {
    font-size: 1em;
    color: #f5ddc6;
}

/* How It Works Section */
.page-index-how-it-works-section {
    background-color: #0A2239;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-step-item {
    background-color: #1a3a5a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-step-number {
    font-size: 3em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-index-step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-step-text {
    font-size: 1em;
    color: #f5ddc6;
}

/* Recommended Platforms Section */
.page-index-recommended-platforms-section {
    background-color: #0A2239;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-platform-card {
    background-color: #1a3a5a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-platform-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid #FFD700;
}

.page-index-platform-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-platform-description {
    font-size: 1em;
    color: #f5ddc6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Details List Section */
.page-index-details-list-section {
    background-color: #0A2239;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-detail-card {
    background-color: #1a3a5a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-detail-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-index-detail-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-index-detail-title a:hover {
    color: #e0b800;
    text-decoration: underline;
}

.page-index-detail-description {
    font-size: 0.95em;
    color: #f5ddc6;
    margin-bottom: 20px;
}

/* Call to Action Bottom Section */
.page-index-cta-bottom-section {
    background-color: #1a3a5a;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-cta-bottom-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-cta-bottom-description {
    font-size: 1.2em;
    color: #f5ddc6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-hero-section .page-index-container {
        flex-direction: column;
        text-align: center;
    }

    .page-index-hero-content, .page-index-hero-image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-index-hero-cta-buttons {
        justify-content: center;
    }

    .page-index-hero-title {
        font-size: 2.8em;
    }

    .page-index-section-title {
        font-size: 2em;
    }

    .page-index-cta-bottom-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-hero-section {
        padding: 60px 0;
    }

    .page-index-hero-title {
        font-size: 2.2em;
    }

    .page-index-hero-description {
        font-size: 1em;
    }

    .page-index-btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-index-section-title {
        font-size: 1.8em;
    }

    .page-index-section-description {
        font-size: 0.95em;
    }

    .page-index-features-grid, .page-index-steps-grid, .page-index-platforms-grid, .page-index-details-grid {
        grid-template-columns: 1fr;
    }

    .page-index-cta-bottom-title {
        font-size: 1.8em;
    }

    .page-index-cta-bottom-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-hero-section {
        padding: 40px 0;
    }

    .page-index-hero-title {
        font-size: 1.8em;
    }

    .page-index-hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-index-btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .page-index-section-title {
        font-size: 1.5em;
    }

    .page-index-cta-bottom-title {
        font-size: 1.6em;
    }
}