:root {
  --primary-color: #a14920;
  --secondary-color: #b07455;
  --accent-color: #c0c0c0;
  --text-color: #691d10;
  --light-text: #666666;
  --sidebar-width: 250px;
}

body {
  color: var(--text-color);
}

.hero-section {
  background-image: url("../img/Our-Treatments-1920x980-1.jpg");
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  z-index: -98;
}

.hero-section::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -99;
}

.hero-section h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.treatment-card {
  margin-bottom: 30px;
  border: none;
  transition: transform 0.3s ease;
}

.treatment-card:hover {
  transform: scale(1.03);
}

.treatment-card img {
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.treatment-card .card-body {
  padding: 20px;
  background-color: #f9f5f0;
}

.btn-custom {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--text-color);
  color: white;
}

.wellness-section {
  background-color: #f9f5f0;
  padding: 50px 0;
}/*# sourceMappingURL=treatments.css.map */