/* === Welcome Section === */
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 10px auto;
}
.logo-container {
  flex-shrink: 0;
}
.salon-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ddd;
  background: #fff;
}
.welcome-text h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: #222;
}
.welcome-text h1 span {
  color: #b6206c;
}
.welcome-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
  color: #555;
}
.welcome-text p {
  margin-top: 12px;
  font-size: 16px;
  color: #666;
  max-width: 500px;
}

/* ===============================
   Service List Styling
   =============================== */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* mobile default */
  gap: 20px;
}

.services-list li {
  background-color: #fff;
  padding: 12px 16px;
  border-left: 5px solid #6c757d;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-list li:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===============================
   Images Gallery & Carousel Styling
   =============================== */

/* Hide carousel on mobile */
@media (max-width: 768px) {
  #carouselContainer {
    display: none !important;
  }
}

.gallery-item img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
}

.carousel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1050;
  display: none;
  justify-content: center;
  align-items: center;
}

.carousel-wrapper {
  position: relative;
  width: 80%;
  max-width: 1000px;
  height: 500px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item img {
  max-height: 450px;
  margin: auto;
  display: block;
  object-fit: contain;
}

.close-carousel {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1100;
}

.show-carousel {
  display: flex !important;
}
