/* =======================================================
   VYNAA ABOUT PAGE — MATCHED TO WEBSITE THEME (HOME + SHOP)
   WITH SOFT SECTION DIVIDERS
   ======================================================= */

body {
  background-color: #f4fbf7; /* Same soft tone as home */
  color: #1c1c1c;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* ===== HERO SECTION ===== */
.about-hero {
  position: relative;
  height: 28vh; /* ↓ reduced height */
  padding: 15px 0; /* additional control */
  background: linear-gradient(to bottom, #f4fbf7 0%, #e9f3ed 100%);
  border-bottom: 1px solid rgba(100, 143, 108, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.about-hero .container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #25482b;
  margin-bottom: 0.6rem;
}

.text-highlight {
  color: #86a98b;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #2f473a;
  margin-top: 0.3rem;
  letter-spacing: 0.2px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-hero {
    height: 36vh;
    padding: 0 15px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ===== STORY SECTION ===== */
.about-story-section {
  background-color: #f4fbf7;
  padding-top: 4rem;
  
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(100, 143, 108, 0.15); /* ✅ soft divider line */
}

/* Row structure */
.about-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* Image & text alignment */
.about-image-col {
  flex: 1 1 50%;
}

.about-text-col {
  flex: 1 1 50%;
  padding-left: 2.5rem;
  padding-right: 1rem;
}

/* Alternate layout */
.alt-layout .about-text-col {
  padding-right: 2.5rem;
  padding-left: 0;
}

/* Images */
.about-image {
  width: 110%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
}

.about-image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(37, 72, 43, 0.25);
}

/* Headings & text */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #25482b;
  font-weight: 700;
  margin-bottom: 1.2rem;
  white-space: nowrap; /* keeps heading in one line */
}

.about-text-col p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #3c5144;
  margin-bottom: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .section-heading {
    white-space: normal;
    text-align: center;
  }
  .about-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .about-text-col {
    padding: 0 1rem;
  }
  .about-image-col {
    margin-bottom: 1rem;
  }
}

/* ===== FAMILY SECTION ===== */
.family-section {
  background-color: #f4fbf7;
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(100, 143, 108, 0.15);
  border-bottom: 1px solid rgba(100, 143, 108, 0.15);
}

.family-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.family-header .section-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: #25482b;
  margin-bottom: 0.7rem;
}

.family-header .family-intro {
  font-size: 1.05rem;
  color: #3c5144;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Family layout */
.family-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2.5rem;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.2rem;
  transform: translateX(-1%);
}

.family-card {
  background: #eaf4ee;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex: 1 1 22%;
  min-width: 260px;
  max-width: 280px;
  padding: 2rem 1rem 2.2rem;
  text-align: center;
}

.family-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(133, 168, 137, 0.25);
}

.family-photo {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}

.family-card:hover .family-photo {
  transform: scale(1.03);
}

.family-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #25482b;
}

.family-role {
  font-size: 0.95rem;
  color: #648f6c;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.family-desc {
  font-size: 0.95rem;
  color: #3c5144;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
}

/* ===== FAMILY QUOTE ===== */
.family-quote {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto 2rem;
}

.family-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #25482b;
  border-left: 4px solid #648f6c;
  padding-left: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 992px) {
  .family-quote blockquote {
    font-size: 1.25rem;
    padding-left: 22px;
  }
}

@media (max-width: 992px) {
  .family-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .family-card {
    flex: 0 0 45%;
  }
}

@media (max-width: 600px) {
  .family-card {
    flex: 0 0 90%;
  }
}

/* ===== TIMELINE ===== */
.vynaa-timeline {
  background-color: #f4fbf7;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(100, 143, 108, 0.15);
}

.vynaa-timeline .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #25482b;
  margin-bottom: 1.5rem;
}

.timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #9eb89f;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0.8rem 1.2rem;
}

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

.timeline-item::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #648f6c;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 14px;
  right: -7px;
}

.timeline-item.right::before {
  left: -7px;
}

.timeline-item .content {
  background: #eaf4ee;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.timeline-item h4 {
  font-family: 'Playfair Display', serif;
  color: #648f6c;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: #2f473a;
  margin: 0;
  line-height: 1.45;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 25px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 55px;
    padding-right: 20px;
  }
  .timeline-item.right {
    left: 0;
  }
  .timeline-item::before {
    left: 18px;
  }
}


