/* ============================
   Hero Section with Overlay
============================ */
.about-hero {
  background: url('../images/About.png') center center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay behind the text */
.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Text content */
.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #f0f0f0;
}

/* Responsive text */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}

/* ============================
   Mission-Vision Section
============================ */
.about-mv {
  padding: 80px 0;
  background: #fdf9f4;
}

.mv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: center;
}

.mv-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 280px;
  max-width: 360px;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

/* Icon Styling */
.icon-box i {
  font-size: 3rem;
  color: #a68554;
  margin-bottom: 20px;
  display: inline-block;
}

/* Text Styling */
.mv-card h2 {
  color: #a68554;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.mv-card p {
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
}

/* ============================
   Brand Story Section
============================ */
.about-story {
  padding: 80px 0;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-content {
  flex: 1;
  min-width: 300px;
}

.story-content h2 {
  color: #a68554;
  font-size: 2rem;
  margin-bottom: 20px;
}

.story-content p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-outline {
  padding: 10px 20px;
  border: 2px solid #a68554;
  color: #a68554;
  background: transparent;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #a68554;
  color: #fff;
}

/* ============================
   Stats Section
============================ */
.stats-section {
  background: #f9f5f0;
  padding: 60px 0;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 200px;
  max-width: 260px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2rem;
  color: #a68554;
  margin-bottom: 10px;
}

.stat-item p {
  color: #555;
  font-weight: 500;
}

/* ============================
   Responsive Adjustments
============================ */
@media (max-width: 768px) {
  .story-grid {
    flex-direction: column;
    text-align: center;
  }

  .mv-grid {
    flex-direction: column;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .mv-card, .stat-item {
    max-width: 90%;
  }
}
