
/* 🌈 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: "Quicksand", "Avenir", sans-serif;
  background: #fffafc;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

.quote-banner img {
  max-width: 90%;
  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); }
}



/* ✨ Animated Gradient Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: linear-gradient(90deg, #ffb3e6, #b3e6ff, #ffd9b3);
  background-size: 300% 300%;
  animation: rainbowFlow 10s ease infinite;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 10px rgba(255, 105, 180, 0.3);
}



/* 🖌️ 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: 18px;               /* 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: 225px; /* 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.8rem;
  color: #c2185b;
  font-weight: 600;
  margin-top: 3px;
  text-shadow: 0 0 3px 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%;
  width: 200px;   /* slightly larger than logo */
  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 {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
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 8px #fff;
}
/* 🎨 Clean 3D Paintbrush Nav */
.brush-nav .nav-pill {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  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: 12px;
  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: 1rem;
}

/* 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);
}

/* ✨ Small-screen layout – more like rounded tiles */
@media (max-width: 768px) {
  .brush-nav ul {
    justify-content: center;
  }

  .brush-nav .nav-pill {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .brush-nav .nav-pill span {
    text-align: center;
  }
}
/* 🌈 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 {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.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 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: 600;
  font-size: 0.85rem;
  background: linear-gradient(90deg, #ffd1f0, #ffe4ff);
  color: #c2185b;
  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;
}
p, li {
  font-size: 1.0rem;
  line-height: 2;
}
.bulletpoint-text {
  text-align: left;
  padding-left: 10px;
  margin-left: 4;
}
/* 🧚 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;
}
.testimonial {
  background: #ffffff;
  border-left: 5px solid #ffb3d9;
  border-radius: 10px;
  padding: 15px;
  margin: 10px auto;
  max-width: 800px;
  font-style: italic;
  box-shadow: 0 2px 8px rgba(255,192,203,0.2);
}
.client-love::after {
  content: "💕";
  font-size: 3rem;
  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: #c2185b;
}
.enquiry-form input,
.enquiry-form textarea {
  padding: 10px;
  border: 2px solid #ffd6e9;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  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: 700;
  margin-bottom: 10px;
}
.enquiry-form button {
  background: linear-gradient(90deg, #ff66b2, #ff99cc);
  border: none;
  color: #fff;
  border-radius: 30px;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  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.3rem;
  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); }
}


/* 💬✨ Magical Testimonial Bubbles — Facepaint by Tina Rainbow Edition */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.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);
}



/* 💖 Footer — Static (Not Floating) */
footer {
  position: static; /* ensures it doesn't float */
  background: #ffe6f7;
  text-align: center;
  padding: 10px;
  box-shadow: 0 -3px 10px rgba(255,192,203,0.3);
  margin-top: 0px;
}






/* 💫 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: 600;
  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.9rem;
}

/* ✨ 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: 1.2rem;
  font-weight: 700;
  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);
}

/* 🌟 Header Layout — logo left, socials top-right, nav below */
header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 15px 25px;
  background: linear-gradient(90deg, #ffb3e6, #b3e6ff, #ffd9b3);
  background-size: 300% 300%;
  animation: rainbowFlow 20s ease infinite;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 10px rgba(255, 105, 180, 0.3);
}

/* 💖 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); }
}


/* 🌸 Header Social Buttons — smaller and above nav */
.header-social {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 5px;
}
.header-social .social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 6px;
  justify-content: center;
  background-size: 200% 200%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.header-social .social-btn i {
  font-size: 0.9rem;
}
.header-social .social-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 8px rgba(255, 182, 193, 0.5);
}

/* 💫 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: 600;
  font-size: 0.95rem; /* smaller for better balance */
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

/* ✨ Keep the same soft shimmer */
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; }
}

/* 🌸 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 — Fine Details Style */
footer {
  background: #ffe6f7;
  text-align: center;
  padding: 20px;
  box-shadow: 0 -3px 10px rgba(255,192,203,0.3);
  margin-top: 60px;
}

.footer-text {
  font-size: 0.35rem; /* half the original size */
  color: #c2185b;
  font-weight: 600;
  margin-top: 3px;
  text-shadow: 0 0 3px rgba(255,255,255,0.5);
}

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

/* 📱 Responsive */
@media (max-width: 768px) {
  nav ul { flex-direction: column; gap: 10px; }
  .logo { width: 110px; }
  .section { padding: 50px 15px; }
  h2 { font-size: 1.6rem; }
  footer {
    position: static;
    box-shadow: none;
  }

}

@media (max-width: 768px) {
  .brush-nav .nav-pill {
    flex-direction: column;
    align-items: center;
    border-radius: 18px;
  }

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