/* About Section Styles matching Figma Prototype */

.about-hero-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  max-height: 850px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about-text-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-text-lines p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #FFFFFF;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .about-hero-wrapper {
    height: 65vh;
    min-height: 480px;
  }
  .about-title {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .about-text-lines p {
    font-size: 13px;
    line-height: 1.6;
  }
}
