/* style/promo.css */

/* Base styles for the promo page */
.page-promo {
  color: #FFF6D6; /* Main text color for dark body background */
  background-color: #0A0A0A; /* Body background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__dark-bg {
  background-color: #111111; /* Card BG for sections */
}

.page-promo__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Primary brand color for titles */
  line-height: 1.2;
}

.page-promo__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 10px 0 60px; /* 10px top padding to prevent double header offset */
  overflow: hidden;
  background-color: #0A0A0A;
}

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

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  text-align: center;
  color: #FFF6D6;
}

.page-promo__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Using clamp for responsive H1 */
  font-weight: 700;
  color: #FFD36B; /* Auxiliary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-promo__btn-primary,
.page-promo__btn-secondary,
.page-promo__card-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-promo__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promo__btn-secondary,
.page-promo__card-button {
  background: transparent;
  color: #F2C14E; /* Primary color for text */
  border: 2px solid #F2C14E;
}

.page-promo__btn-secondary:hover,
.page-promo__card-button:hover {
  background: #F2C14E;
  color: #111111; /* Dark text on hover */
}

/* Promo Cards */
.page-promo__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.page-promo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #FFD36B; /* Auxiliary color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-button {
  margin-top: auto; /* Pushes button to the bottom */
}

/* Promo Grid */
.page-promo__promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__promo-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__promo-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__promo-content {
  padding: 30px;
}

.page-promo__promo-heading {
  font-size: 2em;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__promo-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 25px;
}

/* How to Claim Steps */
.page-promo__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promo__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F2C14E; /* Primary color */
  color: #111111;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-promo__step-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* VIP Program */
.page-promo__vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__feature-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.page-promo__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__feature-title {
  font-size: 1.6em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__feature-text {
  font-size: 1em;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-promo__cta-center {
  margin-top: 40px;
}

/* Responsible Gaming */
.page-promo__responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* FAQ Section */
.page-promo__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promo__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #111111;
  color: #F2C14E;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #1a1a1a;
}

.page-promo__faq-heading {
  margin: 0;
  color: inherit;
  font-size: 1.2em;
}

.page-promo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(45deg);
}

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #FFF6D6;
  font-size: 1em;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px;
}

.page-promo__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Why Choose Section */
.page-promo__advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__advantage-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}

.page-promo__advantage-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__advantage-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* Final CTA Section */
.page-promo__cta-final {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-promo__promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-promo__promo-item {
    flex-direction: row;
  }
  .page-promo__promo-image {
    width: 40%;
    height: auto;
  }
  .page-promo__promo-content {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__main-title {
    font-size: clamp(2em, 8vw, 2.8em);
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__btn-primary,
  .page-promo__btn-secondary,
  .page-promo__card-button,
  .page-promo a[class*="button"],
  .page-promo a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__cta-buttons,
  .page-promo__button-group,
  .page-promo__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promo__promo-item {
    flex-direction: column;
  }
  .page-promo__promo-image {
    height: 250px;
  }
  .page-promo__card-image,
  .page-promo__promo-image,
  .page-promo__feature-icon,
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promo__section,
  .page-promo__card,
  .page-promo__container,
  .page-promo__promo-item,
  .page-promo__step-item,
  .page-promo__feature-item,
  .page-promo__advantage-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__hero-section {
    padding-top: 10px !important;
  }
  .page-promo__feature-icon {
    min-width: 60px;
    min-height: 60px;
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
  }
  .page-promo__card {
    padding: 20px;
  }
  .page-promo__faq-question,
  .page-promo__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}