/* style/vip-club.css */
.page-vip-club {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  line-height: 1.6;
  background-color: #FFFFFF; /* Assuming body is white, or similar light color */
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  margin-bottom: 40px;
  overflow: hidden; /* Ensure no overflow */
}

.page-vip-club__hero-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio for hero image */
  position: relative;
  overflow: hidden;
}

.page-vip-club__hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop */
  display: block;
}

.page-vip-club__hero-content {
  text-align: center;
  padding: 30px 20px 40px;
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white for content readability */
  margin-top: -100px; /* Overlap with image for visual flow */
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50px); /* Lift slightly above the image */
}