@import url('styles.css');

/* =========================
   ABOUT HERO
========================= */
.about-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  background: rgba(58, 47, 40, 0.45);
  position: absolute;
  inset: 0;
}

.about-hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  color: #FFFFFF;
  z-index: 2;
}

.about-hero-content h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #FDF9F3;
}

.about-hero-content p {
  font-family: "Inter", sans-serif;
  color: #F1E3D4;
  margin-top: 12px;
}

/* =========================
   ABOUT PAGE ELEMENTS
========================= */
.about-image-wide img {
  width: 100%;
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid #E6DCCF;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  background: #F8F1E7;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.values-grid h3 {
  font-family: "Playfair Display", serif;
  color: #2E241E;
  margin-bottom: 6px;
}

.values-grid p {
  font-family: "Inter", sans-serif;
  color: #3A2F28;
}

/* FOUNDER SECTION */
.founder-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.founder-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #E6DCCF;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  background: #F8F1E7;
}

.founder-grid h3 {
  font-family: "Playfair Display", serif;
  color: #2E241E;
  margin-bottom: 10px;
}

.founder-grid p {
  font-family: "Inter", sans-serif;
  color: #3A2F28;
}

/* =========================
   CTA BOX
========================= */
.cta-box {
  text-align: center;
  padding: 50px;
  background: #F3E8DA;
  border-radius: 20px;
  border: 1px solid #E6DCCF;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.cta-box h3 {
  font-family: "Playfair Display", serif;
  color: #2E241E;
  margin-bottom: 12px;
}

.cta-box p {
  font-family: "Inter", sans-serif;
  color: #3A2F28;
  margin-bottom: 20px;
}
