	
/* 🌈 FACEPAINT BY TINA — Magical Interactive Edition with Sparkles & Scroll Animations */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap');

/* 🌟 Global Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Avenir", "Avenir", sans-serif;
  background: #fffafc;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-top: 110px;    /* space for header */
  padding-bottom: 90px; /* space for footer */

}

.quote-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffafc;
  padding: 40px 0;
  animation: fadeIn 2s ease-in;
}

.quote-banner img {
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 182, 193, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-banner img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(255, 182, 193, 0.35);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



/* 🖌️ Logo Area */
.logo-container {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* 📸 Camera Button — Top Centre */
.camera-btn {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;               /* was 32px */
  color: #ff69b4;
  background: rgba(255,255,255,0.9);
  padding: 6px 9px;              /* a bit smaller padding */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 99999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.camera-btn:hover {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.logo {
  width: 250px; /* bigger logo */
  animation: glowPulse 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: rotate(-4deg) scale(1.5);
}
.logo-subtext {
  font-size: 0.75rem;
  color: #ff4fa1;
  font-weight: 490;
  margin-top: 3px;
  text-shadow: 0 0 2px rgba(255,255,255,0.5);
}
/* 🌈 Gentle Rainbow Reflection Aura behind Logo */
.logo-container {
  position: relative;
  display: inline-block;
}

.logo-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 250px;   /* slightly larger than logo */
  max-height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255,182,193,0.4),
    rgba(173,216,230,0.4),
    rgba(221,160,221,0.4),
    rgba(255,255,224,0.4),
    rgba(255,182,193,0.4)
  );
  filter: blur(20px);
  opacity: 0.5;
  animation: rainbowHalo 30s linear infinite;
  z-index: 0;
}

/* 🌸 Rainbow aura slow rotation */
@keyframes rainbowHalo {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Ensure logo and subtext stay above the halo */
.logo, .logo-subtext {
  position: relative;
  z-index: 2;
}
/* 💖 Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
}

nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 10%, transparent 70%);
  transform: scale(0);
  opacity: 50%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
nav a:hover::after {
  transform: scale(2.5);
  opacity: 50%;
}
nav a:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
  text-shadow: 0 0 6px #fff;
}
/* 🎨 Clean 3D Paintbrush Nav */
.brush-nav .nav-pill {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 550;
  font-size: 0.8rem;
  text-decoration: none;
  color: white !important;

  background: linear-gradient(90deg, #ff94c2, #ffb3e6);
  box-shadow:
    0 6px 0 rgba(230, 120, 160, 0.7),
    0 14px 22px rgba(255, 182, 193, 0.45);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.brush-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.brush-nav li {
  margin: 0;
}



/* Gloss highlight */
.brush-nav .nav-pill::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 14%;
  right: 14%;
  height: 5px;
  background: rgba(255,255,255,0.65);
  border-radius: 999px;
}

/* Paint drip */
.brush-nav .nav-pill::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 12px;
  height: 22px;
  border-radius: 40px;
  background: rgba(255,255,255,0.75);
  transform: translateX(-50%) translateY(0);
  opacity: 0;
  transition: 0.2s ease;
}

/* Hover (float + drip drop) */
.brush-nav .nav-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 0 rgba(230, 120, 160, 0.7),
    0 16px 26px rgba(255, 182, 193, 0.55);
}

.brush-nav .nav-pill:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

/* Active (pressed down) */
.brush-nav .nav-pill:active {
  transform: translateY(4px) scale(0.97);
  box-shadow:
    0 3px 0 rgba(200, 90, 130, 0.8),
    0 8px 12px rgba(255, 182, 193, 0.45);
}

.brush-nav .nav-pill:active::after {
  transform: translateX(-50%) translateY(-2px);
  opacity: 0.9;
}

/* Active (pressed down) – button sinks, shadow shortens, drip pulls up */


.brush-nav .nav-pill:active::after {
  opacity: 0.9;
  transform: translateX(-50%) translateY(-1px);
}

.brush-nav .nav-pill i {
  font-size: 0.8rem;
}

/* Pastel variants (you can tweak colours if you like) */
.brush-nav .nav-pill.pink {
  background: linear-gradient(90deg, #ff94c2, #ffb3e6);
}

.brush-nav .nav-pill.purple {
  background: linear-gradient(90deg, #c792ff, #e0b3ff);
}

.brush-nav .nav-pill.blue {
  background: linear-gradient(90deg, #80d8ff, #b3e5fc);
}

.brush-nav .nav-pill.yellow {
  background: linear-gradient(90deg, #ffe082, #ffecb3);
  color: #5a3b00;
}

.brush-nav .nav-pill.mint {
  background: linear-gradient(90deg, #a5ffdd, #c8fff4);
  color: #145949;
}

/* Hover magic */
.brush-nav .nav-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 12px rgba(255, 182, 193, 0.7);
}



@media (hover: hover) {
  .gallery-item img {
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
  }

  .gallery-item:hover::before {
    background: rgba(0,0,0,0.35);
  }
}

  .gallery-filters {
    gap: 6px;
  }

  .gallery-filter-btn {
    padding: 6px 12px;
    font-size: 13px;
  }

  .gallery-page h2 {
    font-size: 1.4rem;
  }

  .gallery-page p {
    font-size: 0.9rem;
  }

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 25px 30px;
  text-align: center;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.25);
  margin: 60px auto;
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Ensure gallery page is always visible (even if JS fade-in hiccups) */
.section.gallery-page {
  opacity: 1;
  transform: none;
}
/* 📸 Gallery Page Layout */
.gallery-page {
  text-align: center;
  padding: 40px 20px;
  max-width: 1000px;
}

.gallery-page h2 {
  margin-bottom: 10px;
}

.gallery-page p {
  margin-bottom: 25px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.gallery-view-more {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 26px;
  border-radius: 30px;
  background: linear-gradient(90deg,#ff66b2,#ff99cc);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-view-more:hover {
  transform: translateY(-3px) scale(1.02);
}


/* Hover (desktop only) */
@media (hover: hover) {
  .gallery-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,102,178,0.35);
  }
}


.gallery-item.is-reel {
  position: relative;
}

.gallery-item.is-reel:hover::after {
  opacity: 1;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.gallery-item:hover img {
  transform: scale(1.06);
}


/* Keyboard focus (accessibility) */
.gallery-view-more:focus-visible {
  outline: 3px solid rgba(255,102,178,0.6);
  outline-offset: 3px;
}

/* 🎨 Gallery filter buttons – 3D painty chips */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.gallery-filter-btn {
  position: relative;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 550;
  font-size: 0.8rem;
  background: linear-gradient(90deg, #ffd1f0, #ffe4ff);
  color: #ff4fa1;
  box-shadow:
    0 3px 0 rgba(230, 120, 160, 0.7),
    0 7px 12px rgba(255, 182, 193, 0.55);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.25s ease;
}

/* Little paint drip under each chip */
.gallery-filter-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 8px;
  height: 16px;
  transform: translateX(-50%) translateY(0);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-filter-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 5px 0 rgba(230, 120, 160, 0.7),
    0 10px 18px rgba(255, 182, 193, 0.6);
}

.gallery-filter-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

/* Pressed-down + active state */
.gallery-filter-btn:active,
.gallery-filter-btn.active {
  transform: translateY(3px) scale(0.97);
  box-shadow:
    0 2px 0 rgba(200, 90, 130, 0.85),
    0 4px 8px rgba(255, 182, 193, 0.6);
}

.gallery-filter-btn:active::after,
.gallery-filter-btn.active::after {
  opacity: 0.9;
  transform: translateX(-50%) translateY(-1px);
}
h1, h2, h3 {
  color: #ff4fa1;
  text-shadow: 1px 1px 3px rgba(255,192,203,0.3);
  margin-bottom: 20px;
}
h1 {
  font-size: 1.2rem;
  line-height: 2;
}
h2 {
  font-size: 1rem;
  line-height: 2;
}
h3 {
  font-size: 0.8rem;
  line-height: 2;
}
p, li {
  font-size: 0.8rem;
  line-height: 2;
}

.center-text {
  text-align: center;
}

.indented-text {
  padding-left: 2rem;
}

.bulletpoint-text {
  margin-left: 2rem;      /* replaces &emsp; */
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* 🧚 Welcome Section */
.welcome {
  color: #333;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(255,182,193,0.3);
}
.sparkle-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, 
    rgba(255,182,193,0.4), 
    rgba(173,216,230,0.4), 
    rgba(221,160,221,0.4),
    rgba(255,255,224,0.4),
    rgba(144,238,144,0.4));
  background-size: 600%;
  animation: calmingRainbow 25s ease infinite;
  z-index: 0;
}
.welcome h2, .welcome p {
  position: relative;
  z-index: 1;
  color: #444;
}

/* 💕 Testimonials */
.client-love {
  background: #fff6fa;
  border-top: 3px dashed #ffcce5;
  padding: 60px 20px;
  position: relative;
}

.client-love::after {
  content: "💕";
  font-size: 0.7rem;
  position: absolute;
  animation: floatHearts 8s linear infinite;
  left: 15%;
  top: -20px;
  opacity: 0.3;
}

/* 💌 Enquiry Form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
}
.enquiry-form label {
  text-align: left;
  font-weight: 500;
  color: #ff4fa1;
  font-size: 0.8rem;
}
.enquiry-form input,
.enquiry-form textarea {
  padding: 10px;
  border: 2px solid #ffd6e9;
  border-radius: 10px;
  font-family: "avenir", sans-serif;
  font-size: 0.7rem;
  transition: 0.3s ease;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: #ff6fd8;
  box-shadow: 0 0 8px rgba(255,111,216,0.3);
  outline: none;
}
fieldset.addons {
  border: 2px dashed #ffcce5;
  padding: 15px;
  border-radius: 10px;
  background: #fff6fa;
}
fieldset.addons legend {
  color: #ff4fa1;
  font-weight: 550;
  margin-bottom: 10px;
}
.enquiry-form button {
  background: linear-gradient(90deg, #ff66b2, #ff99cc);
  border: none;
  color: #fff;
  border-radius: 30px;
  padding: 14px;
  font-size: 0.7rem;
  font-weight: 550;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.enquiry-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 10%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.enquiry-form button:hover::after {
  transform: scale(3);
  opacity: 1;
}
.enquiry-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255,105,180,0.4);
}

/* 🌈 Loader Animation */
.loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fffafc;
  z-index: 9999;
  transition: opacity 0.6s ease;
}
.loader-sparkles {
  display: flex;
  gap: 10px;
}
.loader-sparkles .sparkle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff99cc, #99ccff, #ccffcc, #ffcc66, #ff99cc);
  background-size: 400%;
  animation: rainbowFlow 2s linear infinite;
}
.loader-text {
  margin-top: 15px;
  font-size: 1.5rem;
  color: #ff4fa1;
  animation: fadePulse 2s ease-in-out infinite;
}

/* 🪄 Sparkle Cursor */
.cursor-sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-radius: 70%;
  background: radial-gradient(circle, #fff, transparent 90%);
  animation: sparkleFade 1s linear forwards;
  box-shadow: 0 0 8px #ff66b2, 0 0 12px #ffcc66, 0 0 10px #99ff99, 0 0 10px #66ccff, 0 0 10px #cc99ff;
}

/* ✨ Full-screen glitter flash when camera is clicked */
.glitter-flash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100000;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.98), transparent 60%),
    radial-gradient(circle at 80% 25%, rgba(255,220,255,0.95), transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(210,240,255,0.95), transparent 60%),
    rgba(255,255,255,0.9);
  mix-blend-mode: screen;
  animation: glitterFlash 0.5s ease-out forwards;
}

/* ✨ Glitter flash fade-in/out */
@keyframes glitterFlash {
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  100% { opacity: 0; }
}

/* 🌸 Animations */
@keyframes rainbowFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes calmingRainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(255,255,255,0.7)); }
  50% { filter: drop-shadow(0 0 12px rgba(255,255,255,0.9)); }
}
@keyframes fadePulse {
  0%,100% { opacity: 0.8; }
  50% { opacity: 1; }
}
@keyframes floatHearts {
  0% { transform: translateY(0); opacity: 0.3; }
  100% { transform: translateY(-200px); opacity: 0; }
}
@keyframes sparkleFade {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2); }
}


.testimonial {
  position: relative;
  background: linear-gradient(135deg, #fff0f8, #fce6ff, #e6f7ff, #fffbea);
  border: 2px solid #ffd6eb;
  border-radius: 30px;
  padding: 25px 30px;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.25);
  color: #444;
  font-style: italic;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

/* 🌟 Rainbow shimmer glow on hover */
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 12px rgba(255, 183, 197, 0.5),
              0 0 18px rgba(173, 216, 230, 0.4),
              0 0 22px rgba(221, 160, 221, 0.4),
              0 0 28px rgba(255, 255, 224, 0.4);
}

/* 🎀 Speech bubble tail */
.testimonial::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50px;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top-color: #ffd6eb;
}

/* 🌈 Fade-up animation */
.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🌈✨ Magical Section Boxes with Soft Diagonal Light Sweep — Facepaint by Tina */
.magic-box {
  position: relative;
  border-radius: 30px;
  padding: 40px 30px;
  margin: 60px auto;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(255, 192, 203, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease, box-shadow 0.5s ease;
}

.magic-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  opacity: 0;
  transform: skewX(-20deg);
}

.magic-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.magic-box.visible::before {
  animation: shimmerOnce 2.5s ease forwards;
}

@keyframes shimmerOnce {
  0% { left: -100%; opacity: 0; }
  30% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

/* 💖 Section Color Themes */
.about-box { background: linear-gradient(135deg, #ffe6f7, #ffd6eb, #fff0f8); }
.services-box { background: linear-gradient(135deg, #e6f7ff, #d6ecff, #f0faff); }
.faq-box { background: linear-gradient(135deg, #f3e6ff, #e6e0ff, #f8eaff); }
.enquiry-box { background: linear-gradient(135deg, #fff9e6, #fff4cc, #fffbea); }

/* 🌸 Soft Subtle Hover Glow */
.magic-box:hover {
  box-shadow: 0 0 10px rgba(255, 183, 197, 0.4),
              0 0 14px rgba(173, 216, 230, 0.3),
              0 0 16px rgba(221, 160, 221, 0.3),
              0 0 18px rgba(255, 255, 224, 0.3);
}

.follow-soft {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #666;
}

.instagram-soft {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 22px;
  border-radius: 25px;
  background: linear-gradient(90deg,#ff9ecf,#ffd6e8);
  color: #7a1c4f;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 105, 180, 0.25);
}

.service-list {
  padding-left: 2.5rem;   /* replaces &emsp; */
  list-style: none;       /* remove default bullets */
}

.service-list li {
  margin-bottom: 0.7rem;
  position: relative;
}



/* 💫 Animated Social Buttons */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 550;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
  background-size: 300% 300%;
  background-position: left center;
  box-shadow: 0 4px 12px rgba(255, 192, 203, 0.3);
  position: relative;
  overflow: hidden;
}

.social-btn i {
  font-size: 0.8rem;
}

/* ✨ Subtle hover animation */
.social-btn.google:hover .google-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.9));
}

/* 🌸 Brand-specific gradients */

.social-btn.instagram {
  background-image: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social-btn.facebook {
  background-image: linear-gradient(45deg, #1877f2, #4a90e2, #1877f2);
}

.social-btn.whatsapp {
  background-image: linear-gradient(45deg, #25d366, #128c7e, #25d366);
}

/* 🌈 Google Button — same style as instagram */
.social-btn.google {
  background-image: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
  background-size: 300% 300%;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(255, 192, 203, 0.3);
  position: relative;
  overflow: hidden;
}

/* 🖼️ Google Icon Image */
.google-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* ✨ Hover Effects — Glow + Scale */
.social-btn.google:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255,182,193,0.4), 
              0 0 18px rgba(173,216,230,0.4),
              0 0 22px rgba(255,255,224,0.4);
}

.social-btn.google:hover .google-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.9));
}
/* ✨ Shimmer glow animation on hover */
.social-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), transparent);
  transform: skewX(-25deg);
  opacity: 0;
  transition: all 0.6s ease;
}

.social-btn:hover::after {
  left: 130%;
  opacity: 1;
}

.social-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255,182,193,0.4), 
              0 0 18px rgba(173,216,230,0.4),
              0 0 22px rgba(255,255,224,0.4);


}
/* 🌈 Bring the Magic Button */
.magic-btn {
  background: linear-gradient(90deg, #ff66b2, #ff99cc, #b3e6ff);
  border: none;
  color: #fff;
  border-radius: 40px;
  padding: 16px 30px;
  font-size: 0.8rem;
  font-weight: 550;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255,105,180,0.3);
}

/* Sparkle flash when hovering */
.magic-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.8), transparent);
  transform: skewX(-25deg);
  opacity: 0;
  transition: all 0.6s ease;
}

.magic-btn:hover::after {
  left: 130%;
  opacity: 1;
}

.magic-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,182,193,0.6), 0 0 20px rgba(173,216,230,0.5);
}


/* 💖 Animated Ko-fi Heart Icon */
.kofi-heart {
  font-size: 2rem;
  margin-left: 10px;
  text-decoration: none;
  display: inline-block;
  animation: heartbeat 1.4s infinite;
  filter: drop-shadow(0 0 6px rgba(255,105,180,0.5));
  transition: transform 0.3s ease;
}

.kofi-heart:hover {
  transform: scale(1.3) rotate(-10deg);
  filter: drop-shadow(0 0 10px rgba(255,105,180,0.8));
}

@keyframes heartbeat {
  0%, 20%, 40%, 60%, 80%, 100% { transform: scale(1); }
  30% { transform: scale(1.3); }
  50% { transform: scale(0.95); }
}


/* 🌸 Social buttons — ALWAYS top right */
.header-social {
  position: absolute;
  top: 12px;
  right: 15px;

  display: flex;
  gap: 8px;

  z-index: 1000;
}

/* Smaller circular icons */
.header-social .social-btn {
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.header-social .social-btn i {
  font-size: 0.8rem;
}

/* 💫 Navigation — subtle shimmer, professional tone */
nav {
  grid-column: 2;
  grid-row: 2;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
}
/* 💫 Navigation — smaller, balanced text */
nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 550;
  font-size: 0.8rem; /* smaller for better balance */
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}


/* 🌸 Subtle hover glow */
nav a:hover {
  background: rgba(255,255,255,0.25);
  text-shadow: 0 0 5px rgba(255,255,255,0.7);
  transform: scale(1.05);
}
/* ✨ Soft shimmering glow on nav text (slow and subtle) */
nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: shimmerSlow 10s linear infinite;
}
@keyframes shimmerSlow {
  0% { left: -75%; opacity: 0.4; }
  50% { left: 125%; opacity: 0.5; }
  100% { left: 125%; opacity: 0.4; }
}

/* 💖 Footer */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  z-index: 9999;

  background: #ffe6f7;
  box-shadow: 0 -3px 10px rgba(255,192,203,0.3);
  padding: 10px;
  }

  .footer-text {
    font-size: 0.7rem;
  }
}

.footer-text {
  font-size: 0.65rem; 
  color: #ff4fa1;
  font-weight: 500;
  margin-top: 3px;
  text-shadow: 0 0 2px rgba(255,255,255,0.5);
}

#recent-work .social-buttons .social-btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* 📱 Responsive */

@media (max-width: 768px) {

  body {
    padding-top: 95px;
    padding-bottom: 80px;
  }

  header {
    box-shadow: 0 2px 8px rgba(255,105,180,0.25);
  }

  footer {
    box-shadow: 0 -2px 8px rgba(255,192,203,0.25);
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .brush-nav .nav-pill {
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
  }

  .brush-nav .nav-pill i {
    font-size: 0.8rem;
  }

  .logo {
    width: 110px;
  }

  .section {
    padding: 50px 15px;
  }

  .testimonial {
    margin-bottom: 24px;
  }
}


/* 📱 Mobile micro-optimisation */
@media (max-width: 480px) {
  .thankyou-box {
    padding: 34px 24px;
    border-radius: 22px;
  }

  h1 {
    font-size: 1.9rem;
  }

  p {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .home-button {
    padding: 12px 26px;
    font-size: 1rem;
  }

  .instagram-soft {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .follow-soft p {
    font-size: 0.9rem;
  }
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .bulletpoint-text,
  .service-list {
    margin-left: 1rem;
    padding-left: 1.2rem;
  }
}


  /* HEADER LAYOUT */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 10000;

  background: linear-gradient(90deg, #ffb3e6, #b3e6ff, #ffd9b3);
  background-size: 300% 300%;
  animation: rainbowFlow 20s ease infinite;

  box-shadow: 0 3px 10px rgba(255, 105, 180, 0.3);
}

  /* LOGO */
.logo-link {
  position: absolute;
  top: 12px;
  left: 15px;

  text-decoration: none;
  z-index: 1000;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Prevent weird tap zoom on mobile */
.logo-link:active {
  transform: none;
}

  .logo {
    width: 140px; /* scale down safely */
  }

  /* prevent aggressive hover zoom on touch */
  .logo:hover {
    transform: none;
  }

  /* LOGO SUBTEXT */
  .logo-subtext {
    font-size: 0.7rem;
  }

  /* NAVIGATION */
  nav {
    grid-column: 1;
    grid-row: 3;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }



/* ===== GALLERY ===== */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
}

/* Play icon */
.gallery-item.is-reel::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 42px;
  color: white;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
  opacity: 0.9;
  pointer-events: none;
}

/* Soft dark overlay */
.gallery-item.is-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

/* ===== TESTIMONIALS ===== */
  .testimonial {
    padding: 10px;
    font-size: 0.8rem;
  }

  /* ENQUIRY FORM */
  .enquiry-form input,
  .enquiry-form textarea {
    font-size: 0.7rem;
  }

  .enquiry-form button {
    font-size: 0.7rem;
    padding: 10px;
  }
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  section {
    padding: 2rem 1rem;
  }

  h1, h2 {
    line-height: 1.3;
  }
}
@media (max-width: 768px) {
  header {
    padding: 1rem;
    position: relative;
  }

  .logo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    max-width: 120px;
    height: auto;
  }

  .logo-subtext {
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }
}
@media (max-width: 768px) {
  .header-social {
    position: static;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .social-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .camera-btn,
  .kofi-heart {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
  }

  .kofi-heart {
    right: 4.5rem;
  }
}
@media (max-width: 768px) {
  .brush-nav ul {
    flex-direction: column;
    gap: 0.6rem;
  }

  .nav-pill {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .nav-pill span {
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .magic-box {
    padding: 1.5rem 1.2rem;
  }

  p {
    max-width: 100%;
  }

  ul {
    padding-left: 1rem;
  }
}
@media (max-width: 768px) {
  .client-love {
    overflow-x: auto;
    display: flex;
    gap: 1rem;
    scroll-snap-type: x mandatory;
  }

  .testimonial {
    min-width: 85%;
    scroll-snap-align: start;
  }
}
@media (max-width: 768px) {
  .enquiry-form input,
  .enquiry-form textarea,
  .enquiry-form button {
    font-size: 1rem;
    padding: 0.75rem;
  }

  fieldset.addons label {
    display: block;
    margin-bottom: 0.6rem;
  }
}
@media (hover: none) {
  .cursor-sparkle {
    display: none;
  }
}

/* 🍔 Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ff69b4;
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile nav behaviour */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
  }

  .brush-nav {
    display: none;
    margin-top: 1rem;
  }

  .brush-nav.open {
    display: block;
    animation: fadeSlideDown 0.4s ease;
  }
}

/* Cute open animation */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .client-love {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .testimonial {
    min-width: 85%;
    scroll-snap-align: start;
  }
}
.mobile-book-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-book-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #ff69b4, #ffb6c1);
    color: white;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 3000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    animation: sparklePulse 2s infinite;
  }
}

@keyframes sparklePulse {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
  100% { filter: brightness(1); }
}
@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }
}






