/* style/vip-club.css */
:root {
    --primary-color: #0A1931;
    --secondary-color: #E0B143;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F8F8F8;
    --border-color: #e0e0e0;
}

.page-vip-club {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-vip-club h1, .page-vip-club h2, .page-vip-club h3, .page-vip-club h4, .page-vip-club h5, .page-vip-club h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club h1 {
    font-size: 3.2em;
    text-align: center;
    color: var(--text-light);
}

.page-vip-club h2 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.page-vip-club h3 {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-vip-club p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-vip-club ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-vip-club li {
    margin-bottom: 0.5em;
}

.page-vip-club a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-vip-club a:hover {
    color: #c79a37; /* Slightly darker gold for hover */
    text-decoration: underline;
}

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

/* Hero Section */
.page-vip-club .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: var(--primary-color); /* Fallback for image */
    color: var(--text-light);
    overflow: hidden;
}

.page-vip-club .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-vip-club .hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-club .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-vip-club .hero-image img:hover {
    transform: scale(1.02);
}

.page-vip-club .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background-color: rgba(10, 25, 49, 0.85); /* Semi-transparent background for text */
    border-radius: 10px;
    margin-top: -50px; /* Overlap with image slightly */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club .hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club .hero-content p {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.page-vip-club .cta-button:hover {
    background: #c79a37; /* Slightly darker gold */
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-vip-club .cta-button-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club .cta-button-small:hover {
    background: #c79a37;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club .inline-link {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
}

.page-vip-club .inline-link:hover {
    color: #c79a37;
}

/* Section Styling */
.page-vip-club section {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid #eee;
}

.page-vip-club section:nth-of-type(even) {
    background-color: #f0f0f0;
}

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

.page-vip-club .tier-card {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club .tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-club .tier-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
}

.page-vip-club .tier-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-vip-club .tier-card h3 .page-vip-club.tier-link {
    color: var(--primary-color);
    text-decoration: none;
}

.page-vip-club .tier-card h3 .page-vip-club.tier-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-vip-club .tier-card p {
    font-size: 1em;
    color: var(--text-dark);
    min-height: 60px;
}

.page-vip-club .tier-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
    color: var(--text-dark);
}

.page-vip-club .tier-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-vip-club .tier-card ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Benefits Grid */
.page-vip-club .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-vip-club .benefit-item {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club .benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-vip-club .benefit-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club .benefit-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-vip-club .benefit-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* FAQ Section */
.page-vip-club .faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--text-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 25px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin: 0;
    font-size: 1.05em;
}

/* Final CTA */
.page-vip-club .section-final-cta {
    text-align: center;
    padding-bottom: 80px;
}

.page-vip-club .section-final-cta h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-vip-club .section-final-cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club h1 {
        font-size: 2.8em;
    }
    .page-vip-club h2 {
        font-size: 2em;
    }
    .page-vip-club h3 {
        font-size: 1.6em;
    }
    .page-vip-club .hero-content p {
        font-size: 1.1em;
    }
    .page-vip-club .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-vip-club .hero-section {
        padding: 60px 15px;
    }
    .page-vip-club .hero-content h1 {
        font-size: 2.2em;
    }
    .page-vip-club .hero-content p {
        font-size: 1em;
    }
    .page-vip-club h1 {
        font-size: 2.5em;
    }
    .page-vip-club h2 {
        font-size: 1.8em;
    }
    .page-vip-club h3 {
        font-size: 1.4em;
    }
    .page-vip-club p, .page-vip-club ul, .page-vip-club li {
        font-size: 1em;
    }
    .page-vip-club .cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-vip-club .tier-grid, .page-vip-club .benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-vip-club .tier-card, .page-vip-club .benefit-item {
        padding: 20px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-answer {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .page-vip-club .hero-content {
        margin-top: -30px;
    }
}

@media (max-width: 480px) {
    .page-vip-club .hero-content h1 {
        font-size: 1.8em;
    }
    .page-vip-club .hero-content p {
        font-size: 0.95em;
    }
    .page-vip-club h1 {
        font-size: 2em;
    }
    .page-vip-club h2 {
        font-size: 1.5em;
    }
    .page-vip-club h3 {
        font-size: 1.2em;
    }
    .page-vip-club .cta-button {
        width: 100%;
        max-width: 280px;
    }
    .page-vip-club .hero-image {
        margin-bottom: 20px;
    }
}