/* Home About Section - Site 2 */
.home-about {
  padding: 80px 0;
}

.home-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* First Row: Content + Main Image */
.home-about .about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.home-about .about-content {
  text-align: left;
}

.home-about .eyebrow {
  font-size: var(--section-eyebrow-size);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 20px 0;
}

.home-about h2 {
  font-size: var(--section-heading-size);
  font-weight: 700;
  color: var(--color-text-dark, #1a1a1a);
  line-height: 1.3;
  margin: 0 0 24px 0;
}

.home-about .description {
  font-size: 16px;
  line-height: var(--section-body-line-height);
  color: #555555;
  margin: 0 0 32px 0;
}

.home-about .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.home-about .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(120, 104, 230, 0.3);
}

.home-about .btn .icon {
  font-size: 18px;
}

.home-about .about-image-main {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  max-height: 450px;
}

.home-about .about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Second Row: Two Images (1/3 + 2/3) */
.home-about .about-gallery {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.home-about .about-image-small,
.home-about .about-image-wide {
  border-radius: 20px;
  overflow: hidden;
}

.home-about .about-image-small img,
.home-about .about-image-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-about .about-image-small {
  height: 400px;
}

.home-about .about-image-wide {
  height: 400px;
}

/* Tablet - 1024px to 1199px */
@media screen and (max-width: 1199px) {
  .home-about {
    padding: 60px 0;
  }

  .home-about .about-main {
    gap: 40px;
    margin-bottom: 50px;
  }

  .home-about h2 {
    font-size: var(--section-heading-size-tablet);
  }

  .home-about .description {
    font-size: 15px;
  }

  .home-about .about-image-small,
  .home-about .about-image-wide {
    height: 350px;
  }

  .home-about .about-gallery {
    gap: 24px;
  }
}

/* Mobile - Below 1024px */
@media screen and (max-width: 1023px) {
  .home-about {
    padding: 50px 0;
  }

  .home-about .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .home-about .about-content {
    text-align: left;
  }

  .home-about h2 {
    font-size: var(--section-heading-size-mobile);
    margin-bottom: 20px;
  }

  .home-about .description {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .home-about .btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .home-about .about-image-main {
    height: 350px;
  }

  .home-about .about-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-about .about-image-small,
  .home-about .about-image-wide {
    height: 300px;
  }
}

/* Extra Small Mobile - Below 480px */
@media screen and (max-width: 479px) {
  .home-about h2 {
    font-size: 24px;
  }

  .home-about .description {
    font-size: 14px;
  }

  .home-about .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .home-about .about-image-main,
  .home-about .about-image-small,
  .home-about .about-image-wide {
    height: 250px;
  }
}
