/* ================= ABOUT PAGE ONLY ================= */

/* HERO BANNER */
.about-hero {
  background: linear-gradient(rgba(245,245,245,0.6), rgba(245,245,245,0.6)),
              url('images/about-hero.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
}
.about-hero h1 {
  font-size: 2.4rem;
  color: #7f5539;
}
.about-hero .subtitle {
  font-size: 1.1rem;
  color: #7f5539;
}

/* BRAND STORY */
.story-grid {
  display: block;   /* only text now, no 2-column grid */
}
.story-text p { margin-bottom: 14px; }

/* MISSION + VISION */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ABOUT PAGE CARDS (craftsmanship, testimonials) */
.about-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  text-align: left;
}
.about-card img {
  width: 100%;
  height: 160px;   /* specific only for About page */
  object-fit: cover;
  border-radius: 8px;
}
.about-card h4 { margin: 12px 0 6px; }

/* TESTIMONIALS */
.testimonials .quote {
  font-style: italic;
  margin: 12px 0;
  color: #5a3f33;
}
.testimonials .author {
  font-weight: 600;
  color: #4b3027;
}

/* FAQ */
.faq-item {
  background: #ffffff;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, rgba(191,158,124,0.08), rgba(245,245,245,0.08));
  padding: 30px 20px;
  border-radius: 10px;
  margin: 30px 0;
}
.btn-cta {
  display: inline-block;
  background: #7f5539;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn-cta:hover { background: #b08968; }

/* RESPONSIVE FIX */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 1.8rem; }
  .about-card img { height: 140px; }
}
/* ================= ABOUT PAGE ONLY ================= */

/* HERO BANNER */
.about-hero {
  background: linear-gradient(rgba(245,245,245,0.6), rgba(245,245,245,0.6)),
              url('images/about-hero.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
}
.about-hero h1 {
  font-size: 2.4rem;
  color: #7f5539;
}
.about-hero .subtitle {
  font-size: 1.1rem;
  color: #7f5539;
}

/* BRAND STORY */
.story-grid {
  display: block; /* only text now */
}
.story-text p {
  margin-bottom: 14px;
  color: #444;
  line-height: 1.6;
}

/* MISSION + VISION */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.two-col h3 {
  color: #7f5539;
  margin-bottom: 8px;
}
.two-col p {
  color: #444;
  line-height: 1.5;
}

/* ABOUT PAGE CARDS (craftsmanship, testimonials) */
.about-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  text-align: left;
}

/* ================= CRAFTSMANSHIP ICONS ================= */
.craft .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.craft svg {
  width: 50px;
  height: 50px;
  fill: #7f5539;
  transition: transform 0.3s ease;
}
.craft svg:hover {
  transform: scale(1.1);
}
.craft h4 {
  text-align: center;
  margin-bottom: 8px;
  color: #5a3f33;
}
.craft p {
  text-align: center;
  font-size: 0.95rem;
  color: #444;
}

/* TESTIMONIALS */
.testimonials .card {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}
.testimonials .quote {
  font-style: italic;
  margin: 12px 0;
  color: #5a3f33;
  font-size: 1rem;
  line-height: 1.6;
}
.testimonials .author {
  font-weight: 600;
  color: #4b3027;
  margin-top: 8px;
}

/* FAQ */
.faq-item {
  background: #ffffff;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.faq-item h4 {
  color: #7f5539;
  margin-bottom: 6px;
}
.faq-item p {
  color: #444;
  font-size: 0.95rem;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, rgba(191,158,124,0.08), rgba(245,245,245,0.08));
  padding: 30px 20px;
  border-radius: 10px;
  margin: 30px 0;
}
.btn-cta {
  display: inline-block;
  background: #7f5539;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn-cta:hover {
  background: #b08968;
}

/* RESPONSIVE FIX */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 1.8rem; }
}
