/* style/vip-club-exclusive-events.css */

/* Base styles for the VIP Club Exclusive Events page */
.page-vip-club-exclusive-events {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F0824; /* A slightly lighter variant of main color for contrast */
    line-height: 1.6;
}

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

.page-vip-club-exclusive-events .highlight {
    color: #FFD700; /* Accent color for highlights */
}

.page-vip-club-exclusive-events .keyword {
    font-weight: bold;
    color: #FFD700;
}

/* Buttons */
.page-vip-club-exclusive-events .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.page-vip-club-exclusive-events .btn-primary {
    background-color: #FFD700; /* Accent color for primary buttons */
    color: #1A0D3B; /* Main color for text on accent button */
    border: none;
}

.page-vip-club-exclusive-events .btn-primary:hover {
    background-color: #E5C100; /* Slightly darker accent on hover */
    transform: translateY(-2px);
}

.page-vip-club-exclusive-events .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color for secondary button text */
    border: 2px solid #FFD700;
}

.page-vip-club-exclusive-events .btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1); /* Light accent background on hover */
    transform: translateY(-2px);
}

.page-vip-club-exclusive-events .cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Section Titles */
.page-vip-club-exclusive-events .section-title {
    font-size: 2.8em;
    color: #FFFFFF; /* White for main titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-vip-club-exclusive-events .section-description {
    font-size: 1.1em;
    color: #B0B0B0; /* Lighter gray for descriptions */
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-vip-club-exclusive-events .hero-section {
    background-color: #1A0D3B; /* Main color for hero background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-vip-club-exclusive-events .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 13, 59, 0.8), rgba(255, 215, 0, 0.1));
    z-index: 1;
}

.page-vip-club-exclusive-events .hero-section .container {
    position: relative;
    z-index: 2;
}

.page-vip-club-exclusive-events .hero-title {
    font-size: 4em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.page-vip-club-exclusive-events .hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club-exclusive-events .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-vip-club-exclusive-events .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* About VIP Section */
.page-vip-club-exclusive-events .about-vip-section {
    padding: 80px 0;
    background-color: #1A0D3B; /* Main color */
}

.page-vip-club-exclusive-events .about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-vip-club-exclusive-events .about-content .text-content {
    flex: 2;
    min-width: 300px;
}

.page-vip-club-exclusive-events .about-content .text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-vip-club-exclusive-events .about-content .image-content {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-vip-club-exclusive-events .feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* VIP Benefits Section */
.page-vip-club-exclusive-events .vip-benefits-section {
    padding: 80px 0;
    background-color: #0F0824;
}

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

.page-vip-club-exclusive-events .benefit-item {
    background-color: #1A0D3B; /* Main color for benefit cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-exclusive-events .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-club-exclusive-events .benefit-item .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-vip-club-exclusive-events .benefit-item h3 {
    font-size: 1.5em;
    color: #FFD700; /* Accent color for benefit titles */
    margin-bottom: 15px;
}

.page-vip-club-exclusive-events .benefit-item p {
    color: #B0B0B0;
    font-size: 1em;
}

/* Exclusive Events Gallery */
.page-vip-club-exclusive-events .exclusive-events-gallery {
    padding: 80px 0;
    background-color: #1A0D3B;
}

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

.page-vip-club-exclusive-events .event-card {
    background-color: #0F0824;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-exclusive-events .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club-exclusive-events .event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-vip-club-exclusive-events .event-info {
    padding: 25px;
}

.page-vip-club-exclusive-events .event-info h3 {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-vip-club-exclusive-events .event-info p {
    color: #B0B0B0;
    font-size: 0.95em;
}

/* How to Become VIP Section */
.page-vip-club-exclusive-events .how-to-become-vip-section {
    padding: 80px 0;
    background-color: #0F0824;
}

.page-vip-club-exclusive-events .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-vip-club-exclusive-events .step-item {
    background-color: #1A0D3B;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-exclusive-events .step-item .step-number {
    font-size: 3em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1;
}

.page-vip-club-exclusive-events .step-item h3 {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-vip-club-exclusive-events .step-item p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-vip-club-exclusive-events .step-item p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-vip-club-exclusive-events .step-item p a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-vip-club-exclusive-events .faq-section {
    padding: 80px 0;
    background-color: #1A0D3B;
}

.page-vip-club-exclusive-events .faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-club-exclusive-events .faq-item {
    background-color: #0F0824;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club-exclusive-events .faq-item h3 {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-vip-club-exclusive-events .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-vip-club-exclusive-events .faq-item h3.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-vip-club-exclusive-events .faq-item p {
    color: #B0B0B0;
    font-size: 1em;
    margin-top: 15px;
    display: none;
}

.page-vip-club-exclusive-events .faq-item p.active {
    display: block;
}

/* CTA Bottom Section */
.page-vip-club-exclusive-events .cta-bottom-section {
    padding: 60px 0;
    background-color: #0F0824;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-vip-club-exclusive-events .hero-title {
        font-size: 3em;
    }
    .page-vip-club-exclusive-events .hero-subtitle {
        font-size: 1.2em;
    }
    .page-vip-club-exclusive-events .section-title {
        font-size: 2.2em;
    }
    .page-vip-club-exclusive-events .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-vip-club-exclusive-events .hero-section,
    .page-vip-club-exclusive-events .about-vip-section,
    .page-vip-club-exclusive-events .vip-benefits-section,
    .page-vip-club-exclusive-events .exclusive-events-gallery,
    .page-vip-club-exclusive-events .how-to-become-vip-section,
    .page-vip-club-exclusive-events .faq-section,
    .page-vip-club-exclusive-events .cta-bottom-section {
        padding: 60px 0;
    }
    .page-vip-club-exclusive-events .hero-title {
        font-size: 2.5em;
    }
    .page-vip-club-exclusive-events .hero-subtitle {
        font-size: 1em;
    }
    .page-vip-club-exclusive-events .section-title {
        font-size: 1.8em;
    }
    .page-vip-club-exclusive-events .benefits-grid,
    .page-vip-club-exclusive-events .event-grid,
    .page-vip-club-exclusive-events .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-vip-club-exclusive-events .hero-title {
        font-size: 2em;
    }
    .page-vip-club-exclusive-events .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-vip-club-exclusive-events .section-title {
        font-size: 1.5em;
    }
    .page-vip-club-exclusive-events .benefit-item h3,
    .page-vip-club-exclusive-events .event-info h3,
    .page-vip-club-exclusive-events .step-item h3,
    .page-vip-club-exclusive-events .faq-item h3 {
        font-size: 1.2em;
    }
}