* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* ================= HERO SECTION ================= */
.gallery-hero {
  height: 60vh;
  background: url("../images/Gallery\ Cover\ BG.png") center/cover no-repeat;
  position: relative;
}

.gallery-hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero-content {
  text-align: center;
  color: #fff;
}

.gallery-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.gallery-hero-content p {
  font-size: 18px;
  letter-spacing: 1px;
}

/* ================= INTRO TEXT ================= */
.gallery-intro {
  padding: 45px 12%;
  text-align: center;
  background: #fff;
}

.gallery-intro p {
  font-size: 16.5px;
  color: #555;
  line-height: 1.8;
}

/* ================= OUR WORK SECTION ================= */
.our-work {
  padding: 70px 8%;
  background: #fff6f8;
}

.our-work-heading {
  text-align: center;
  margin-bottom: 45px;
}

.our-work-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.our-work-heading p {
  font-size: 16px;
  color: #666;
  letter-spacing: 0.5px;
}

/* ================= GALLERY GRID ================= */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.work-gallery img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-gallery img:hover {
  transform: scale(1.06);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .gallery-hero {
    height: 45vh;
  }

  .gallery-hero-content h1 {
    font-size: 38px;
  }

  .gallery-hero-content p {
    font-size: 15px;
  }

  .gallery-intro {
    padding: 35px 8%;
  }

}
/* ================= LIGHTBOX ================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 1000;
}
/* ================= CTA BASE ================= */
.gallery-cta {
  position: relative;
  padding: 100px 10%;
  text-align: center;
  color: #fff;
  background: url("../images/Love\ our\ work\ BG.png") center/cover no-repeat;
  overflow: hidden;
}

/* Dark overlay */
.gallery-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* FABRIC WAVE LAYER */
.gallery-cta::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(232,180,188,0.35),
    transparent 60%
  );
  animation: fabricWave 12s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes fabricWave {
  0% {
    transform: translate(-4%, -3%) scale(1);
  }
  50% {
    transform: translate(3%, 4%) scale(1.05);
  }
  100% {
    transform: translate(-2%, 2%) scale(1.02);
  }
}

/* ================= TEXT CONTENT ================= */
.cta-inner {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

.gallery-cta.active .cta-inner {
  opacity: 1;
  transform: translateY(0);
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 15px;
}

.cta-inner p {
  font-size: 17px;
  margin-bottom: 35px;
}

/* ================= CTA BUTTON ================= */
.cta-btn {
  position: relative;
  display: inline-block;
  padding: 16px 46px;
  background: #e8b4bc;
  color: #000;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 500;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: translateX(-100%);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(232,180,188,0.55);
}

.cta-btn:hover::after {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  to {
    transform: translateX(100%);
  }
}
/* ================= INSTAGRAM WORK ================= */
.instagram-work {
  padding: 70px 8%;
  text-align: center;
  background: #fff;
}

.instagram-work h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.instagram-work p {
  font-size: 16px;
  color: #666;
  margin-bottom: 35px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 35px;
}

.insta-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-grid img:hover {
  transform: scale(1.06);
}

.insta-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #e8b4bc;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
}
/* ================= PROCESS SECTION ================= */
.boutique-process {
  padding: 80px 8%;
  background: #fff6f8;
  text-align: center;
}

.boutique-process h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.boutique-process p {
  font-size: 16px;
  color: #666;
  margin-bottom: 45px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.process-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-box span {
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  color: #e8b4bc;
  margin-bottom: 15px;
}

.process-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.process-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
/* ================= GLASS GALLERY ================= */
.glass-gallery {
  background: url(../images/Our\ work\ section\ background.png);
  padding: 90px 8%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;  
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* GLASS CARD */
.glass-card {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}

/* IMAGE */
.glass-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 22px;
  text-align: center;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

/* BUTTONS */
.card-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn-outline {
  padding: 11px 22px;
  border: 1.5px solid #e8b4bc;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
}

.btn-solid {
  padding: 11px 22px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
}
/* ================= STAGGER CARD ANIMATION ================= */

.stagger-card {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* Active state */
.stagger-card.active {
  opacity: 1;
  transform: translateX(0);
}

/* Delay system (important) */
.stagger-card.delay-1 { transition-delay: 0.1s; }
.stagger-card.delay-2 { transition-delay: 0.25s; }
.stagger-card.delay-3 { transition-delay: 0.4s; }
.stagger-card.delay-4 { transition-delay: 0.55s; }
