/* style/vip-club-tiers.css */

/* Base Styles for the VIP Club Tiers page */
.page-vip-club-tiers {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-vip-club-tiers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-vip-club-tiers__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-vip-club-tiers__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-vip-club-tiers__sub-heading {
    font-size: 1.8em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-vip-club-tiers__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-vip-club-tiers__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-vip-club-tiers__list li {
    margin-bottom: 8px;
}

/* Hero Section */
.page-vip-club-tiers__hero-section {
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
    padding: 0; /* Hero image will fill the space */
}

.page-vip-club-tiers__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Darken image for text readability, not changing color */
}

.page-vip-club-tiers__hero-container {
    position: relative;
    width: 100%;
}

.page-vip-club-tiers__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    z-index: 10;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.page-vip-club-tiers__main-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club-tiers__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-vip-club-tiers__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color for CTA */
    color: #000000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-vip-club-tiers__cta-button:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

/* Introduction Section */
.page-vip-club-tiers__introduction-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

/* Tiers Overview Section */
.page-vip-club-tiers__tiers-overview {
    padding: 60px 0;
    background-color: #F8F8F8;
}

.page-vip-club-tiers__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px;
}

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

.page-vip-club-tiers__tier-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #000000; /* Default border, will be overridden */
}

.page-vip-club-tiers__tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club-tiers__tier-card:nth-child(1) { border-top-color: #b08d57; /* Bronze */ }
.page-vip-club-tiers__tier-card:nth-child(2) { border-top-color: #c0c0c0; /* Silver */ }
.page-vip-club-tiers__tier-card:nth-child(3) { border-top-color: #ffd700; /* Gold */ }
.page-vip-club-tiers__tier-card:nth-child(4) { border-top-color: #e5e4e2; /* Platinum */ }
.page-vip-club-tiers__tier-card:nth-child(5) { border-top-color: #b9f2ff; /* Diamond */ }