/* style/community-forum-user-stories.css */
.page-community-forum-user-stories {
  font-family: 'Arial', sans-serif;
  color: #2C3E50; /* Dark blue-grey for main text */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-community-forum-user-stories__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-community-forum-user-stories__hero {
  background: linear-gradient(135deg, #C0392B 0%, #2C3E50 100%);
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-community-forum-user-stories__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:cockfighting,abstract,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-community-forum-user-stories__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #F39C12; /* Accent color for title */
  position: relative;
  z-index: 1;
}

.page-community-forum-user-stories__hero-title .highlight {
  color: #ffffff;
}

.page-community-forum-user-stories__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-community-forum-user-stories__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-community-forum-user-stories__btn--primary {
  background-color: #F39C12; /* Gold/Orange accent */
  color: #2C3E50;
}

.page-community-forum-user-stories__btn--primary:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
}

.page-community-forum-user-stories__btn--secondary {
  background-color: #C0392B; /* Primary red */
  color: #ffffff;
  border: 2px solid #C0392B;
}

.page-community-forum-user-stories__btn--secondary:hover {
  background-color: #a93226;
  border-color: #a93226;
  transform: translateY(-3px);
}

.page-community-forum-user-stories__btn--download {
  background-color: #2C3E50; /* Secondary dark blue */
  color: #ffffff;
  border: 2px solid #2C3E50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.page-community-forum-user-stories__btn--download:hover {
  background-color: #1a242f;
  border-color: #1a242f;
  transform: translateY(-3px);
}

.page-community-forum-user-stories__icon {
  width: 24px;
  height: 24px;
  filter: invert(100%); /* Make icon white */
}

.page-community-forum-user-stories__section {
  padding: 60px 0;
}

.page-community-forum-user-stories__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-community-forum-user-stories__section-title {
  font-size: 2.5em;
  color: #C0392B;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-community-forum-user-stories__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F39C12;
  border-radius: 2px;
}

.page-community-forum-user-stories__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-community-forum-user-stories__intro strong {
  color: #C0392B;
}

.page-community-forum-user-stories__intro em {
  font-style: normal;
  font-weight: bold;
  color: #2C3E50;
}

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

.page-community-forum-user-stories__story-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-community-forum-user-stories__story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-community-forum-user-stories__story-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-community-forum-user-stories__story-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-community-forum-user-stories__story-title {
  font-size: 1.6em;
  color: #C0392B;
  margin-bottom: 15px;
}

.page-community-forum-user-stories__story-excerpt {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-community-forum-user-stories__story-excerpt strong, .page-community-forum-user-stories__story-excerpt em {
  color: #2C3E50;
  font-weight: bold;
}

.page-community-forum-user-stories__why-daga88 {
  background-color: #2C3E50;
  color: #ffffff;
}

.page-community-forum-user-stories__why-daga88 .page-community-forum-user-stories__section-title {
  color: #F39C12;
}

.page-community-forum-user-stories__why-daga88 .page-community-forum-user-stories__section-title::after {
  background-color: #C0392B;
}

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

.page-community-forum-user-stories__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-community-forum-user-stories__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-community-forum-user-stories__feature-title {
  font-size: 1.8em;
  color: #F39C12;
  margin-bottom: 15px;
}

.page-community-forum-user-stories__feature-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-community-forum-user-stories__cta {
  text-align: center;
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-community-forum-user-stories__cta .page-community-forum-user-stories__section-title {
  color: #2C3E50;
}

.page-community-forum-user-stories__cta .page-community-forum-user-stories__section-title::after {
  background-color: #C0392B;
}

.page-community-forum-user-stories__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

.page-community-forum-user-stories__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.page-community-forum-user-stories__cta-note {
  font-size: 1em;
  color: #777;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-community-forum-user-stories__hero-title {
    font-size: 2.8em;
  }
  .page-community-forum-user-stories__hero-subtitle {
    font-size: 1.1em;
  }
  .page-community-forum-user-stories__section-title {
    font-size: 2em;
  }
  .page-community-forum-user-stories__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-community-forum-user-stories__feature-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-community-forum-user-stories__hero {
    padding: 80px 0;
  }
  .page-community-forum-user-stories__hero-title {
    font-size: 2.2em;
  }
  .page-community-forum-user-stories__hero-subtitle {
    font-size: 1em;
  }
  .page-community-forum-user-stories__section {
    padding: 40px 0;
  }
  .page-community-forum-user-stories__section-title {
    font-size: 1.8em;
  }
  .page-community-forum-user-stories__grid {
    grid-template-columns: 1fr;
  }
  .page-community-forum-user-stories__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-community-forum-user-stories__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-community-forum-user-stories__hero-title {
    font-size: 1.8em;
  }
  .page-community-forum-user-stories__hero-subtitle {
    font-size: 0.9em;
  }
  .page-community-forum-user-stories__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-community-forum-user-stories__section-title {
    font-size: 1.5em;
  }
  .page-community-forum-user-stories__story-title {
    font-size: 1.4em;
  }
  .page-community-forum-user-stories__feature-title {
    font-size: 1.3em;
  }
}