/* Global Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================
   Bucks Redeem Hero Section
================================ */
.bucks-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bucks-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1;
}

.bucks-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  color: #fff;
}

.hero-main-text {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #fff;
}

.hero-main-text .highlight-text {
  color: #00A650;
}

.hero-subtext {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #fff;
}

.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
  color: #ccc;
}

/* ================================
   Bucks Redeem Options Section
================================ */
.bucks-redeem-options {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  width: 100%;
}

.bucks-redeem-options .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #00A650;
}

/* Grid Layout for Rewards */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

/* Reward Card Styling */
.reward-card {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #004f2c, #007A4A, #00A650);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  cursor: pointer;
}

.reward-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}

/* Dark Overlay (optional, if you want extra contrast) */
.reward-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  transition: background 0.3s ease;
}

.reward-card:hover::before {
  background: rgba(0,0,0,0.7);
}

/* Reward Info (text content) */
.reward-info {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem;
}

.reward-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #00A650;
}

.reward-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.reward-cost {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.btn-redeem {
  display: inline-block;
  background-color: #00A650;
  color: #fff;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-redeem:hover {
  background-color: #00B85C;
}

/* Animated Gradient Keyframes */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================================
   Responsive Adjustments
================================ */
@media (max-width: 768px) {
  .hero-main-text {
    font-size: 2.5rem;
  }
  .hero-subtext {
    font-size: 1.5rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .reward-card {
    height: 220px;
  }
}
