/* style/vip-program.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --background-dark: #0a0a0a;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Base styles for the VIP program page */
.page-vip-program {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: var(--background-dark);
  line-height: 1.6;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
}

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

.page-vip-program a:hover {
  color: var(--secondary-color);
}

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

.page-vip-program__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 2px 4px var(--shadow-color);
}

.page-vip-program__section-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-dark-bg);
}

/* Hero Section */
.page-vip-program__hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, rgba(30, 144, 255, 0.2) 100%);
  gap: 40px;
  padding-top: 10px; /* Desktop: Adjust for fixed header, specific for hero section */
}

.page-vip-program__hero-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-vip-program__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 4px 8px var(--shadow-color);
  line-height: 1.2;
}

.page-vip-program__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-color-dark-bg);
}

.page-vip-program__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: normal;
}

.page-vip-program__cta-button--primary {
  background: var(--primary-color);
  color: #0a0a0a;
}

.page-vip-program__cta-button--primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-vip-program__cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-vip-program__cta-button--secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-vip-program__cta-button--light {
  background: var(--text-color-dark-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-vip-program__cta-button--light:hover {
  background: var(--primary-color);
  color: var(--text-color-dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-vip-program__hero-image-wrapper {
  flex: 1;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-color);
}

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

/* Benefits Section */
.page-vip-program__benefits-section {
  padding: 80px 0;
  background-color: var(--background-dark);
}

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

.page-vip-program__benefit-card {
  background: var(--card-bg-dark);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-vip-program__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-program__benefit-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-vip-program__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-vip-program__card-description {
  font-size: 16px;
  color: var(--text-color-dark-bg);
}

/* Tiers Section */
.page-vip-program__tiers-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, var(--background-dark) 100%);
  color: var(--text-color-dark-bg);
}

.page-vip-program__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-vip-program__tier-card {
  background: var(--card-bg-dark);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--secondary-color);
}

.page-vip-program__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.page-vip-program__tier-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-vip-program__tier-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-color-dark-bg);
}

.page-vip-program__tier-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.page-vip-program__tier-card ul li {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--text-color-dark-bg);
  position: relative;
  padding-left: 25px;
}

.page-vip-program__tier-card ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

.page-vip-program__step-card {
  background: var(--card-bg-dark);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-vip-program__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-program__step-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}