/* style/blog-how-to-join-vicclub.css */

/* Variables for colors */
:root {
  --vicclub-primary: #11A84E;
  --vicclub-secondary: #22C768;
  --vicclub-button-gradient-start: #2AD16F;
  --vicclub-button-gradient-end: #13994A;
  --vicclub-card-bg: #11271B;
  --vicclub-background: #08160F;
  --vicclub-text-main: #F2FFF6;
  --vicclub-text-secondary: #A7D9B8;
  --vicclub-border: #2E7A4E;
  --vicclub-glow: #57E38D;
  --vicclub-gold: #F2C14E;
  --vicclub-divider: #1E3A2A;
  --vicclub-deep-green: #0A4B2C;
}

.page-blog-how-to-join-vicclub {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--vicclub-text-main); /* Default text color for dark background */
  background-color: var(--vicclub-background); /* Inherited from shared, but for safety */
}

.page-blog-how-to-join-vicclub__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px; /* Small padding at top, body handles header offset */
  background-color: var(--vicclub-deep-green);
  overflow: hidden;
}

.page-blog-how-to-join-vicclub__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-join-vicclub__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-how-to-join-vicclub__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px;
  color: var(--vicclub-text-main);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-blog-how-to-join-vicclub__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: var(--vicclub-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-how-to-join-vicclub__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--vicclub-text-secondary);
}

.page-blog-how-to-join-vicclub__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, var(--vicclub-button-gradient-start) 0%, var(--vicclub-button-gradient-end) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-how-to-join-vicclub__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-join-vicclub__cta-button--inline {
    margin-top: 20px;
}

.page-blog-how-to-join-vicclub__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--vicclub-card-bg);
  color: var(--vicclub-text-main);
}

.page-blog-how-to-join-vicclub__video-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-join-vicclub__video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%; /* Desktop must have width: 100% */
  max-width: 100%;
}

.page-blog-how-to-join-vicclub__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

.page-blog-how-to-join-vicclub__video-description {
    margin-top: 20px;
    font-size: 1.1em;
    max-width: 800px;
    text-align: center;
    color: var(--vicclub-text-secondary);
}

.page-blog-how-to-join-vicclub__content-section {
  background-color: var(--vicclub-background);
  color: var(--vicclub-text-main);
  padding: 60px 20px;
}

.page-blog-how-to-join-vicclub__content-area {
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog-how-to-join-vicclub__section-title {
  font-size: 2.5em;
  color: var(--vicclub-gold);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-join-vicclub__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--vicclub-primary);
  border-radius: 2px;
}

.page-blog-how-to-join-vicclub__sub-title {
  font-size: 1.8em;
  color: var(--vicclub-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-how-to-join-vicclub__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: var(--vicclub-text-main);
}

.page-blog-how-to-join-vicclub__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--vicclub-text-main);
}

.page-blog-how-to-join-vicclub__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-how-to-join-vicclub__list-item strong {
  color: var(--vicclub-gold);
}

.page-blog-how-to-join-vicclub__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-join-vicclub__faq-container {
  margin-top: 40px;
}

.page-blog-how-to-join-vicclub__faq-item {
  background-color: var(--vicclub-card-bg);
  border: 1px solid var(--vicclub-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--vicclub-text-main);
}

.page-blog-how-to-join-vicclub__faq-item summary {
  display: block;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: var(--vicclub-gold);
  position: relative;
  list-style: none;
  transition: background-color 0.3s ease;
}

.page-blog-how-to-join-vicclub__faq-item summary:hover {
  background-color: rgba(var(--vicclub-primary), 0.1);
}

.page-blog-how-to-join-vicclub__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-join-vicclub__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-blog-how-to-join-vicclub__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-join-vicclub__faq-toggle {
  margin-left: 15px;
  font-size: 1.5em;
  line-height: 1;
  color: var(--vicclub-primary);
}

.page-blog-how-to-join-vicclub__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--vicclub-text-secondary);
}

.page-blog-how-to-join-vicclub__cta-bottom-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Links within content */
.page-blog-how-to-join-vicclub a {
  color: var(--vicclub-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-how-to-join-vicclub a:hover {
  color: var(--vicclub-secondary);
  text-decoration: underline;
}

/* Ensure contrast for text on light backgrounds if any */
.page-blog-how-to-join-vicclub__light-bg {
  background-color: var(--vicclub-background);
  color: var(--vicclub-text-main);
}

.page-blog-how-to-join-vicclub__dark-bg {
  background-color: var(--vicclub-deep-green);
  color: var(--vicclub-text-main);
}

.page-blog-how-to-join-vicclub__text-contrast-fix {
    color: var(--vicclub-text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-join-vicclub__main-title {
    font-size: clamp(2em, 6vw, 3em);
  }
  .page-blog-how-to-join-vicclub__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-join-vicclub__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-join-vicclub {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-blog-how-to-join-vicclub__hero-section,
  .page-blog-how-to-join-vicclub__video-section,
  .page-blog-how-to-join-vicclub__content-section {
    padding: 30px 15px;
  }

  .page-blog-how-to-join-vicclub__hero-content {
    padding: 20px 15px;
  }

  .page-blog-how-to-join-vicclub__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-how-to-join-vicclub__description {
    font-size: 1em;
  }

  .page-blog-how-to-join-vicclub__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  
  .page-blog-how-to-join-vicclub__cta-bottom-wrapper {
      padding: 0 15px;
  }

  .page-blog-how-to-join-vicclub__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-join-vicclub__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
  }

  .page-blog-how-to-join-vicclub__paragraph,
  .page-blog-how-to-join-vicclub__list-item,
  .page-blog-how-to-join-vicclub__faq-answer {
    font-size: 0.95em;
  }

  .page-blog-how-to-join-vicclub__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-blog-how-to-join-vicclub__video,
  .page-blog-how-to-join-vicclub__video-container,
  .page-blog-how-to-join-vicclub__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-how-to-join-vicclub__video-section {
      padding-top: 10px !important; /* body already handles header offset */
  }
  .page-blog-how-to-join-vicclub__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-how-to-join-vicclub__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-join-vicclub__hero-content {
    padding: 15px 10px;
  }
  .page-blog-how-to-join-vicclub__section-title {
    font-size: 1.5em;
  }
  .page-blog-how-to-join-vicclub__faq-item summary {
    font-size: 0.9em;
  }
  .page-blog-how-to-join-vicclub__faq-toggle {
    font-size: 1.2em;
  }
}