@charset "UTF-8";

/* === About Snapshot Section === */
.about-snapshot {
  text-align: center;
  padding: 80px 10px 20px 10px;
  background: linear-gradient(to bottom, #f3f5f0, #ffffff); /* same as home section */
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  color: #2e2e2e;
}

.about-snapshot h1 {
  font-size: 60px;
  font-weight: bold;
  background: linear-gradient(to right, #e6c26a, #5d9b6a, #6d9dc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: 'Milk Drink';
}

.about-snapshot h2 {
  font-size: 34px;
	line-height: 34px;
  font-weight: bold;
  margin-bottom: 15px;
  background: linear-gradient(to right, #e6c26a, #5d9b6a, #6d9dc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: 'Nunito Black';
}

.about-snapshot p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #000000;
	font-family: 'Nunito';
}

/* Unified button style */
.about-snapshot .link {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  background: linear-gradient(to right, #5d9b6a, #6d9dc5);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	font-family: 'Nunito Black';
}

.about-snapshot .link:hover {
  background: linear-gradient(to right, #6fbf8a, #85aed7);
}

/* About Banner Image */
.about-banner img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin: 0px 0px 0px 0px;
  object-fit: cover;
  max-height: auto;
	min-height: 350px;
	
}

/* === MEDIA QUERIES === */
@media (max-width: 1200px) {
	
.about-snapshot h1 {
    font-size: 50px;
  }
	
  .about-snapshot h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about-snapshot {
    padding: 60px 20px;
  }

.about-snapshot h1 {
    font-size: 50px;
  }
	
  .about-snapshot h2 {
    font-size: 28px;
  }

  .about-snapshot p {
    font-size: 17px;
  }

  .about-banner img {
    max-height: 240px;
  }
}

@media (max-width: 480px) {
	
.about-snapshot h1 {
    font-size: 36px;
  }
	
  .about-snapshot h2 {
    font-size: 24px;
  }

  .about-snapshot p {
    font-size: 16px;
  }

  .about-snapshot .link {
    font-size: 15px;
    padding: 10px 22px;
  }

  .about-banner img {
    max-height: 220px;
  }
}

@media (max-width: 300px) {
  .about-snapshot {
    padding: 60px 10px 20px 10px;
  }

.about-snapshot h1 {
    font-size: 30px;
	padding: 20px 10px 20px 10px;
	margin: 0px;
  }
	
  .about-snapshot h2 {
    font-size: 20px;
  }

  .about-snapshot p {
    font-size: 15px;
  }

  .about-snapshot .link {
    font-size: 14px;
    padding: 8px 18px;
  }
}
