/* Aribellas Fabrics About page */

/* Main About section */
.about-section {
  width: 100%;
  padding: 90px 20px;
  background: #eef0f2;
}

.about-wrap {
  position: relative;
  width: 100%;
  max-width: 1150px;
  min-height: 630px;
  margin: 0 auto;

  display: flex;
  align-items: center;
}

/* About image */
.about-image {
  width: 54%;
  height: 630px;

  /* about.css is inside public/css, so images are one folder above */
  background-image: url("../img/aboutme.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

/* Glass content card */
.about-content {
  position: absolute;
  right: 0;
  z-index: 2;

  width: 50%;
  padding: 54px 64px;

  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.about-label {
  margin: 0 0 12px;

  color: #8f7a68;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0 0 24px;

  color: #2f3c44;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.25;
}

.about-content p {
  margin: 0 0 16px;

  color: #5e6970;
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 1.9;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Tablet and mobile layout */
@media (max-width: 900px) {
  .about-section {
    padding: 60px 18px;
  }

  .about-wrap {
    display: block;
    min-height: auto;
  }

  .about-image {
    width: 100%;
    height: 360px;
  }

  .about-content {
    position: relative;
    right: auto;

    width: 92%;
    margin: -70px auto 0;
    padding: 38px 30px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .about-section {
    padding: 40px 14px;
  }

  .about-image {
    height: 290px;
    border-radius: 14px;
  }

  .about-content {
    width: calc(100% - 20px);
    margin-top: -45px;
    padding: 30px 22px;
    border-radius: 18px;
  }

  .about-label {
    font-size: 11px;
    letter-spacing: 2.4px;
  }

  .about-content h2 {
    margin-bottom: 18px;
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 1.75;
  }
}