/* style/promotions.css */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds */
  background-color: #0A2239; /* Main dark blue background */
}

.page-promotions-hero {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue gradient */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-promotions-hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promotions-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-subtitle {
  font-size: 1.3em;
  color: #B0C4DE; /* Lighter blue-gray for subtitle */
  margin-bottom: 30px;
}

.page-promotions-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-promotions-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

.page-promotions-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-section--dark {
  background-color: #1a3a5a;
}

.page-promotions-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  font-weight: bold;
}

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

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

.page-promotions-card {
  background-color: #0A2239;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD70033;
}

.page-promotions-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-card--dark {
  background-color: #0A2239;
}

.page-promotions-card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-promotions-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-card-title a:hover {
  color: #FFF;
}

.page-promotions-card-description {
  font-size: 1em;
  color: #B0C4DE;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: auto;
  cursor: pointer;
}

.page-promotions-button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2239;
}

.page-promotions-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-button--secondary {
  background-color: #2a4c6a; /* Slightly lighter dark blue */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-promotions-button--secondary:hover {
  background-color: #3d6a92;
  transform: translateY(-2px);
}

.page-promotions-button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-promotions-vip-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-promotions-vip-image {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-promotions-vip-text {
  max-width: 700px;
  text-align: center;
}

.page-promotions-vip-text p {
  color: #B0C4DE;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-promotions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  color: #B0C4DE;
  font-size: 1.1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
}

.page-promotions-list li {
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.page-promotions-list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-promotions-step {
  background-color: #0A2239;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #FFD70033;
}

.page-promotions-step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-step-description {
  font-size: 0.95em;
  color: #B0C4DE;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-section--details .page-promotions-card {
  min-height: 250px; /* Ensure cards have similar height */
}

.page-promotions-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(90deg, #0A2239, #1a3a5a);
}

.page-promotions-cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-cta-description {
  font-size: 1.2em;
  color: #B0C4DE;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

  .page-promotions-subtitle {
    font-size: 1.1em;
  }

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

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

  .page-promotions-vip-content {
    flex-direction: column;
  }

  .page-promotions-vip-text {
    text-align: center;
  }

  .page-promotions-list {
    justify-content: flex-start;
    padding-left: 20px;
    text-align: left;
  }

  .page-promotions-list li {
    width: 100%;
  }

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

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

  .page-promotions-cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-hero, .page-promotions-section, .page-promotions-cta {
    padding: 40px 15px;
  }

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

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

  .page-promotions-card-title {
    font-size: 1.4em;
  }

  .page-promotions-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}