/* style/about-our-story.css */
.page-about-our-story {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
}

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

.page-about-our-story__hero-section {
  padding: 10px 20px 60px;
  text-align: center;
  background-color: #0A0A0A;
}

.page-about-our-story__hero-image {
  margin-bottom: 20px;
}

.page-about-our-story__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px; /* Adjust based on typical hero image display width */
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

.page-about-our-story__main-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #F2C14E; /* Primary color */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-about-our-story__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-about-our-story__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-about-our-story__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-about-our-story__vision-mission-section,
.page-about-our-story__milestones-section,
.page-about-our-story__values-section,
.page-about-our-story__responsible-gaming-section,
.page-about-our-story__join-us-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-about-our-story__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #F2C14E; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-about-our-story__section-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #FFF6D6;
}

.page-about-our-story__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-about-our-story__content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-about-our-story__grid-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border color */
  transition: transform 0.3s ease;
}

.page-about-our-story__grid-item:hover {
  transform: translateY(-5px);
}

.page-about-our-story__grid-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Accent color */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about-our-story__grid-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #FFF6D6;
}

.page-about-our-story__milestone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-about-our-story__milestone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-about-our-story__milestone-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-about-our-story__milestone-card {
  background-color: #111111; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border color */
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about-our-story__milestone-card:hover {
  transform: translateY(-5px);
}

.page-about-our-story__milestone-card img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.2);
}

.page-about-our-story__card-title {
  font-size: 1.25rem;
  color: #FFD36B; /* Accent color */
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-about-our-story__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
}

.page-about-our-story__values-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-about-our-story__list-item {
  background-color: #111111; /* Card BG */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #F2C14E; /* Primary color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #FFF6D6;
  transition: background-color 0.3s ease;
}

.page-about-our-story__list-item:hover {
  background-color: rgba(242, 193, 78, 0.05);
}

.page-about-our-story__list-item strong {
  color: #FFD36B;
}

.page-about-our-story__secondary-cta-button {
  display: inline-block;
  background-color: #F2C14E; /* Primary color */
  color: #111111; /* Dark text for contrast */
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(242, 193, 78, 0.3);
}

.page-about-our-story__secondary-cta-button:hover {
  background-color: #FFD36B; /* Accent color */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.5);
}

.page-about-our-story__cta-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .page-about-our-story__cta-group {
    flex-direction: row;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about-our-story__hero-section,
  .page-about-our-story__vision-mission-section,
  .page-about-our-story__milestones-section,
  .page-about-our-story__values-section,
  .page-about-our-story__responsible-gaming-section,
  .page-about-our-story__join-us-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about-our-story__hero-image img,
  .page-about-our-story__milestone-card img {
    max-width: 100%;
    height: auto;
  }

  .page-about-our-story__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-about-our-story__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-about-our-story__cta-button,
  .page-about-our-story__secondary-cta-button {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* Ensure images in content area are not smaller than 200px */
.page-about-our-story img:not(.page-about-our-story__hero-image img) {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-about-our-story img {
    max-width: 100%;
    height: auto;
  }
}