/* ubertex/public/assets/css/about_section.css */

/* 0. Muat font “Tilda Script S Non-connect Demo” */
@font-face {
  font-family: 'TildaScript';
  src: url('../fonts/Tilda Script S Non-connect Demo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 1. Section wrapper */
.about-section {
  width: 100%;
  background-color: #fafafa;
  padding: 4rem 0;
}

/* 2. Inner container */
.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 10rem;
}

/* 3. Logo */
.about-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* 4. Text */
.about-text {
  font-family: 'TildaScript', cursive;
  font-size: clamp(2.5rem, 3vw, 4rem);
  line-height: 1.3;
  color: #333;
  width: 100%;
  margin: 0;
}

/* 5. Mobile responsiveness */
@media (max-width: 768px) {
  .about-inner {
    padding: 0 2rem;       /* kurangi padding samping */
  }
  .about-logo {
    width: 60px;           /* kecilkan logo */
    margin-bottom: 1rem;
  }
  .about-text {
    font-size: clamp(1.25rem, 4vw, 2rem);  /* teks lebih kecil */
    line-height: 1.4;
  }
}
