/* about.css - Updated for image support in story section */

.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 150, 0.1),
    rgba(5, 10, 22, 0.95)
  );
  padding-top: 100px;
}

.about-hero-content {
  max-width: 800px;
  padding: 2rem;
}

.about-hero h1 {
  margin-bottom: 1.5rem;
}

.gold-text {
  color: var(--gold);
}

/* ====================================
OUR STORY SECTION - UPDATED FOR IMAGE
==================================== */
.our-story {
  padding: 4rem clamp(1rem, 5vw, 6rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-text p {
  margin-bottom: 1rem;
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.story-stats h3 {
  color: var(--profit-green);
  font-size: 2rem;
}

/* Updated story image styles */
.story-image {
  background: linear-gradient(135deg, var(--primary), var(--bg-dark));
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.story-image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.story-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-image-placeholder p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1rem 1rem;
  margin: 0;
  text-align: center;
  color: var(--white);
  font-weight: 500;
}

/* ====================================
VALUES SECTION
==================================== */
.values {
  background: var(--card-bg);
  padding: 4rem clamp(1rem, 5vw, 6rem);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
}

/* ====================================
CTA SECTION
==================================== */
.cta {
  text-align: center;
  padding: 4rem clamp(1rem, 5vw, 6rem);
  background: linear-gradient(
    135deg,
    rgba(0, 200, 150, 0.1),
    rgba(245, 183, 0, 0.08)
  );
}

.cta p {
  margin: 1rem auto 2rem;
}

/* ====================================
RESPONSIVE
==================================== */
@media (max-width: 992px) {
  .story-grid {
    gap: 2rem;
  }

  .story-image-placeholder {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-stats {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .story-stats div {
    flex: 1;
    text-align: center;
  }

  .story-image-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .story-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .story-stats h3 {
    font-size: 1.5rem;
  }

  .story-image-placeholder {
    min-height: 250px;
  }

  .story-image-placeholder p {
    font-size: 0.875rem;
    padding: 1rem 0.75rem 0.75rem;
  }
}
/* ====================================
GALLERY SECTION
==================================== */

/* Container for the images - wrap your div with this class */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 5vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-container img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.gallery-container img:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-container {
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .gallery-container img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  .gallery-container img {
    height: 200px;
  }
}
