@import url("https://fonts.googleapis.com/css2?family=Arya:wght@400;700&display=swap");


.home-highlights {
  padding: 60px 10%;
  background: linear-gradient(to right, #fffaf5, #f7ede2);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #5a2d0c;
  margin-bottom: 40px;
  font-family: "Georgia", serif;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.highlight-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.highlight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.highlight-card h3 {
  margin: 15px 0 10px;
  font-size: 1.3rem;
  color: #5a2d0c;
}

.highlight-card p {
  padding: 0 15px;
  color: #444;
  font-size: 0.95rem;
}

.card-btn {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #8b4513;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.card-btn:hover {
  background-color: #5a2d0c;
}

.about-us {
  padding: 60px 10%;
  background: linear-gradient(to right, #fffaf5, #f7ede2);
  text-align: center;
  font-family: "Georgia", serif;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-us .section-title {
  font-size: 2rem;
  color: #5a2d0c;
  margin-bottom: 40px;
}

.tagline {
  font-size: 1.4rem;
  color: #8b4513;
  font-style: italic;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
