/* about_us.css — page-specific styles only. Shared styles are in shared.css */

/* ================= HERO ================= */

.hero-section {
  position: relative;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.25)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
}

.hero-badge {
  background: var(--primary);
  padding: 6px 16px;
  font-size: clamp(11px, 1.2vw, 14px);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
}

.highlight {
  color: var(--primary);
  font-style: italic;
}

.hero-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

/* ================= STORY SECTION ================= */

.story-section {
  padding: 80px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-image-wrapper {
  position: relative;
}

.story-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 520px;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.story-image-wrapper img:hover {
  transform: translateY(-8px);
}

.decor-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(44, 156, 7, 0.1);
  border-radius: 50%;
  bottom: -40px;
  right: -30px;
  filter: blur(50px);
  z-index: 1;
}

.story-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  color: var(--primary);
  line-height: 1.2;
}

.title-underline {
  width: 160px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 28px;
}

.story-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.8;
}

/* ================= VALUES SECTION ================= */

.values-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--gray);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-family: cursive;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid #eee;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(44, 156, 7, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  font-size: 28px;
}

.value-card:hover .icon-circle {
  background: var(--primary);
  color: white;
}

.value-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.7;
}


/* =============================================
   RESPONSIVE — About-specific
   ============================================= */

@media (max-width: 1024px) {
  .story-grid { gap: 48px; }
  .values-grid { gap: 20px; }
}

@media (max-width: 768px) {
  .hero-section { height: 65vh; }

  .story-section { padding: 60px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image-wrapper img { max-height: 320px; }

  .values-section { padding: 60px 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-section { height: 55vh; min-height: 320px; }
  .values-grid { grid-template-columns: 1fr; }
}
