/* style/promotions.css */

.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions__hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #FF0055, #00FFEE);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px; /* Ensure sufficient height */
}

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

.page-promotions__hero .page-promotions__container {
  position: relative;
  z-index: 2;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

/* General Buttons */
.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-promotions__btn--primary {
  background-color: #FF0055; /* Primary color */
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(255, 0, 85, 0.4);
}

.page-promotions__btn--primary:hover {
  background-color: #e6004d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 85, 0.6);
}

.page-promotions__btn--secondary {
  background-color: #00FFEE; /* Secondary color */
  color: #1a1a1a; /* Dark text for contrast */
  box-shadow: 0 5px 15px rgba(0, 255, 238, 0.4);
}

.page-promotions__btn--secondary:hover {
  background-color: #00e6d5;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 238, 0.6);
}

/* Section Styling */
.page-promotions__intro, .page-promotions__responsible-gambling {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FF0055; /* Primary color for titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Promotions List Grid */
.page-promotions__list {
  padding: 80px 0;
  background-color: #222222;
}

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

.page-promotions__card {
  background-color: #2c2c2c;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: #00FFEE; /* Secondary color for card titles */
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promotions__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #FF0055;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card .page-promotions__btn--secondary {
  margin-top: auto;
}

/* Call to Action Bottom */
.page-promotions__cta-bottom {
  padding: 80px 0;
  background: linear-gradient(45deg, #00FFEE, #FF0055);
  color: #1a1a1a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__cta-bottom .page-promotions__section-title {
  color: #1a1a1a; /* Dark text for contrast on light background */
}

.page-promotions__cta-bottom .page-promotions__text-content {
  color: #333333;
  text-align: center;
}

.page-promotions__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-promotions__cta-bottom .page-promotions__container {
  position: relative;
  z-index: 2;
}

/* Responsible Gambling Section */
.page-promotions__responsible-gambling {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-promotions__responsible-gambling .page-promotions__section-title {
  color: #FF0055;
}

.page-promotions__responsible-gambling .page-promotions__text-content {
  color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-promotions__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__hero, .page-promotions__intro, .page-promotions__list, .page-promotions__cta-bottom, .page-promotions__responsible-gambling {
    padding: 40px 0;
  }
}