/* style/vip-club.css */

/* Base Styles */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark background */
    line-height: 1.6;
    background-color: var(--dark-bg-1);
}

.page-vip-club__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-vip-club__section-title {
    font-size: 2.5em;
    color: #E0B34C; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    padding-top: 40px;
}

.page-vip-club__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #f0f0f0;
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure header offset */
    box-sizing: border-box;
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-vip-club__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B34C;
    line-height: 1.2;
}

.page-vip-club__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-vip-club__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-vip-club__btn-primary {
    background-color: #E0B34C;
    color: #0A2240;
    border: 2px solid #E0B34C;
}

.page-vip-club__btn-primary:hover {
    background-color: #f0c96e;
    border-color: #f0c96e;
}

.page-vip-club__btn-secondary {
    background-color: transparent;
    color: #E0B34C;
    border: 2px solid #E0B34C;
}

.page-vip-club__btn-secondary:hover {
    background-color: #E0B34C;
    color: #0A2240;
}

/* Benefits Section */
.page-vip-club__benefits-section {
    padding: 80px 0;
    background-color: #0A2240;
}

.page-vip-club__tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club__tier-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.page-vip-club__tier-card:hover {
    transform: translateY(-10px);
}

.page-vip-club__tier-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-vip-club__tier-title {
    font-size: 1.8em;
    color: #E0B34C;
    margin-bottom: 20px;
}

.page-vip-club__tier-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.page-vip-club__tier-benefits li {
    margin-bottom: 10px;
    font-size: 1.05em;
    display: flex;
    align-items: center;
}

.page-vip-club__icon {
    color: #E0B34C;
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2em;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
    padding: 80px 0;
    background-color: var(--dark-bg-1);
}

.page-vip-club__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 10px;
}

.page-vip-club__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    cursor: pointer;
}

.page-vip-club__video-caption {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: #aaa;
}

.page-vip-club__cta-buttons--center {
    margin-top: 40px;
}

/* Exclusive Offers Section */
.page-vip-club__exclusive-offers-section {
    padding: 80px 0;
    background-color: #0A2240;
}

.page-vip-club__offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club__offer-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.page-vip-club__offer-card:hover {
    transform: translateY(-10px);
}

.page-vip-club__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-vip-club__offer-title {
    font-size: 1.5em;
    color: #E0B34C;
    margin-bottom: 15px;
}

.page-vip-club__offer-title a {
    color: #E0B34C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-vip-club__offer-title a:hover {
    color: #f0c96e;
}

.page-vip-club__offer-text {
    font-size: 1em;
    line-height: 1.5;
    flex-grow: 1;
    color: #f0f0f0;
}

/* FAQ Section */
.page-vip-club__faq-section {
    padding: 80px 0;
    background-color: var(--dark-bg-1);
}

.page-vip-club__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.page-vip-club__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-vip-club__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #0A2240;
    transition: background-color 0.3s ease;
    color: #E0B34C;
}

.page-vip-club__faq-question:hover {
    background-color: #1a3a60;
}

.page-vip-club__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
    transform: rotate(45deg);
}

.page-vip-club__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
    color: #f0f0f0;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-vip-club__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

/* CTA Section */
.page-vip-club__cta-section {
    padding: 80px 0;
    background-color: #0A2240;
    text-align: center;
}

.page-vip-club__cta-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.page-vip-club__cta-title {
    font-size: 2.8em;
    color: #E0B34C;
    margin-bottom: 20px;
}

.page-vip-club__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-club__hero-title {
        font-size: 3em;
    }
    .page-vip-club__hero-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-vip-club {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-vip-club__container,
    .page-vip-club__hero-section,
    .page-vip-club__benefits-section,
    .page-vip-club__how-to-join-section,
    .page-vip-club__exclusive-offers-section,
    .page-vip-club__faq-section,
    .page-vip-club__cta-section,
    .page-vip-club__cta-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-vip-club__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-vip-club__hero-title {
        font-size: 2.2em;
    }

    .page-vip-club__hero-description {
        font-size: 1em;
    }

    .page-vip-club__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-vip-club__btn-primary,
    .page-vip-club__btn-secondary,
    .page-vip-club a[class*="button"],
    .page-vip-club a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-vip-club__section-title {
        font-size: 1.8em;
        padding-top: 20px;
    }

    .page-vip-club__section-description {
        margin-bottom: 30px;
    }

    .page-vip-club__tiers-grid,
    .page-vip-club__offers-grid {
        grid-template-columns: 1fr;
    }

    .page-vip-club__tier-card,
    .page-vip-club__offer-card {
        padding: 20px;
    }

    .page-vip-club__tier-image,
    .page-vip-club__offer-image,
    .page-vip-club img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-vip-club__video-wrapper {
        padding-bottom: 56.25%;
        height: auto;
    }

    .page-vip-club__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-vip-club__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-vip-club__faq-answer {
        padding: 0 20px;
    }

    .page-vip-club__faq-item.active .page-vip-club__faq-answer {
        padding: 15px 20px;
    }

    .page-vip-club__cta-title {
        font-size: 2em;
    }

    .page-vip-club__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__hero-description {
        font-size: 0.9em;
    }
    .page-vip-club__section-title,
    .page-vip-club__cta-title {
        font-size: 1.5em;
    }
}