/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');

.about-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Images Container */
.about-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  z-index: 1;
}

.about-image-container {
  width: 50%;
  height: 100vh;
  overflow: hidden;
}

/* On screens < 1300px, hide second image and make first full width */
@media (max-width: 1299px) {
  .about-image-first {
    width: 100%;
  }
  
  .about-image-second {
    display: none;
  }
}

/* On screens >= 1300px, show both images side by side */
@media (min-width: 1300px) {
  .about-image-first {
    width: 50%;
  }
  
  .about-image-second {
    width: 50%;
  }
}

.about-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top center;
}

/* Dark Overlay */
.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

/* Content Overlay */
.about-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px;
  max-width: 1200px;
}

/* Quote */
.about-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 30px 0;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* Attribution */
.about-attribution {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-quote {
    font-size: 44px;
    margin-bottom: 25px;
  }

  .about-attribution {
    font-size: 20px;
  }

  .about-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .about-image-first {
    width: 100%;
  }

  .about-quote {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .about-attribution {
    font-size: 18px;
  }

  .about-content {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .about-quote {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .about-attribution {
    font-size: 16px;
  }

  .about-content {
    padding: 20px;
  }
}

