:root{
  --pink-500: #ff3d86;
  --pink-600: #e03378;
  --muted: #6c757d;
  --soft-bg: #faf7fb;
  --radius-lg: 16px;
  --card-shadow: 0 8px 30px rgba(16,24,40,0.08);
  --glass: rgba(255,255,255,0.7);
}

*{box-sizing:border-box}
body{
  font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#222;
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Logo */
.logo-circle{
  width:56px; height:56px; border-radius:12px;
  background: linear-gradient(135deg,var(--pink-500),var(--pink-600));
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 18px rgba(224,51,120,0.18);
}
.logo-letter{
  color:white; font-weight:700; font-size:22px;
}
.brand-title{font-weight:700; color:#111}
.brand-sub{font-size:11px}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
/* Dropdown menu background and text color */
.dropdown-menu {
  background-color: #ff69b4; /* Pink background */
  color: #fff; /* White text */
}

/* Dropdown menu links */
.dropdown-menu a {
  color: #fff !important;
}

/* Dropdown hover effect */
.dropdown-menu a:hover {
  background-color: #ff85c1; /* Slightly lighter pink */
  color: #fff !important;
}

/* Fullscreen mobile navbar */
@media (max-width: 991px) { /* Applies to tablet & mobile */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff69b4; /* Pink background */
    padding-top: 80px; /* Space for brand */
    text-align: center;
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
  }

  .navbar-collapse.collapsing {
    height: 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-collapse.show {
    display: block;
  }

  /* Menu items styling */
  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.5rem;
    padding: 15px 0;
  }

  /* Close button style */
  .navbar-toggler {
    z-index: 10000;
  }
}


/* Hero */
.hero-section{
  position:relative;
}
.carousel-caption{
  bottom:22%;
  left:8%;
  right:35%;
  text-align:left;
}
.carousel-caption h1{
  font-size:2.4rem; font-weight:700; letter-spacing:-0.02em;
  text-shadow: 0 6px 20px rgba(0,0,0,0.28);
}
.carousel-caption p{ font-size:1.05rem; color: #f3f1f1; max-width:560px; text-shadow:0 6px 18px rgba(0,0,0,0.2);}

.carousel-item {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh; /* adjust if you want smaller height */
}

.carousel-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.55); /* Adjust darkness */
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  z-index: 1;
}

/* Buttons */
.btn-pink{
  background: linear-gradient(90deg,var(--pink-500),var(--pink-600));
  border: none; color: white; font-weight:600;
  box-shadow: 0 10px 30px rgba(224,51,120,0.18);
}
.btn-outline-pink{
  border: 1px solid var(--pink-500); color:var(--pink-500);
  background: transparent;
}
.btn-outline-pink:hover{ background: rgba(255,61,134,0.06); color:var(--pink-600); }

.btn-light{ background: rgba(255,255,255,0.92); color:#333 }

/* Section Titles */
.section-title h2{ font-weight:700; margin-bottom:6px; font-size:1.6rem; }
.section-title p{ color:var(--muted); margin-bottom:0 }

/* Cards */
.service-card{
  border-radius:14px; overflow:hidden; box-shadow: var(--card-shadow);
}
.service-card img{ height:220px; object-fit:cover; }

/* subtle backgrounds */
.bg-soft{ background: linear-gradient(180deg,#fff 0%, #fff 100%); }
.bg-light{ background: var(--soft-bg); }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0;
  text-align: center;
  background: var(--soft-bg);
}

.gallery-section .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--pink-600);
  position: relative;
  display: inline-block;
}

.gallery-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--pink-500);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transform: scale(0.95);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.95);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  animation: zoomIn 0.5s ease;
}

/* Lightbox zoom animation */
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: var(--pink-500);
}

/* Prev / Next buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -50px;
  color: #fff;
  font-weight: bold;
  font-size: 36px;
  user-select: none;
  transition: 0.3s;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
  color: var(--pink-500);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transform: scale(0.95);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Square aspect ratio */
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* equal width & height */
  object-fit: cover;     /* crop image to fit */
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Testimonial card tweak */
.blockquote{ border-left: none; margin: 0; padding: 0 2rem; color: #333; }

/* Footer */
footer{ background: linear-gradient(90deg,#0b1020,#111); color: #ddd }

/* Floating Book Button */
#floatingBookBtn{
  position: fixed; right: 18px; bottom: 18px; width:62px; height:62px;
  display:none; align-items:center; justify-content:center; z-index:1100;
  border: none;
}

/* Modal styling */
.modal-content{ border-radius:18px; overflow:hidden; }
.modal-header .modal-title{ font-weight:700; color:#111; }

/* Small screens */
@media (max-width: 991px){
  .carousel-caption{ right:8%; left:8%; bottom:12%; text-align:center; }
  .carousel-caption h1{ font-size:1.6rem; }
  .carousel-caption p{ display:none; }
}

/* Utilities */
.text-pink{ color: var(--pink-500) !important; }

/* Input focus */
.form-control:focus, .form-select:focus{
  border-color: var(--pink-500);
  box-shadow: 0 0 0 0.15rem rgba(255,61,134,0.12);
}

/* Polished small touch */
.card-footer .btn{ border-radius:10px; }

/* Accessibility: visible focus */
a:focus, button:focus, input:focus { outline: 2px solid rgba(255,61,134,0.15); outline-offset:2px; }
/* Desktop hover dropdown */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.text-pink {
  color: #ff69b4;
}

.insta-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insta-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.bg-pink {
  background-color: #ff69b4;
}

.btn-pink {
  background-color: #ff69b4;
  color: white;
}
.btn-pink:hover {
  background-color: #e55ca2;
}

.whatsapp-popup {
  position: fixed;
  bottom: 80px;
  right: -350px;
  width: 300px;
  background: white;
  border-radius: 12px;
  transition: right 0.5s ease;
  z-index: 9999;
}

.whatsapp-popup.show {
  right: 20px;
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  background: white;
  padding: 5px;
  border-radius: 50%;
  z-index: 9999;
}

#close-whatsapp-popup {
  color: white;
}
#close-whatsapp-popup:hover {
  color: #ccc;
}

#hero-slider {
  position: relative;
}

.carousel-item {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-caption {
  bottom: 20%;
  z-index: 2;
}

.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.carousel-caption p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
  max-width: 500px;
}

.hero-section-about {
  position: relative;
  background: url('images/about-hero.jpg') center/cover no-repeat;
  height: 350px;
  padding-top: 80px; /* to avoid navbar overlap */
}

.hero-section-about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay for text contrast */
}

.hero-section-about h1,
.hero-section-about .breadcrumb {
  color: #fff;
}

.hero-section-about .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.hero-section-service {
  position: relative;
  background: url('images/service-hair-hero.jpg') center/cover no-repeat;
  height: 350px;
  padding-top: 120px; /* Increased for navbar spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section-service .overlay {
  position: absolute;
  top: 0; 
  left: 0;
  height: 100%; 
  width: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-section-service .container {
  position: relative;
  z-index: 2;
}

section {
  padding: 60px 0; /* General padding for all sections */
}

section.bg-light {
  padding: 80px 0;
}

.category-title {
        background-color: #ff4c8b;
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    .offer-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
    }
    .offer-img:hover {
        transform: scale(1.05);
    }
    
    .whatsapp-btn {
        background-color: #25d366;
        color: #fff;
        border: none;
        padding: 10px 20px;
        font-size: 18px;
        border-radius: 50px;
        margin-top: 15px;
        text-decoration: none;
        display: inline-block;
    }
    .whatsapp-btn:hover {
        background-color: #1ebe5b;
        color: #fff;
    }

.btn-close-white {
    filter: invert(1); /* Makes the close icon white */
}
/* Scroll to Top Button Style */
#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #e91e63; /* Pink */
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #c2185b; /* Darker Pink */
}

/* Mobile Navbar */
@media (max-width: 991px) {
  .navbar {
    background: #fff;
    padding: 10px 15px;
  }
  .navbar .nav-link {
    display: block;
    padding: 10px;
    text-align: left;
  }
}

/* Hero text adjustments */
@media (max-width: 768px) {
  .hero-section h1,
  .carousel-caption h1 {
    font-size: 1.8rem;  /* smaller heading */
    line-height: 1.3;
  }
  .hero-section p,
  .carousel-caption p {
    font-size: 1rem;
  }
  .hero-section .btn,
  .carousel-caption .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* Services grid */
@media (max-width: 991px) {
  .gallery-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns tablet */
  }
}

@media (max-width: 576px) {
  .gallery-grid,
  .services-grid {
    grid-template-columns: 1fr; /* 1 column mobile */
  }
}

@media (max-width: 576px) {
  .chat-widget {
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
  }
}

/* ==== Hero Section ==== */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
}
.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* ==== Gallery Grid (Uniform Squares) ==== */
/* ==== Gallery Grid (6x6) ==== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns on desktop */
  gap: 15px;
  padding: 20px;
}

@media (max-width: 1199px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
  }
}

@media (max-width: 767px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 100%; /* perfect square */
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
} 

/* ==== Modal ==== */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
}
.gallery-modal img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}
.close-btn, .prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}
.close-btn {
  top: 20px;
  right: 30px;
  font-size: 50px;
}
.prev-btn { left: 5%; }
.next-btn { right: 5%; }

/* ==== Load More Button ==== */
.load-more {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: #d63384;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.load-more:hover {
  background: #b82a6f;
}

/* ==== Filter Dropdown ==== */
.filter-box {
  text-align: center;
  margin: 20px;
}
.filter-box select {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
