/* style/vip-club.css */

/* Base styles for VIP Club page */
.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background is white */
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-vip-club__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-vip-club__text-block--center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Links within content */
.page-vip-club p a,
.page-vip-club li a {
  color: #017439;
  text-decoration: underline;
}

.page-vip-club p a:hover,
.page-vip-club li a:hover {
  color: #005f2c;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-vip-club__btn-primary {
  background-color: #C30808; /* Custom color for Register */
  color: #FFFFFF; /* Forced white for contrast with red */
  border: 2px solid #C30808;
}

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

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #C30808; /* Custom color for Login */
  border: 2px solid #C30808;
}

.page-vip-club__btn-secondary:hover {
  background-color: #C30808;
  color: #FFFFFF;
}

.page-vip-club__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 40px;
  width: 100%; /* Ensure responsiveness */
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Ensure responsiveness */
  overflow: hidden; /* Prevent overflow */
}

.page-vip-club__cta-buttons--center {
  text-align: center;
}

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

.page-vip-club__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-vip-club__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-vip-club__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

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

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Image styling */
.page-vip-club__image-wrapper {
  margin: 40px auto;
  text-align: center;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  overflow: hidden;
}

.page-vip-club__image-wrapper--center {
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Introduction Section */
.page-vip-club__introduction-section {
  padding: 80px 0;
}

.page-vip-club__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Levels Section */
.page-vip-club__levels-section {
  padding: 80px 0;
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF; /* White text for dark background */
}

.page-vip-club__levels-section .page-vip-club__section-title,
.page-vip-club__levels-section .page-vip-club__section-description {
  color: #FFFFFF;
}

.page-vip-club__levels-section a {
  color: #FFFF00; /* Yellow for links on dark background */
  text-decoration: underline;
}

.page-vip-club__levels-section a:hover {
  color: #ffcc00;
}

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

.page-vip-club__level-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-vip-club__level-title {
  font-size: 1.8em;
  color: #FFFF00; /* Yellow for level titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__level-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-vip-club__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-club__level-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-vip-club__level-benefits li::before {
  content: '✔';
  color: #FFFF00; /* Yellow checkmark */
  position: absolute;
  left: 0;
  top: 0;
}

/* Offers Section */
.page-vip-club__offers-section {
  padding: 80px 0;
}

.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: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

.page-vip-club__offer-text {
  color: #555555;
  line-height: 1.6;
}

/* Service Section */
.page-vip-club__service-section {
  padding: 80px 0;
  background-color: #017439;
  color: #FFFFFF;
}

.page-vip-club__service-section .page-vip-club__section-title,
.page-vip-club__service-section .page-vip-club__section-description {
  color: #FFFFFF;
}

.page-vip-club__service-section a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-vip-club__service-section a:hover {
  color: #ffcc00;
}

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

.page-vip-club__service-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-vip-club__service-title {
  font-size: 1.8em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__service-text {
  color: #f0f0f0;
  line-height: 1.6;
}

/* Experience Section */
.page-vip-club__experience-section {
  padding: 80px 0;
}

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

.page-vip-club__experience-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-club__experience-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__experience-text {
  color: #555555;
  line-height: 1.6;
}

/* Join Section */
.page-vip-club__join-section {
  padding: 80px 0;
  background-color: #017439;
  color: #FFFFFF;
}

.page-vip-club__join-section .page-vip-club__section-title,
.page-vip-club__join-section .page-vip-club__section-description {
  color: #FFFFFF;
}

.page-vip-club__join-section a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-vip-club__join-section a:hover {
  color: #ffcc00;
}

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

.page-vip-club__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-vip-club__step-title {
  font-size: 1.8em;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__step-text {
  color: #f0f0f0;
  line-height: 1.6;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
}

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