/* style/promo.css */

.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-promo__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promo__hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  max-width: 800px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__hero-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* About Section */
.page-promo__about-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

/* Bonuses Section */
.page-promo__bonuses-section {
  padding: 60px 0;
}

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

.page-promo__bonus-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.page-promo__bonus-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-promo__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 25px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #e0a53b;
}

/* VIP Section */
.page-promo__vip-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-promo__vip-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-promo__vip-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__vip-text {
  width: 50%;
}

.page-promo__vip-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 28px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-promo__vip-button:hover {
  background-color: #e0a53b;
}

/* How To Claim Section */
.page-promo__how-to-claim-section {
  padding: 60px 0;
}

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

.page-promo__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promo__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 0.95em;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-promo__step-button:hover {
  background-color: #e0a53b;
}

/* Responsible Gaming Section */
.page-promo__responsible-gaming-section {
  padding: 60px 0;
  background-color: #F8F8F8;
  text-align: center;
}

.page-promo__responsible-gaming-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 28px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-promo__responsible-gaming-button:hover {
  background-color: #333333;
}

/* Detail Pages Section */
.page-promo__detail-pages-section {
  padding: 60px 0;
}

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

.page-promo__detail-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease;
}

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

.page-promo__detail-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promo__detail-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-title a:hover {
  color: #FCBC45;
}

.page-promo__detail-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-promo__detail-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 8px 20px;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-promo__detail-button:hover {
  background-color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__vip-content {
    flex-direction: column;
  }
  .page-promo__vip-image,
  .page-promo__vip-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }
  .page-promo__hero-overlay {
    padding: 20px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promo__bonuses-grid,
  .page-promo__steps-grid,
  .page-promo__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo__text-content {
    font-size: 0.95em;
  }

  /* Ensure images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must be at least 200px wide */
  .page-promo__bonus-image, 
  .page-promo__vip-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__step-title {
    font-size: 1.3em;
  }
  .page-promo__detail-title {
    font-size: 1.4em;
  }
}