@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Playfair Display", serif;
  background: #140f06;
}

.about-coffee {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
.about-coffee__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.about-coffee__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.about-coffee__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(40, 20, 10, 0.87);
}
.about-coffee__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  align-items: center;
}
.about-coffee__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}
.about-coffee__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-coffee__right {
  color: #fff;
}
.about-coffee__title {
  margin: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 600;
}
.about-coffee__text {
  margin: 0 0 16px;
  line-height: 1.8;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.about-coffee {
  /* felső hullám */
}
.about-coffee::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  border-bottom-left-radius: 40% 100%;
  border-bottom-right-radius: 50% 100%;
  z-index: 4;
}
.about-coffee {
  /* alsó hullám */
}
.about-coffee::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 100px;
  background: white;
  border-top-left-radius: 40% 100%;
  border-top-right-radius: 60% 100%;
  z-index: 4;
}

/* TABLET */
@media (max-width: 900px) {
  .about-coffee__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}
/* MOBILE */
@media (max-width: 600px) {
  .about-coffee {
    padding: 60px 16px;
  }
  .about-coffee__avatar {
    width: 140px;
    height: 140px;
  }
  .about-coffee__title {
    font-size: 1.7rem;
  }
  .about-coffee__text {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=about.css.map */