/* =========================
   HERO
========================= */
.about-hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f3ef;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

/* =========================
   CONTENT
========================= */
.about-content {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-content p {
  margin-bottom: 28px;
  font-size: 17px;
}

.about-content .highlight {
  font-size: 19px;
  font-weight: 500;
}

/* Process Image*/
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.7;
}

.about-image {
  display: block;
  max-width: 420px;     /* keeps image short */
  width: 100%;
  margin: 30px auto;    /* centers image */
  border-radius: 18px;  /* soft, premium curves */
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
  filter: saturate(0.95) contrast(0.95);
}

/* Mobile refinement */
@media (max-width: 768px) {
  .about-image {
    max-width: 90%;
    margin: 24px auto;
    border-radius: 14px;
  }
}


/* =========================
   CTA
========================= */
.about-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.primary {
  border: 2px solid #000;
  background: #735240;
  color: #fff;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
}

.outline {
  border: 2px solid #000;
  color: #000;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  background: #25D366;
  color: #fff;  
}

.instagram {
  border: 2px solid #e1306c;
  color: #e1306c;
  background: transparent;
  padding: 14px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;  
}

/* Hover */
.btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  font-size: 15px;
}

.footer p {
  margin-bottom: 8px;
}

.social-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: #fff;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 22px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 32px;
    text-align: center;
  }

  .about-content {
    margin: 50px auto;
  }
}
