/* style/promotions-limited-time-offers-display.css */

/* Variables for colors */
:root {
  --primary-color: #0A192F; /* Deep tech blue */
  --secondary-color: #E0B400; /* Brilliant gold/amber */
  --light-text-color: #F5F5F5; /* Very light grey for dark backgrounds */
  --dark-text-color: #0A192F; /* Deep tech blue for light backgrounds */
  --background-light: #f8f8f8; /* Light background */
  --background-dark: #0A192F; /* Dark background */
  --button-hover-dark: #b89200; /* Darker gold for hover */
  --button-hover-light: #2c3e50; /* Darker blue for hover */
}

.page-promotions-limited-time-offers-display {
  font-family: 'Arial', sans-serif;
  color: var(--dark-text-color);
  line-height: 1.6;
  background-color: var(--background-light);
}

.page-promotions-limited-time-offers-display .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-limited-time-offers-display .container--center {
  text-align: center;
}

.page-promotions-limited-time-offers-display .section-padding {
  padding: 80px 0;
}

.page-promotions-limited-time-offers-display .section-bg--dark {
  background-color: var(--background-dark);
  color: var(--light-text-color);
}

.page-promotions-limited-time-offers-display .section-title {
  font-size: 2.8em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-promotions-limited-time-offers-display .section-title--light {
  color: var(--secondary-color);
}

.page-promotions-limited-time-offers-display .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.8;
}

.page-promotions-limited-time-offers-display .section-description--light {
  color: var(--light-text-color);
}

/* Buttons */
.page-promotions-limited-time-offers-display .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-promotions-limited-time-offers-display .btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-promotions-limited-time-offers-display .btn--primary:hover {
  background-color: var(--button-hover-dark);
  color: var(--primary-color);
}

.page-promotions-limited-time-offers-display .btn--secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.page-promotions-limited-time-offers-display .btn--secondary:hover {
  background-color: var(--button-hover-light);
  color: var(--secondary-color);
  border-color: var(--light-text-color);
}

.page-promotions-limited-time-offers-display .btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promotions-limited-time-offers-display .link--inline {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-limited-time-offers-display .link--inline:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.page-promotions-limited-time-offers-display__hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 50%, #1a2a46 100%);
  color: var(--light-text-color);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.page-promotions-limited-time-offers-display__hero .hero-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.page-promotions-limited-time-offers-display__hero .hero-section__title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-promotions-limited-time-offers-display__hero .hero-section__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: var(--light-text-color);
}

.page-promotions-limited-time-offers-display__hero .hero-section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

/* Intro Section */
.page-promotions-limited-time-offers-display__intro {
  background-color: var(--background-light);
}

.page-promotions-limited-time-offers-display__intro .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-limited-time-offers-display__intro .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers-display__intro .feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-limited-time-offers-display__intro .feature-item__title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers-display__intro .feature-item__description {
  font-size: 1em;
  color: #555;
}

/* Current Promotions Section */
.page-promotions-limited-time-offers-display__current-promos {
  background-color: var(--primary-color);
  color: var(--light-text-color);
}

.page-promotions-limited-time-offers-display__current-promos .promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.page-promotions-limited-time-offers-display__current-promos .promo-card {
  background-color: #1a2a46;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers-display__current-promos .promo-card:hover {
  transform: translateY(-15px);
}

.page-promotions-limited-time-offers-display__current-promos .promo-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-promotions-limited-time-offers-display__current-promos .promo-card__content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions-limited-time-offers-display__current-promos .promo-card__title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions-limited-time-offers-display__current-promos .promo-card__description {
  font-size: 1em;
  color: var(--light-text-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-limited-time-offers-display__current-promos .promo-card__details {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: var(--light-text-color);
}

.page-promotions-limited-time-offers-display__current-promos .promo-card__details li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-promotions-limited-time-offers-display__current-promos .promo-card__details strong {
  color: var(--secondary-color);
}

.page-promotions-limited-time-offers-display__current-promos .promo-card .btn--secondary {
  align-self: flex-start;
  width: auto;
  min-width: 150px;
  text-align: center;
}

/* How to Join Section */
.page-promotions-limited-time-offers-display__how-to-join {
  background-color: var(--background-light);
}

.page-promotions-limited-time-offers-display__how-to-join .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-limited-time-offers-display__how-to-join .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promotions-limited-time-offers-display__how-to-join .step-item__title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-limited-time-offers-display__how-to-join .step-item__description {
  font-size: 1em;
  color: #555;
}

/* Hiphop Culture Section */
.page-promotions-limited-time-offers-display__hiphop-culture {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  position: relative;
  overflow: hidden;
}

.page-promotions-limited-time-offers-display__hiphop-culture .hiphop-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.page-promotions-limited-time-offers-display__hiphop-culture .hiphop-feature-item {
  background-color: #1a2a46;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-promotions-limited-time-offers-display__hiphop-culture .hiphop-feature-item__title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers-display__hiphop-culture .hiphop-feature-item__description {
  font-size: 1em;
  color: var(--light-text-color);
}

.page-promotions-limited-time-offers-display__hiphop-culture .hiphop-culture-banner {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-top: 60px;
  border-radius: 12px;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}


/* Final CTA Section */
.page-promotions-limited-time-offers-display__cta-final {
  background-color: var(--background-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-limited-time-offers-display .section-padding {
    padding: 60px 0;
  }

  .page-promotions-limited-time-offers-display .section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
  }

  .page-promotions-limited-time-offers-display .section-description {
    margin-bottom: 40px;
  }

  .page-promotions-limited-time-offers-display__hero {
    padding: 80px 0;
    min-height: 400px;
  }

  .page-promotions-limited-time-offers-display__hero .hero-section__title {
    font-size: 2.5em;
  }

  .page-promotions-limited-time-offers-display__hero .hero-section__subtitle {
    font-size: 1.2em;
  }

  .page-promotions-limited-time-offers-display .feature-grid,
  .page-promotions-limited-time-offers-display .promo-card-grid,
  .page-promotions-limited-time-offers-display .steps-grid,
  .page-promotions-limited-time-offers-display .hiphop-features-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-limited-time-offers-display__current-promos .promo-card {
    flex-direction: column;
  }

  .page-promotions-limited-time-offers-display__current-promos .promo-card__image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promotions-limited-time-offers-display .section-padding {
    padding: 40px 0;
  }

  .page-promotions-limited-time-offers-display .section-title {
    font-size: 1.8em;
  }

  .page-promotions-limited-time-offers-display__hero {
    padding: 60px 0;
    min-height: 300px;
  }

  .page-promotions-limited-time-offers-display__hero .hero-section__title {
    font-size: 2em;
  }

  .page-promotions-limited-time-offers-display__hero .hero-section__subtitle {
    font-size: 1em;
  }

  .page-promotions-limited-time-offers-display .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}