/* style/vip-club.css */

/* Base styles for the VIP Club page */
.page-vip-club {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light color for general text on dark backgrounds */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-vip-club__hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A192F 0%, #1a3456 100%); /* Dark blue gradient */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    color: #f5e6d0; /* Light text for dark background */
}

.page-vip-club__hero-content {
    z-index: 1;
    max-width: 900px;
}

.page-vip-club__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-title .highlight {
    color: #FFD700; /* Gold highlight */
}

.page-vip-club__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0; /* Slightly lighter than main text for contrast */
}

.page-vip-club__hero-subtitle .highlight {
    color: #FFD700; /* Gold highlight */
}

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

.page-vip-club__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
}

.page-vip-club__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold button */
    border: 2px solid #FFD700;
}

.page-vip-club__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-vip-club__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

.page-vip-club__button--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A192F; /* Dark text on gold background */
    transform: translateY(-3px);
}

.page-vip-club__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-vip-club__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-vip-club__section {
    padding: 80px 0;
    text-align: center;
}

.page-vip-club__section:nth-of-type(even) {
    background-color: #1a2c42; /* Slightly lighter dark blue for alternating sections */
}

.page-vip-club__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    font-weight: bold;
}

.page-vip-club__section-title .highlight {
    color: #FFD700; /* Gold highlight */
}

.page-vip-club__introduction p,
.page-vip-club__tiers p,
.page-vip-club__events p,
.page-vip-club__manager p,
.page-vip-club__loyalty p,
.page-vip-club__why-join p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0; /* Light text for readability */
    text-align: left;
}

.page-vip-club__introduction p .highlight,
.page-vip-club__tiers p .highlight,
.page-vip-club__events p .highlight,
.page-vip-club__manager p .highlight,
.page-vip-club__loyalty p .highlight,
.page-vip-club__why-join p .highlight {
    color: #FFD700; /* Gold highlight for keywords */
    font-weight: bold;
}

.page-vip-club__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-vip-club__list li {
    background-color: #1f3a5f; /* Slightly lighter dark blue for list items */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    font-size: 1em;
    color: #e0e0e0;
}

.page-vip-club__list li::before {
    content: '⭐'; /* Star icon for list items */
    margin-right: 15px;
    font-size: 1.2em;
    color: #FFD700;
}

.page-vip-club__list li strong {
    color: #FFD700; /* Gold for strong text in list */
}

.page-vip-club__image-wrapper {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-vip-club__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-vip-club__button--link {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 25px;
    margin-top: 20px;
}

.page-vip-club__button--link:hover {
    background-color: #FFD700;
    color: #0A192F;
}

/* Call to Action Section */
.page-vip-club__cta {
    background: #0A192F; /* Dark blue background */
    padding: 60px 0;
    color: #f5e6d0;
}

.page-vip-club__cta-content {
    max-width: 900px;
}

.page-vip-club__cta-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Pages Section */
.page-vip-club__related-pages {
    background-color: #1a2c42; /* Slightly lighter dark blue */
    padding-bottom: 80px;
}

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

.page-vip-club__page-item {
    background-color: #0A192F; /* Dark blue for item background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-vip-club__page-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for titles */
}

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

.page-vip-club__page-title a:hover {
    color: #e6c200; /* Darker gold on hover */
    text-decoration: underline;
}

.page-vip-club__page-description {
    font-size: 0.95em;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-vip-club__hero-title {
        font-size: 2.8em;
    }
    .page-vip-club__hero-subtitle {
        font-size: 1.3em;
    }
    .page-vip-club__section-title {
        font-size: 2.2em;
    }
    .page-vip-club__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-vip-club__hero {
        padding: 80px 0;
    }
    .page-vip-club__hero-title {
        font-size: 2.2em;
    }
    .page-vip-club__hero-subtitle {
        font-size: 1.1em;
    }
    .page-vip-club__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-club__button {
        width: 80%;
        max-width: 300px;
    }
    .page-vip-club__section {
        padding: 60px 0;
    }
    .page-vip-club__section-title {
        font-size: 1.8em;
    }
    .page-vip-club__introduction p,
    .page-vip-club__tiers p,
    .page-vip-club__events p,
    .page-vip-club__manager p,
    .page-vip-club__loyalty p,
    .page-vip-club__why-join p {
        font-size: 1em;
    }
    .page-vip-club__page-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-vip-club__hero-title {
        font-size: 1.8em;
    }
    .page-vip-club__hero-subtitle {
        font-size: 1em;
    }
    .page-vip-club__button {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-vip-club__section-title {
        font-size: 1.5em;
    }
    .page-vip-club__list li {
        padding: 15px;
    }
    .page-vip-club__page-item {
        padding: 20px;
    }
    .page-vip-club__page-title {
        font-size: 1.4em;
    }
}

/* Animation for sections */
.page-vip-club__section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-vip-club__section.is-visible {
    opacity: 1;
    transform: translateY(0);
}