/* style/resources-ph-love-game-strategies.css */

.page-resources-ph-love-game-strategies {
    color: #333333; /* Default text color for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-resources-ph-love-game-strategies__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    padding-bottom: 60px;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-resources-ph-love-game-strategies__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-resources-ph-love-game-strategies__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-resources-ph-love-game-strategies__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-resources-ph-love-game-strategies__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-ph-love-game-strategies__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
    line-height: 1.2;
}

.page-resources-ph-love-game-strategies__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.page-resources-ph-love-game-strategies__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-ph-love-game-strategies__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-ph-love-game-strategies__button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-resources-ph-love-game-strategies__button--register:hover {
    background-color: #f0f0f0;
}

.page-resources-ph-love-game-strategies__button--explore {
    background-color: #FCBC45;
    color: #000000;
}

.page-resources-ph-love-game-strategies__button--explore:hover {
    background-color: #e0a53a;
}

.page-resources-ph-love-game-strategies__content-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-resources-ph-love-game-strategies__article {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-ph-love-game-strategies__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-resources-ph-love-game-strategies__section-title:first-of-type {
    margin-top: 0;
}

.page-resources-ph-love-game-strategies__sub-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-ph-love-game-strategies__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-ph-love-game-strategies__article-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-resources-ph-love-game-strategies__text-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-ph-love-game-strategies__text-link:hover {
    color: #e0a53a;
    text-decoration: underline;
}

.page-resources-ph-love-game-strategies__call-to-action {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-resources-ph-love-game-strategies__button--join {
    background-color: #FCBC45;
    color: #000000;
}

.page-resources-ph-love-game-strategies__button--join:hover {
    background-color: #e0a53a;
}

.page-resources-ph-love-game-strategies__button--download {
    background-color: #000000;
    color: #FFFFFF;
}

.page-resources-ph-love-game-strategies__button--download:hover {
    background-color: #333333;
}

.page-resources-ph-love-game-strategies__related-resources {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-ph-love-game-strategies__sidebar-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.page-resources-ph-love-game-strategies__resource-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-resources-ph-love-game-strategies__resource-list li {
    margin-bottom: 15px;
}

.page-resources-ph-love-game-strategies__resource-list li a {
    color: #000000;
    text-decoration: none;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.page-resources-ph-love-game-strategies__resource-list li a:hover {
    color: #FCBC45;
    text-decoration: underline;
}

.page-resources-ph-love-game-strategies__button--back {
    background-color: #000000;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
}

.page-resources-ph-love-game-strategies__button--back:hover {
    background-color: #333333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-ph-love-game-strategies__content-area {
        grid-template-columns: 1fr;
    }

    .page-resources-ph-love-game-strategies__hero-title {
        font-size: 2.5em;
    }

    .page-resources-ph-love-game-strategies__hero-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-resources-ph-love-game-strategies__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
        padding-bottom: 40px;
    }

    .page-resources-ph-love-game-strategies__hero-container {
        padding: 60px 15px;
    }

    .page-resources-ph-love-game-strategies__hero-title {
        font-size: 2em;
    }

    .page-resources-ph-love-game-strategies__hero-description {
        font-size: 1em;
    }

    .page-resources-ph-love-game-strategies__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-ph-love-game-strategies__button {
        width: 100%;
        padding: 12px 20px;
    }

    .page-resources-ph-love-game-strategies__article {
        padding: 20px;
    }

    .page-resources-ph-love-game-strategies__section-title {
        font-size: 1.8em;
    }

    .page-resources-ph-love-game-strategies__sub-title {
        font-size: 1.5em;
    }

    .page-resources-ph-love-game-strategies__paragraph {
        font-size: 1em;
    }

    .page-resources-ph-love-game-strategies__article-image {
        max-width: 100%;
        height: auto;
    }

    .page-resources-ph-love-game-strategies__related-resources {
        padding: 20px;
    }

    .page-resources-ph-love-game-strategies__sidebar-title {
        font-size: 1.5em;
    }

    .page-resources-ph-love-game-strategies__resource-list li a {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-ph-love-game-strategies__hero-title {
        font-size: 1.6em;
    }

    .page-resources-ph-love-game-strategies__hero-description {
        font-size: 0.9em;
    }

    .page-resources-ph-love-game-strategies__section-title {
        font-size: 1.5em;
    }

    .page-resources-ph-love-game-strategies__sub-title {
        font-size: 1.3em;
    }
}