/* style/index-fan-vip-exclusive-offers.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-login-btn-bg: #C30808;
  --register-login-btn-text: #FFFF00;
  --background-white: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --card-bg: #ffffff;
  --card-text: #333333;
  --border-light-grey: #e0e0e0;
}

/* Base styles for the page content */
.page-index-fan-vip-exclusive-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--dark-bg-1, #0d0d0d); /* Assuming shared.css defines --dark-bg-1 as a dark color */
}

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

.page-index-fan-vip-exclusive-offers__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-index-fan-vip-exclusive-offers__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-light);
}

.page-index-fan-vip-exclusive-offers__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-dark); /* Default for light background sections */
}

/* Hero Section */
.page-index-fan-vip-exclusive-offers__hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-index-fan-vip-exclusive-offers__video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-index-fan-vip-exclusive-offers__background-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-index-fan-vip-exclusive-offers__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.page-index-fan-vip-exclusive-offers__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: var(--text-light);
}

.page-index-fan-vip-exclusive-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-index-fan-vip-exclusive-offers__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-index-fan-vip-exclusive-offers__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.page-index-fan-vip-exclusive-offers__btn-primary,
.page-index-fan-vip-exclusive-offers__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-index-fan-vip-exclusive-offers__btn-primary {
  background-color: var(--register-login-btn-bg);
  color: var(--register-login-btn-text);
  border: 2px solid var(--register-login-btn-bg);
}

.page-index-fan-vip-exclusive-offers__btn-primary:hover {
  background-color: #a30707;
  border-color: #a30707;
}

.page-index-fan-vip-exclusive-offers__btn-secondary {
  background-color: transparent;
  color: var(--register-login-btn-text);
  border: 2px solid var(--register-login-btn-bg);
}

.page-index-fan-vip-exclusive-offers__btn-secondary:hover {
  background-color: var(--register-login-btn-bg);
  color: var(--register-login-btn-text);
}

/* Background color specific sections */
.page-index-fan-vip-exclusive-offers__dark-bg {
  background-color: var(--dark-bg-1, #0d0d0d);
  color: var(--text-light);
}

.page-index-fan-vip-exclusive-offers__dark-bg .page-index-fan-vip-exclusive-offers__section-title,
.page-index-fan-vip-exclusive-offers__dark-bg .page-index-fan-vip-exclusive-offers__section-subtitle,
.page-index-fan-vip-exclusive-offers__dark-bg .page-index-fan-vip-exclusive-offers__text-block {
  color: var(--text-light);
}

.page-index-fan-vip-exclusive-offers__light-bg {
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-index-fan-vip-exclusive-offers__light-bg .page-index-fan-vip-exclusive-offers__section-title,
.page-index-fan-vip-exclusive-offers__light-bg .page-index-fan-vip-exclusive-offers__section-subtitle,
.page-index-fan-vip-exclusive-offers__light-bg .page-index-fan-vip-exclusive-offers__text-block {
  color: var(--text-dark);
}

/* Intro Section */
.page-index-fan-vip-exclusive-offers__intro-section {
  padding: 80px 0;
}

/* Benefits Section */
.page-index-fan-vip-exclusive-offers__benefits-section {
  padding: 80px 0;
}

.page-index-fan-vip-exclusive-offers__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-fan-vip-exclusive-offers__benefit-card {
  background-color: var(--card-bg);
  color: var(--card-text);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-index-fan-vip-exclusive-offers__benefit-card:hover {
  transform: translateY(-5px);
}

.page-index-fan-vip-exclusive-offers__card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-fan-vip-exclusive-offers__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--card-text);
}

.page-index-fan-vip-exclusive-offers__card-description {
  font-size: 1em;
  color: var(--card-text);
}

/* How to Join Section */
.page-index-fan-vip-exclusive-offers__how-to-join-section {
  padding: 80px 0;
}

.page-index-fan-vip-exclusive-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-index-fan-vip-exclusive-offers__step-card {
  background-color: var(--card-bg);
  color: var(--card-text);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-fan-vip-exclusive-offers__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-fan-vip-exclusive-offers__step-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--card-text);
}

.page-index-fan-vip-exclusive-offers__step-description {
  font-size: 0.95em;
  color: var(--card-text);
}

.page-index-fan-vip-exclusive-offers__cta-buttons--center {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Security Section */
.page-index-fan-vip-exclusive-offers__security-section {
  padding: 80px 0;
}

.page-index-fan-vip-exclusive-offers__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-index-fan-vip-exclusive-offers__security-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-index-fan-vip-exclusive-offers__security-text {
  flex: 2;
  min-width: 300px;
}

/* FAQ Section */
.page-index-fan-vip-exclusive-offers__faq-section {
  padding: 80px 0;
}

.page-index-fan-vip-exclusive-offers__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-fan-vip-exclusive-offers__faq-item {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-fan-vip-exclusive-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--card-bg);
  color: var(--card-text);
  border-bottom: 1px solid var(--border-light-grey);
}

.page-index-fan-vip-exclusive-offers__faq-question:hover {
  background-color: #f5f5f5;
}

.page-index-fan-vip-exclusive-offers__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.page-index-fan-vip-exclusive-offers__faq-item.active .page-index-fan-vip-exclusive-offers__faq-toggle {
  transform: rotate(45deg);
}

.page-index-fan-vip-exclusive-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--card-text);
}

.page-index-fan-vip-exclusive-offers__faq-item.active .page-index-fan-vip-exclusive-offers__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 20px;
}

/* CTA Section */
.page-index-fan-vip-exclusive-offers__cta-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-fan-vip-exclusive-offers__hero-title {
    font-size: 3em;
  }
  .page-index-fan-vip-exclusive-offers__hero-description {
    font-size: 1.2em;
  }
  .page-index-fan-vip-exclusive-offers__section-title {
    font-size: 2em;
  }
  .page-index-fan-vip-exclusive-offers__security-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-fan-vip-exclusive-offers__hero-section {
    height: 70vh;
  }
  .page-index-fan-vip-exclusive-offers__hero-title {
    font-size: 2.2em;
  }
  .page-index-fan-vip-exclusive-offers__hero-description {
    font-size: 1em;
  }
  .page-index-fan-vip-exclusive-offers__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-fan-vip-exclusive-offers__btn-primary,
  .page-index-fan-vip-exclusive-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General content area padding for mobile */
  .page-index-fan-vip-exclusive-offers__container {
    padding: 0 15px;
  }

  .page-index-fan-vip-exclusive-offers__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-fan-vip-exclusive-offers__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-index-fan-vip-exclusive-offers__text-block {
    font-size: 0.95em;
  }

  .page-index-fan-vip-exclusive-offers__benefits-grid,
  .page-index-fan-vip-exclusive-offers__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-index-fan-vip-exclusive-offers__security-image {
    min-width: unset;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-index-fan-vip-exclusive-offers__security-text {
    min-width: unset;
    width: 100% !important;
  }

  .page-index-fan-vip-exclusive-offers__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-index-fan-vip-exclusive-offers__faq-answer {
    padding: 0 20px;
  }
  .page-index-fan-vip-exclusive-offers__faq-item.active .page-index-fan-vip-exclusive-offers__faq-answer {
    padding: 15px 20px 20px;
  }

  /* Image and Video responsiveness */
  .page-index-fan-vip-exclusive-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-fan-vip-exclusive-offers__video-background,
  .page-index-fan-vip-exclusive-offers__background-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-index-fan-vip-exclusive-offers__hero-section,
  .page-index-fan-vip-exclusive-offers__intro-section,
  .page-index-fan-vip-exclusive-offers__benefits-section,
  .page-index-fan-vip-exclusive-offers__how-to-join-section,
  .page-index-fan-vip-exclusive-offers__security-section,
  .page-index-fan-vip-exclusive-offers__faq-section,
  .page-index-fan-vip-exclusive-offers__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  .page-index-fan-vip-exclusive-offers__cta-buttons {
    flex-direction: column;
    flex-wrap: wrap !important;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-index-fan-vip-exclusive-offers__hero-title {
    font-size: 1.8em;
  }
  .page-index-fan-vip-exclusive-offers__hero-description {
    font-size: 0.9em;
  }
  .page-index-fan-vip-exclusive-offers__btn-primary,
  .page-index-fan-vip-exclusive-offers__btn-secondary {
    padding: 10px 15px;
  }
  .page-index-fan-vip-exclusive-offers__section-title {
    font-size: 1.5em;
  }
}