/* style/vip-club.css */

/* Custom properties for colors */
:root {
    --primary-color: #0A1931; /* Dark Blue */
    --secondary-color: #E0B400; /* Gold */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f4f4f4;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
}

/* Base styles for the VIP Club page */
.page-vip-club {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light background body */
    background-color: var(--background-light);
}

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

.page-vip-club__section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-club__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.page-vip-club__section-title--light {
    color: var(--text-color-light);
}

.page-vip-club__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-vip-club__text-block--light {
    color: #e0e0e0; /* Slightly lighter text for dark backgrounds */
}

/* Hero Section */
.page-vip-club__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: var(--primary-color); /* Dark blue background */
    color: var(--text-color-light);
    overflow: hidden; /* Ensure no overflow */
}

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

.page-vip-club__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 800px; /* Constrain image width for better composition */
}

.page-vip-club__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce image is not too small */
    min-height: 200px; /* Enforce image is not too small */
}

.page-vip-club__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-vip-club__hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Gold color for main title */
}

.page-vip-club__hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-vip-club__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 600px; /* Limit button group width */
    margin: 0 auto;
}

.page-vip-club__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Include padding in width calculation */
    max-width: 100%; /* Ensure button doesn't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-vip-club__btn-primary {
    background: var(--secondary-color); /* Gold background */
    color: var(--primary-color); /* Dark blue text */
    border: 2px solid var(--secondary-color);
}

.page-vip-club__btn-primary:hover {
    background: #c7a100; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-vip-club__btn-secondary {
    background: transparent;
    color: var(--secondary-color); /* Gold text */
    border: 2px solid var(--secondary-color);
}

.page-vip-club__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Introduction Section */
.page-vip-club__introduction {
    background-color: var(--background-white);
}

/* Benefits Section */
.page-vip-club__benefits {
    background-color: var(--primary-color); /* Dark blue background */
    color: var(--text-color-light);
}

.page-vip-club__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-vip-club__benefit-card {
    background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: var(--text-color-light);
}

.page-vip-club__benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-vip-club__benefit-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2; /* From 600x400 */
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
    max-width: 100%;
    display: block;
    border-radius: 8px; /* Apply border-radius to images */
}

.page-vip-club__benefit-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color); /* Gold color for titles */
}