/* style/resources-f1688-brand-story.css */

/* Base Styles for Page Content */
.page-resources-f1688-brand-story {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1);
  padding-top: 120px; /* Space for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-resources-f1688-brand-story {
    padding-top: 100px; /* Space for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
}

/* General Section and Container Styling */
.page-resources-f1688-brand-story__section {
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
}

.page-resources-f1688-brand-story__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-resources-f1688-brand-story__heading {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Brand gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-resources-f1688-brand-story__sub-heading {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-f1688-brand-story__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-f1688-brand-story__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-f1688-brand-story__list-item {
  font-size: 17px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

/* Image Styling */
.page-resources-f1688-brand-story img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Button Styling */
.page-resources-f1688-brand-story__btn-primary,
.page-resources-f1688-brand-story__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.page-resources-f1688-brand-story__btn-primary {
  background: #FFD700; /* Gold */
  color: #1a1a1a; /* Dark text for contrast */
  border-color: #FFD700;
}

.page-resources-f1688-brand-story__btn-primary:hover {
  background: #e6c200;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-f1688-brand-story__btn-secondary {
  background: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-resources-f1688-brand-story__btn-secondary:hover {
  background: #FFD700;
  color: #1a1a1a; /* Dark text */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Dark background sections */
.page-resources-f1688-brand-story__dark-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #f0f0f0;
}

.page-resources-f1688-brand-story__dark-section .page-resources-f1688-brand-story__heading {
  color: #FFD700;
}

.page-resources-f1688-brand-story__dark-section .page-resources-f1688-brand-story__paragraph,
.page-resources-f1688-brand-story__dark-section .page-resources-f1688-brand-story__list-item {
  color: #e0e0e0;
}

/* Medium background sections (for VIP) */
.page-resources-f1688-brand-story__medium-bg {
  background-color: #8B0000; /* Dark Red */
  color: #ffffff;
}

.page-resources-f1688-brand-story__medium-bg .page-resources-f1688-brand-story__heading {
  color: #FFD700;
}

.page-resources-f1688-brand-story__medium-bg .page-resources-f1688-brand-story__paragraph,
.page-resources-f1688-brand-story__medium-bg .page-resources-f1688-brand-story__list-item,
.page-resources-f1688-brand-story__medium-bg .page-resources-f1688-brand-story__vip-benefit-item {
  color: #f0f0f0;
}

/* Hero Brand Story Section */
.page-resources-f1688-brand-story__hero-brand-story-section {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  padding: 80px 0;
  text-align: center;
}

.page-resources-f1688-brand-story__hero-brand-story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.page-resources-f1688-brand-story__hero-brand-story-content {
  flex: 1;
  text-align: left;
}

.page-resources-f1688-brand-story__hero-brand-story-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-f1688-brand-story__hero-brand-story-description {
  font-size: 19px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-f1688-brand-story__hero-brand-story-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-f1688-brand-story__hero-brand-story-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Origin and Vision Section */
.page-resources-f1688-brand-story__origin-vision-section {
  background-color: var(--dark-bg-1);
}

.page-resources-f1688-brand-story__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-f1688-brand-story__image-text-content {
  flex: 1;
}

.page-resources-f1688-brand-story__image-text-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-f1688-brand-story__image-text-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Milestones Section */
.page-resources-f1688-brand-story__milestones-section {
  background-color: #1a1a1a;
}

.page-resources-f1688-brand-story__milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-f1688-brand-story__milestone-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #FFD700;
}

.page-resources-f1688-brand-story__milestone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-f1688-brand-story__milestone-year {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-f1688-brand-story__milestone-description {
  font-size: 16px;
  color: #cccccc;
}

.page-resources-f1688-brand-story__milestones-image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-resources-f1688-brand-story__milestones-image {
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Core Values Section */
.page-resources-f1688-brand-story__core-values-section {
  background-color: var(--dark-bg-1);
}

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

.page-resources-f1688-brand-story__value-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #8B0000;
}

.page-resources-f1688-brand-story__value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-f1688-brand-story__value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-f1688-brand-story__value-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-f1688-brand-story__value-description {
  font-size: 16px;
  color: #cccccc;
}

.page-resources-f1688-brand-story__values-image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-resources-f1688-brand-story__values-image {
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* VIP Section */
.page-resources-f1688-brand-story__vip-section {
  background-color: #8B0000; /* Dark Red */
  text-align: center;
}

.page-resources-f1688-brand-story__vip-benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-resources-f1688-brand-story__vip-benefit-item {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  font-size: 17px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-resources-f1688-brand-story__vip-benefit-item:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.page-resources-f1688-brand-story__vip-benefit-item strong {
  color: #FFD700;
}

.page-resources-f1688-brand-story__vip-image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-resources-f1688-brand-story__vip-image {
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Future Section */
.page-resources-f1688-brand-story__future-section {
  background-color: var(--dark-bg-1);
}

.page-resources-f1688-brand-story__future-image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-resources-f1688-brand-story__future-image {
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Call to Action Section */
.page-resources-f1688-brand-story__cta-section {
  background: linear-gradient(90deg, #8B0000, #FFD700);
  padding: 80px 20px;
  text-align: center;
}

.page-resources-f1688-brand-story__cta-content {
  max-width: 900px;
}

.page-resources-f1688-brand-story__cta-title {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-f1688-brand-story__cta-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-resources-f1688-brand-story__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-f1688-brand-story__hero-brand-story-title {
    font-size: 40px;
  }
  .page-resources-f1688-brand-story__heading {
    font-size: 30px;
  }
  .page-resources-f1688-brand-story__hero-brand-story-container {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-f1688-brand-story__hero-brand-story-content {
    text-align: center;
  }
  .page-resources-f1688-brand-story__image-text-layout {
    flex-direction: column;
  }
  .page-resources-f1688-brand-story__image-text-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
  .page-resources-f1688-brand-story__milestones-image,
  .page-resources-f1688-brand-story__values-image,
  .page-resources-f1688-brand-story__vip-image,
  .page-resources-f1688-brand-story__future-image {
    max-width: 100%;
  }
  .page-resources-f1688-brand-story__vip-benefits-list {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-resources-f1688-brand-story__section {
    padding: 40px 15px;
  }
  .page-resources-f1688-brand-story__container {
    padding: 0 10px;
  }
  .page-resources-f1688-brand-story__hero-brand-story-section {
    padding: 60px 0;
  }
  .page-resources-f1688-brand-story__hero-brand-story-title {
    font-size: 32px;
  }
  .page-resources-f1688-brand-story__hero-brand-story-description {
    font-size: 16px;
  }
  .page-resources-f1688-brand-story__heading {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-resources-f1688-brand-story__sub-heading {
    font-size: 20px;
  }
  .page-resources-f1688-brand-story__paragraph,
  .page-resources-f1688-brand-story__list-item,
  .page-resources-f1688-brand-story__milestone-description,
  .page-resources-f1688-brand-story__value-description {
    font-size: 15px;
  }
  .page-resources-f1688-brand-story__btn-primary,
  .page-resources-f1688-brand-story__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-resources-f1688-brand-story__milestones-grid,
  .page-resources-f1688-brand-story__values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-f1688-brand-story__milestone-card,
  .page-resources-f1688-brand-story__value-card {
    padding: 25px;
  }
  .page-resources-f1688-brand-story__cta-title {
    font-size: 30px;
  }
  .page-resources-f1688-brand-story__cta-description {
    font-size: 17px;
  }
  .page-resources-f1688-brand-story__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile image forced adaptation */
  .page-resources-f1688-brand-story img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-f1688-brand-story__section,
  .page-resources-f1688-brand-story__container,
  .page-resources-f1688-brand-story__hero-brand-story-container,
  .page-resources-f1688-brand-story__image-text-layout,
  .page-resources-f1688-brand-story__milestones-grid,
  .page-resources-f1688-brand-story__values-grid,
  .page-resources-f1688-brand-story__vip-benefits-list,
  .page-resources-f1688-brand-story__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-f1688-brand-story__hero-brand-story-title {
    font-size: 28px;
  }
  .page-resources-f1688-brand-story__heading {
    font-size: 22px;
  }
  .page-resources-f1688-brand-story__cta-title {
    font-size: 26px;
  }
}