body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
}

.letter-spacing {
  letter-spacing: 2px;
}

.navbar-nav .nav-link {
  color: white;
  margin: 10px;
}

.navbar-brand {
  font-family: serif;
  letter-spacing: 2px;
  font-size: 1.25rem;
}

.btn-outline-light:hover {
  background-color: white;
  color: black;
}

.hero-img {
  max-height: 80vh;
  object-fit: cover;
}

@media (max-width: 576px) {
  .display-5 {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
  }



}

.service-card {
  height: 550px;
  overflow: hidden;
  border: none;
  position: relative;
  background-color: #000;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.overlay a.btn {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}

#about-us-section {
  background-color: #111;
  padding: 60px 20px;
  border-radius: 8px;
}

#about-us-section h2 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1rem;
}

#about-us-section h6 {
  color: #aaa;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

#about-us-section p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

#about-us-section img {
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

#about-us-section i {
  color: #fff;
  transition: transform 0.3s ease;
}

#about-us-section i:hover {
  transform: scale(1.1);
}

#about-us-section .col-6 p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Mobile Optimization */
@media (max-width: 576px) {
  #about-us-section {
    padding: 40px 10px;
    text-align: center;
  }

  #about-us-section h2 {
    font-size: 1.5rem;
  }

  #about-us-section img {
    max-height: 300px;
  }

  #about-us-section .col-6 {
    margin-bottom: 1rem;
  }
}

#working-hours h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

#working-hours p,
#working-hours ul {
  color: #ccc;
}

#working-hours li {
  margin-bottom: 0.5rem;
}

/* #brands img.grayscale {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}

#brands img.grayscale:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 576px) {
  #working-hours {
    text-align: center;
  }

  #working-hours img {
    max-height: 300px;
  }

  #brands img {
    max-width: 80px;
    margin-bottom: 1rem;
  }
} */

#salon-features p {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 0.5rem;
}

#salon-features i {
  transition: transform 0.3s ease;
}

#salon-features i:hover {
  transform: scale(1.1);
}

@media (max-width: 576px) {
  #salon-features .col-6 {
    margin-bottom: 1rem;
  }
}

#what-we-offer h2 {
  font-size: 2rem;
  font-weight: 600;
}

#what-we-offer .carousel-item img {
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

#what-we-offer .btn-outline-light:hover {
  background-color: white;
  color: black;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
}

@media (max-width: 768px) {
  #what-we-offer .carousel-item .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

#image-showcase img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

#beauty-packages h2 {
  font-size: 2rem;
  font-weight: 600;
}

#beauty-packages .accordion-button::after {
  filter: invert(1);
}

#beauty-packages .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #111;
}

#beauty-packages .accordion-item {
  border-color: #f5f4f4;
}

#beauty-packages .accordion-body {
  font-size: 0.95rem;
}

#service-packages {
  background-color: #000;
}

.package-card {
  width: 280px;
  background-color: #0e0e0e;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card h3 {
  font-family: serif;
  font-weight: 500;
  color: #fff;
}

.package-card p,
.package-card ul li {
  color: #ccc;
  font-size: 0.9rem;
}

.package-card hr {
  border-color: #444;
}

.package-card .btn-outline-light:hover {
  background-color: #fff;
  color: #2f2f2f;
}

@media (max-width: 768px) {
  .package-card {
    width: 100%;
  }
}

#contact-section h2 {
  font-size: 2rem;
  font-weight: 600;
}

#contact-section p,
#contact-section strong {
  color: #ccc;
  font-size: 0.95rem;
}

#booking-cta {
  background-image: url('images/cta4.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.7);
}


.footer-brand {
  font-family: serif;
  font-size: 1.25rem;
  letter-spacing: 2px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  display: inline-block;
  padding: 0.5rem 0;
}

.footer-title {
  font-family: serif;
  font-size: 1.1rem;
}

.footer-divider {
  width: 40px;
  border-top: 1px solid #444;
  margin: 0.5rem 0 1rem;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-icon {
  color: #fff;
  font-size: 1rem;
  border: 1px solid #fff;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-icon:hover {
  background-color: #fff;
  color: #fafafa;
}

@media (max-width: 576px) {
  .footer-brand {
    font-size: 1.1rem;
  }
}

#footer .small {
  color: #ccc;
  font-size: 0.85rem;
}
