body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  background: #f9f9f9;
  padding: 10px 0;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  height: auto;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
@media (max-width: 768px) {
  .navbar .container .nav-links {
    display: none;
  }
  .navbar .container .hamburger {
    display: block;
    cursor: pointer;
  }
  .navbar .container .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: #000;
    transition: all 0.3s ease;
  }
}
.navbar .logo img {
  height: 95px;
}
.navbar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .navbar nav ul {
    display: none;
  }
}
.navbar nav ul li {
  position: relative;
  text-wrap: nowrap;
}
.navbar nav ul li p {
  cursor: pointer;
}
.navbar nav ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
}
.navbar nav ul li a:hover {
  text-decoration: underline;
}
.navbar nav ul li a button {
  width: 71px;
  height: 41px;
  background-color: #ff6347;
  color: white;
  cursor: pointer;
  border: outset 3px #ff7f50;
}
.navbar nav ul li a button:hover {
  background-color: #ff7f50;
}
.navbar nav ul li.dropdown p {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  font-size: 1rem;
}
.navbar nav ul li.dropdown p:hover {
  text-decoration: underline;
}
.navbar nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}
.navbar nav ul li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.navbar nav ul li.dropdown .dropdown-menu li a {
  padding: 10px 15px;
  width: 200px;
}
.navbar nav ul li.dropdown .dropdown-menu li a:hover {
  background-color: #f0f0f0;
}
.navbar .social-icons {
  display: flex;
}
.navbar .social-icons a {
  margin: 0 10px;
}
.navbar .social-icons a img {
  height: 37px;
}
@media (max-width: 768px) {
  .navbar .social-icons {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 940px) {
  .navbar .social-icons {
    flex-direction: column;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 250px;
  background: #f9f9f9;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
  color: #000;
}
.mobile-menu ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  padding-top: 50px;
}
.mobile-menu ul li {
  margin: 15px 0;
}
.mobile-menu ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px;
}
.mobile-menu ul li a:hover {
  text-decoration: underline;
}
.mobile-menu ul li a button {
  width: 71px;
  height: 41px;
  background-color: #ff6347;
  color: white;
  cursor: pointer;
  border: outset 3px #ff7f50;
}
.mobile-menu ul li a button:hover {
  background-color: #ff7f50;
}
.mobile-menu ul .dropdown-hamburger .dropdown-toggle {
  cursor: pointer;
  padding: 10px;
  color: #000;
  font-size: 1rem;
}
.mobile-menu ul .dropdown-hamburger .dropdown-toggle:hover {
  text-decoration: underline;
}
.mobile-menu ul .dropdown-hamburger .dropdown-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 20px;
}
.mobile-menu ul .dropdown-hamburger .dropdown-menu li {
  margin: 10px 0;
}
.mobile-menu ul .dropdown-hamburger .dropdown-menu li a {
  padding: 5px 10px;
  background: #e9e9e9;
}
.mobile-menu ul .dropdown-hamburger .dropdown-menu li a:hover {
  background: #d9d9d9;
}
.mobile-menu ul .dropdown-hamburger.open .dropdown-menu {
  display: block;
}
.mobile-menu.active {
  display: block;
  transform: translateX(0);
}
@media (min-width: 769px) {
  .mobile-menu.active {
    display: none;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

.footer {
  background-color: #333;
  color: #f9f9f9;
  padding: 20px 0;
  text-align: center;
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .footer .footer-content {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}
.footer .footer-content .footer-column {
  margin-bottom: 20px;
}
.footer .footer-content .footer-column h4 {
  color: #f39c12;
  margin-bottom: 10px;
}
.footer .footer-content .footer-column .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-column .footer-links li {
  margin: 5px 0;
}
.footer .footer-content .footer-column .footer-links li a {
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .footer-content .footer-column .footer-links li a:hover {
  color: #f39c12;
}
@media (min-width: 769px) {
  .footer .footer-content .footer-column .footer-links {
    display: flex;
    flex-direction: row;
  }
  .footer .footer-content .footer-column .footer-links li {
    margin: 0 15px;
  }
}
.footer .footer-content .footer-column .footer-social-icons {
  display: flex;
  justify-content: center;
}
.footer .footer-content .footer-column .footer-social-icons a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s;
}
.footer .footer-content .footer-column .footer-social-icons a:hover {
  transform: scale(1.1);
}
.footer .footer-content .footer-column .footer-social-icons a img {
  width: 40px;
  height: 40px;
}
.footer .footer-copyright {
  margin-top: 20px;
}
.footer .footer-copyright a {
  color: #f39c12;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .footer-copyright a:hover {
  color: #fff;
}
.footer .footer-copyright p {
  font-size: 0.8rem;
}

.hero-section {
  position: relative;
  height: 60vh;
  background: url("/assets/images/hair-hero.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content .hero-title {
  font-size: 3rem;
  margin: 0;
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.5rem;
  margin: 1rem 0;
}
.hero-section .hero-content .hero-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #b79860;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.hero-section .hero-content .hero-cta:hover {
  background-color: #916a46;
}

.section-title {
  text-align: center;
  font-size: 2rem; /* Adjust font size as needed */
  width: 20%;
  margin: 2rem auto;
  padding: 20px;
  position: relative;
  border-top: 2px dotted #ff6347;
  border-bottom: 2px dotted #ff6347;
  /* Borders */
  /* Left Border WORKING*/
  /* Right Border WORKING*/
  /* Media Query for smaller screens */
}
.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 2px; /* Adjust thickness as needed */
  border-left: 2px dotted #ff6347;
}
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 50%;
  width: 2px; /* Adjust thickness as needed */
  border-right: 2px dotted #ff6347;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem; /* Example of reducing font size */
    margin: 1rem auto; /* Example of adjusting margins */
    width: 30%;
  }
}

.pricing-section {
  background-color: #f9f9f9;
  padding: 2rem 1rem;
}
.pricing-section .pricing-table {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pricing-section .pricing-table .pricing-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0;
  border-bottom: 1px dotted #d0d0d0;
}
.pricing-section .pricing-table .pricing-row .service, .pricing-section .pricing-table .pricing-row .price {
  flex: 1;
  padding: 0 1rem;
  text-align: left;
  color: #555;
}
.pricing-section .pricing-table .pricing-row .price {
  text-align: right;
}

.gallery-section {
  background-color: #fff;
  padding: 2rem 1rem;
}
.gallery-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Define a fixed number of columns */
  gap: 10px;
}
.gallery-section .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-section .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.gallery-section .gallery-grid .gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-section .gallery-grid .gallery-item.medium {
  grid-column: span 2;
}/*# sourceMappingURL=services.css.map */