/*
Theme Name: Hair Salon
Theme URI: http://example.com/hair-salon-theme
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme for a hair salon
Version: 1.0
*/

/* --- style.css --- */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}
a {
  color: #e91e63;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.services-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.service-item {
  flex: 1 1 30%;
  margin: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e91e63;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}