:root {
  --primary: #2563eb;
  --text-light: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.55);
  --font-main: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
}

/* HERO SECTION */
.about-hero {
  position: relative;
  min-height: 40vh;
  background: url("../images/hero-bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--text-light);
}

/* GRADIENT OVERLAY */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

/* CONTENT */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.about-content h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

.story-section {
  padding: 5rem 6%;
  background: var(--bg-light);
  font-family: var(--font-main);
}

.story-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* TEXT */
.story-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.story-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* IMAGE GRID */
.story-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.story-images .img {
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  min-height: 170px;
}

/* INDIVIDUAL IMAGES */
.img-1 {
  background-image: url("../images/about-img.jpg");
}

.img-2 {
  background-image: url("../images/about-2.jpg");
}

.img-3 {
  background-image: url("../images/about-3.jpg");
}

.img-4 {
  background-image: url("../images/about-4.jpg");
}

/* TABLET */
@media (max-width: 992px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .story-section {
    padding: 3.5rem 1.5rem;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

  .story-images .img {
    min-height: 200px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .about-hero {
    min-height: 40vh;
  }

  .about-content p {
    font-size: 1rem;
  }
}
