/* style/resources-plushph-platform-overview.css */
/* Base styles for the page content, scoped to .page-resources-plushph-platform-overview */
.page-resources-plushph-platform-overview {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Ensures consistency with body background */
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

/* Hero Section */
.page-resources-plushph-platform-overview__hero-section {
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Minimum height for hero section */
}

.page-resources-plushph-platform-overview__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-plushph-platform-overview__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 8px;
    margin: 20px;
}

.page-resources-plushph-platform-overview__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-resources-plushph-platform-overview__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-resources-plushph-platform-overview__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-plushph-platform-overview__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-resources-plushph-platform-overview__button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-resources-plushph-platform-overview__button--register:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.page-resources-plushph-platform-overview__button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-resources-plushph-platform-overview__button--login:hover {
    background-color: #E0A030;
    transform: translateY(-2px);
}

/* Content Area */
.page-resources-plushph-platform-overview__content-area {
    max-width: 800px; /* Content width for comfortable reading */
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-resources-plushph-platform-overview__section-title {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-plushph-platform-overview__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333333;
}

.page-resources-plushph-platform-overview__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-resources-plushph-platform-overview__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-resources-plushph-platform-overview__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-plushph-platform-overview__list-item {
    background-color: #F8F8F8;
    border-left: 5px solid #FCBC45;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.page-resources-plushph-platform-overview__list-title {
    font-size: 1.4em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-plushph-platform-overview__list-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 10px;
}

.page-resources-plushph-platform-overview__text-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-plushph-platform-overview__text-link:hover {
    color: #E0A030;
    text-decoration: underline;
}

.page-resources-plushph-platform-overview__action-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-resources-plushph-platform-overview__button--promo,
.page-resources-plushph-platform-overview__button--vip,
.page-resources-plushph-platform-overview__button--download,
.page-resources-plushph-platform-overview__button--support,
.page-resources-plushph-platform-overview__button--responsible,
.page-resources-plushph-platform-overview__button--join-now,
.page-resources-plushph-platform-overview__button--explore {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.page-resources-plushph-platform-overview__button--promo:hover,
.page-resources-plushph-platform-overview__button--vip:hover,
.page-resources-plushph-platform-overview__button--download:hover,
.page-resources-plushph-platform-overview__button--support:hover,
.page-resources-plushph-platform-overview__button--responsible:hover,
.page-resources-plushph-platform-overview__button--join-now:hover,
.page-resources-plushph-platform-overview__button--explore:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
}

.page-resources-plushph-platform-overview__call-to-action {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-resources-plushph-platform-overview__return-link-wrapper {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #E0E0E0;
}

.page-resources-plushph-platform-overview__return-link {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-plushph-platform-overview__return-link:hover {
    color: #FCBC45;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-plushph-platform-overview__hero-title {
        font-size: 2em;
    }

    .page-resources-plushph-platform-overview__hero-description {
        font-size: 1em;
    }

    .page-resources-plushph-platform-overview__hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-resources-plushph-platform-overview__button {
        width: 100%;
    }

    .page-resources-plushph-platform-overview__content-area {
        margin: 20px auto;
        padding: 15px;
    }

    .page-resources-plushph-platform-overview__section-title {
        font-size: 1.6em;
    }

    .page-resources-plushph-platform-overview__paragraph {
        font-size: 0.95em;
    }

    /* Enforce mobile image responsiveness */
    .page-resources-plushph-platform-overview img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-resources-plushph-platform-overview__hero-content {
        padding: 20px 15px;
    }

    .page-resources-plushph-platform-overview__hero-title {
        font-size: 1.8em;
    }

    .page-resources-plushph-platform-overview__hero-description {
        font-size: 0.9em;
    }

    .page-resources-plushph-platform-overview__button {
        padding: 10px 20px;
    }

    .page-resources-plushph-platform-overview__list-item {
        padding: 15px;
    }

    .page-resources-plushph-platform-overview__list-title {
        font-size: 1.2em;
    }
}