/* Hero section */
.services-hero {
  position: relative;
  height: 450px;
}

.services-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero .overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.5);
}

.services-hero .caption {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.services-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #BE8445;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 1.2rem;
}

/* Service category */
.service-category {
  padding: 60px 20px;
  text-align: center;
}

.service-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #BE8445;
  margin-bottom: 40px;
}

/* Service cards */
.service-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: #111;
  border: 2px solid #BE8445;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.card h3 {
  color: #BE8445;
  margin-bottom: 10px;
}

.card p {
  color: #fff;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 80%;
  }
  .services-hero h1 {
    font-size: 2rem;
  }
  .services-hero p {
    font-size: 1rem;
  }
}
