* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}

/* Hero Section */
.hero-section {
  /* margin-top: 60px; */
  background-image: url("/assets/images/Salon\ Hero\ Banner\ Image.jpg");
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50vh;
  width: 100%;
  /* margin-top: 60px; */
  background: rgba(0, 0, 0, 0.7);
}

.hero-section * {
  z-index: 1;
}

.hero-section h1 {
  color: #fff;
}

.hero-section p {
  color: #fff;
  margin: 0 200px;
  text-align: center;
}

/* Hero Section Mobile Responsive */

@media (max-width: 480px) {
  .hero-section {
    text-align: center;
    padding: 20px;
    height: 34vh;
  }

  .hero-section::before {
    height: 40vh;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section p {
    font-size: 14px;
    margin: 0;
  }
}

/* Tablet Responsive */
/* 
@media (max-width: 768px) {
  .hero-section {
    height: 30vh;
  }

  .hero-section::before {
    height: 30vh;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    height: 30vh;
  }

  .hero-section::before {
    height: 30vh;
  }
} */

/* // // // */

.service-options {
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
}

.option {
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #ccc;
  padding: 5px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.option button {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* service Options Mobile Responsive */

@media (max-width: 480px) {
  .service-options {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .option {
    padding: 5px 10px;
    width: 120px;
    justify-content: start;
    /* align-items: start; */
  }

  .option button {
    font-size: 12px;
  }
}

/* Tablet Responsive */
/* 
@media (max-width: 768px) {
  .service-options {
    padding: 40px;
    gap: 20px;
  }

  .option {
    padding: 5px 10px;
    justify-content: center;
    gap: 5px;
  }

  .option button {
    font-size: 12px;
  }
} */

/* Tablet Responsive */
/* @media (max-width: 1024px) {
  .service-options {
    padding: 50px;
    gap: 20px;
  }

  .option {
    padding: 5px 10px;
    justify-content: center;
    gap: 5px;
  }

  .option button {
    font-size: 12px;
  }
} */

/* // // // */

.service-section {
  padding: 20px 100px;
}

.service-name-hai {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  text-align: center;
}

.service-name-hai h3 {
  font-size: 32px;
  font-weight: 600;
}

.service-name-hai p {
  font-size: 14px;
  color: #444;
}

.cta a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}

.service-card-content {
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 0 0 8px 8px;
}

.service-card-content h4 {
  font-size: 18px;
  font-weight: 600;
}

.service-card-content p {
  font-size: 14px;
  color: #444;
  margin: 10px 0 10px 0;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-details .fee,
.time,
.gender,
.location {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.service-details i {
  color: #ffb30d;
  background-color: #001542;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 50px;
  padding: 5px;
}

.service-card-content a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 5px 25px;
  border-radius: 50px;
  font-size: 14px;
  width: fit-content;
}

/* service section Mobile Responsive */
@media (max-width: 480px) {
  .service-section {
    padding: 20px;
  }

  .service-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .service-name-hai h3 {
    font-size: 28px;
  }

  .service-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Tablet Responsive */
/* @media (max-width: 768px) {
  .service-section {
    padding: 40px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -60px;
  }
} */

/* Laptop Responsive */
/* @media (max-width: 1024px) {
  .service-section {
    padding: 50px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -70px;
  }
} */

/* // // // */

.show-service {
  padding: 20px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.show-service button {
  background-color: #001542;
  border: none;
  outline: none;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.navigations i {
  background-color: #001542;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  padding: 5px;
  cursor: pointer;
}

/* show services Responsive */
@media (max-width: 480px) {
  .show-service {
    padding: 20px;
  }

  .show-service button {
    padding: 10px 20px;
  }
}
