:root {
  --primary: #ff5fa2;
  --dark: #111;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 70px;
}

/* ================= NAVBAR BASE ================= */
.navbar {
  height: 70px; /* fixed height */
  padding: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

/* Brand alignment */
.navbar-brand {
  height: 100%;
  display: flex;
  align-items: center;
}

/* ================= LOGO ================= */
.navbar-logo {
  height: 80px; /* visually bigger */
  width: auto;
  object-fit: contain;
  position: relative;
  top: 6px; /* allows logo to be big without increasing navbar height */
}

/* ================= NAVBAR BASE ================= */
.navbar {
  height: 70px;
  padding: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

/* Brand alignment */
.navbar-brand {
  height: 100%;
  display: flex;
  align-items: center;
}

/* ================= LOGO ================= */
.navbar-logo {
  height: 80px; /* visually bigger */
  width: auto;
  object-fit: contain;
  position: relative;
  top: 6px;
}

/* ================= NAV LINKS ================= */
.navbar .nav-link {
  position: relative;
  color: #ffffffcc;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #f2dea2;
}

/* Gold underline */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e6c76a, #c9a24d, #f2dea2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 70%;
}

.navbar .nav-link.active {
  color: #f2dea2;
}

/* ================= KILL BOOTSTRAP TOGGLER ================= */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  box-shadow: none !important;
  outline: none !important;
}

/* REMOVE DEFAULT ICON */
.navbar-toggler-icon {
  display: none !important;
  background-image: none !important;
}

/* ================= CUSTOM HAMBURGER ================= */
.custom-toggler {
  width: 30px;
  height: 22px;
  display: flex;
  margin-right: 8px;
  flex-direction: column;
  justify-content: space-between;
}

/* Hamburger lines */
.custom-toggler .toggler-line {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.35s ease;
  transform-origin: center;
}

/* ================= HAMBURGER → X ================= */
.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ================= MOBILE MENU EXPANSION ================= */
@media (max-width: 991px) {
  .navbar {
    height: 64px;
  }

  .navbar-logo {
    height: 60px;
    top: 4px;
  }

  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    padding: 16px 0;
  }

  .navbar-nav {
    padding-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 14px 20px;
  }
  .navbar .nav-link::after {
    display: none;
  }
}

/* ================= HERO CAROUSEL ================= */

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Each slide */
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

/* Dark overlay for readability */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Text overlay */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  color: #f2dea2;
}

/* Smooth fade fix */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}
/* Pink CTA Button */
.btn-pink {
  background-color: #ff5fa2; /* brand pink */
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-pink:hover {
  background-color: #ff3c8f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 95, 162, 0.45);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-section,
  .hero-slide {
    height: 90vh;
  }
}

/* Sections */
.section-title {
  font-weight: 700;
  margin-bottom: 10px;
}
/* WHY CHOOSE US – MODERN SPLIT */
.why-us-modern {
  background: #fafafa;
}

.why-badge {
  display: inline-block;
  background: rgba(201, 162, 77, 0.15);
  color: #c9a24d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.why-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.why-title span {
  color: #c9a24d; /* gold accent */
}

.why-text {
  font-size: 1rem;
  color: #555;
  max-width: 520px;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #333;
}

.why-list i {
  color: #c9a24d;
  font-size: 1.1rem;
}

/* Image */
.why-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-height: 420px; /* controls height */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* prevents tall stretch */
  transition: transform 0.5s ease;
}

.why-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }
  .why-image-wrapper {
    max-height: 300px;
  }

  .why-text {
    max-width: 100%;
  }
}

/* Services */
.service-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
}
/* ================= GALLERY UNIFORM IMAGES ================= */
.gallery-img {
  height: 260px; /* desktop uniform height */
  overflow: hidden;
  border-radius: 12px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops instead of stretching */
  transition: transform 0.4s ease;
}

/* Hover zoom (optional but nice) */
.gallery-img:hover img {
  transform: scale(1.06);
}

/* Mobile: let images auto-size */
@media (max-width: 768px) {
  .gallery-img {
    height: auto;
  }

  .gallery-img img {
    height: auto;
  }
}

/* REVIEWS SECTION */
.reviews-section {
  background: #f8f9fa;
}

.review-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.review-stars {
  color: #c9a24d; /* gold */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.review-name {
  font-weight: 600;
  color: #333;
}

/* Contact */
.contact-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  color: #fff;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Show only on mobile */
@media (min-width: 768px) {
  .whatsapp-float {
    display: none;
  }
}

/* Footer */
.footer {
  background: var(--dark);
  color: #aaa;
  padding: 20px 0;
}
/* ================= GALLERY PAGE ================= */

/* Hero */
.gallery-hero {
  padding: 140px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/nail7.jpg") center/cover no-repeat;
  color: #fff;
}

.gallery-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.gallery-hero p {
  color: #f2dea2;
}

/* Gallery grid */
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

/* CTA */
.gallery-cta {
  background: #111;
  color: #fff;
  padding: 60px 20px;
}

.gallery-cta h3 {
  font-weight: 600;
}
/* Load More Button – Pink Brand */
#loadMoreBtn {
  border-color: #ff5fa2;
  color: #ff5fa2;
  font-weight: 500;
  transition: all 0.3s ease;
}

#loadMoreBtn:hover {
  background: #ff5fa2;
  color: #fff;
}
