/* style/resources-jilibee-vip.css */
.page-resources-jilibee-vip {
    color: #333333; /* Default text color for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
    background-color: var(--background-color, #FFFFFF); /* Ensure body background is respected */
}

.page-resources-jilibee-vip__hero-section {
    position: relative;
    overflow: hidden;
    color: #FFFFFF; /* Light text for hero section */
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-resources-jilibee-vip__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6); /* Slightly darken image for text readability */
    z-index: 1;
}

.page-resources-jilibee-vip__hero-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for text */
    border-radius: 10px;
    z-index: 2;
}

.page-resources-jilibee-vip__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Highlight title with a golden color */
}

.page-resources-jilibee-vip__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-resources-jilibee-vip__hero-button,
.page-resources-jilibee-vip__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color for CTA */
    color: #000000; /* Dark text for golden button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-resources-jilibee-vip__hero-button:hover,
.page-resources-jilibee-vip__cta-button:hover {
    background-color: #e0a538; /* Slightly darker gold on hover */
}

.page-resources-jilibee-vip__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-resources-jilibee-vip__content-area {
    max-width: 800px; /* Content width 600-800px */
    margin: 40px auto;
    padding: 0 20px;
}

.page-resources-jilibee-vip__section-title {
    font-size: 2.5em;
    color: #000000; /* Main color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-jilibee-vip__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45; /* Golden underline */
    border-radius: 2px;
}

.page-resources-jilibee-vip__sub-section-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-jilibee-vip__introduction-section p,
.page-resources-jilibee-vip__personalized-service-section p,
.page-resources-jilibee-vip__transactions-section p,
.page-resources-jilibee-vip__how-to-join-section p,
.page-resources-jilibee-vip__conclusion-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-jilibee-vip__tier-cards,
.page-resources-jilibee-vip__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-jilibee-vip__tier-card,
.page-resources-jilibee-vip__bonus-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-jilibee-vip__tier-card:hover,
.page-resources-jilibee-vip__bonus-card:hover {
    transform: translateY(-5px);
}

.page-resources-jilibee-vip__card-image {
    width: 100%; /* Ensure image fills card width */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-resources-jilibee-vip__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-resources-jilibee-vip__tier-card p,
.page-resources-jilibee-vip__bonus-card p {
    font-size: 1em;
    color: #555555;
    margin-bottom: 15px;
    flex-grow: 1; /* Allow paragraph to grow and push list down */
}

.page-resources-jilibee-vip__card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.page-resources-jilibee-vip__card-features li {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FCBC45' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E") no-repeat left center;
    background-size: 16px;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #333333;
    font-size: 0.95em;
}

.page-resources-jilibee-vip__transaction-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-resources-jilibee-vip__transaction-list li {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FCBC45' class='bi bi-arrow-right-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E") no-repeat left center;
    background-size: 16px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
}

.page-resources-jilibee-vip__transaction-list li strong {
    color: #000000;
}

.page-resources-jilibee-vip__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-jilibee-vip__join-steps {
    list-style: decimal;
    padding-left: 20px;
    margin-top: 20px;
}

.page-resources-jilibee-vip__join-steps li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-resources-jilibee-vip__join-steps li strong {
    color: #000000;
}

.page-resources-jilibee-vip__join-steps li a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-jilibee-vip__join-steps li a:hover {
    text-decoration: underline;
}

.page-resources-jilibee-vip__faq-item {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-resources-jilibee-vip__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
}

.page-resources-jilibee-vip__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-resources-jilibee-vip__back-link {
    text-align: center;
    margin-top: 50px;
}

.page-resources-jilibee-vip__back-button {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    border: 1px solid #000000;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-jilibee-vip__back-button:hover {
    background-color: #000000;
    color: #FFFFFF;
}

/* Animation for buttons */
.page-resources-jilibee-vip--initial-hidden {
  opacity: 0;
  transform: translateY(20px);
}

.page-resources-jilibee-vip--animated {
  animation: page-resources-jilibee-vip-fadeInUp 0.6s ease-out forwards;
}

@keyframes page-resources-jilibee-vip-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-jilibee-vip {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }

    .page-resources-jilibee-vip__hero-title {
        font-size: 2em;
    }

    .page-resources-jilibee-vip__hero-description {
        font-size: 1em;
    }

    .page-resources-jilibee-vip__hero-button,
    .page-resources-jilibee-vip__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-jilibee-vip__section-title {
        font-size: 2em;
    }

    .page-resources-jilibee-vip__sub-section-title {
        font-size: 1.5em;
    }

    .page-resources-jilibee-vip__tier-cards,
    .page-resources-jilibee-vip__bonus-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-jilibee-vip__content-area {
        padding: 0 15px;
    }

    /* Mobile content images must be responsive and not overflow */
    .page-resources-jilibee-vip img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-resources-jilibee-vip__hero-title {
        font-size: 1.8em;
    }
    .page-resources-jilibee-vip__hero-description {
        font-size: 0.9em;
    }
    .page-resources-jilibee-vip__hero-content {
        width: 95%;
        padding: 15px;
    }
}