/* ABOUT BANNER */
.about-banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("/src/image/cats-4.png") center / cover no-repeat;

  min-height: 70vh;
  max-height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 16px;
}


.about-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(26px, 4vw, 44px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ABOUT CONTENT */
.about-content {
  padding: clamp(40px, 6vw, 80px) 0;
}

.about-content p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
}

.about-contact p {
  font-size: clamp(14px, 1.5vw, 16px);
}


