* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fredoka', 'Baloo 2', sans-serif;
}

body {
  background: linear-gradient(135deg, #f0e8cc 0%, #f5cedf 100%);
  color: #111;
}

/* ── Language Selector ───────────────────────────────────────── */
#language-selector {
  position: fixed;
  bottom: 16px; left: 16px;
  z-index: 999;
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-btn {
  padding: 6px 14px;
  border: none;
  border-radius: 20px;
  background: transparent;
  color: #666;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: rgba(255, 107, 157, 0.08);
  color: #ff6b9d;
  transform: scale(1.04);
}

.lang-btn.active {
  background: linear-gradient(135deg, #ff6b9d, #ffb84d);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

@media (max-width: 768px) {
  #language-selector {
    bottom: 12px; left: 12px;
    gap: 4px;
    padding: 5px;
  }
  .lang-btn {
    padding: 5px 12px;
    font-size: 12px;
  }
}

.hero {
  background-image: url(assets/Website/header_background.png);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px 20px 20px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
  position: relative;
}

.logo-spot {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 132px;
  height: 132px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-spot img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

.hero h1 {
  font-family: 'Bubblegum Sans', 'Baloo 2', cursive;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero p {
  font-family: 'Baloo 2', sans-serif;
  font-size: 30px;
  height: 25px;
  letter-spacing: 3px;
  line-height: 1;
  margin: 0;
  font-weight: 600;
}

.slogan {
  width: 500px; /* Adjust this value */
  height: auto; /* Adjust this value */
  display: block;
  margin: 20px auto;
  padding-top: 20px;
}

section {
  padding: 60px 10%;
  border-radius: 20px;
  margin: 20px auto;
}

.about {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 220px;
  margin-bottom: 15px;
  border-radius: 25px;
  box-shadow: 0 6px 0 rgba(255, 150, 100, 0.3), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services,
.partner,
.clients,
.gallery,
.workshops {
  text-align: center;
}

.services ul {
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  border: none;
  padding: 15px;
  text-align: center;
  border-radius: 30px;
  background: #fef5f9;
  box-shadow: 0 8px 0 rgba(255, 150, 0, 0.3), 0 12px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 0 rgba(255, 100, 255, 0.3), 0 20px 30px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
}

.highlight {
  background: linear-gradient(135deg, #ffe600 0%, #ffb84d 100%);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  box-shadow: 0 8px 0 rgba(255, 100, 0, 0.5), 0 12px 20px rgba(0, 0, 0, 0.15);
  min-height: 250px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 0 rgba(255, 100, 0, 0.6), 0 20px 30px rgba(0, 0, 0, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 0 rgba(150, 100, 255, 0.2), 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-grid img {
  max-width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.client-grid img:hover {
  transform: scale(1.1) rotate(-2deg);
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.partner-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff2c6 0%, #ffd6e7 100%);
  color: #6d2c53;
  font-weight: 700;
  box-shadow: 0 6px 0 rgba(255, 151, 180, 0.25), 0 10px 20px rgba(0, 0, 0, 0.08);
}

.partner-brand {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  text-align: center;
}

.partner-brand-copy {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6d2c53;
  max-width: 680px;
  text-align: center;
}

.partner-brand-logo {
  width: 110px;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.quotation form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
textarea {
  padding: 10px;
  border: none;
  border-radius: 15px;
  background: #f0f8ff;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

button {
  padding: 12px 30px;
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  font-family: 'Fredoka', sans-serif;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 6px 0 rgba(0, 102, 255, 0.3), 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 rgba(0, 102, 255, 0.4), 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Cartoony styling */
h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff6b9d;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 800;
}

h3 {
  font-family: 'Baloo 2', sans-serif;
  color: #0066ff;
  font-size: 1.3em;
  margin: 15px 0;
  font-weight: 700;
}

.services, .about, .workshops, .gallery, .partner, .clients {
  background: #fdf0f5;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slogan {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  border-radius: 20px;
}

.footer {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: white;
  text-align: left;
  padding: 20px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -10px 30px rgba(196, 69, 105, 0.2);
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: start;
}

.footer-map {
  width: 100%;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: center;
}

.footer-right p,
.footer-right h3 {
  margin: 0;
}

.footer-right h3 {
  color: #ffe08a;
}

.copy-phone {
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.3s ease;
  border-radius: 5px;
  padding: 2px 6px;
}

.copy-phone:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.copy-phone.copied {
  background-color: rgba(100, 255, 200, 0.3);
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 4px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #cc2366;
}

.social-btn.whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
}

.social-btn.linkedin:hover {
  background-color: #0A66C2;
  border-color: #0A66C2;
}

.social-btn.facebook:hover {
  background-color: #1877F2;
  border-color: #1877F2;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px 15px 15px;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 18px;
    height: auto;
    letter-spacing: 1px;
  }

  .slogan {
    width: 100%;
    max-width: 300px;
    margin: 15px auto;
    padding-top: 10px;
  }

  .logo-spot {
    width: 100px;
    height: 100px;
    bottom: 15px;
    left: 15px;
  }

  section {
    padding: 40px 5%;
    margin: 15px auto;
  }

  .about {
    flex-direction: column;
    gap: 20px;
  }

  .about-img img {
    width: 100%;
    max-width: 200px;
  }

  .workshop-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }

  .card {
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 4px 0 rgba(255, 150, 0, 0.2), 0 8px 15px rgba(0, 0, 0, 0.1);
  }

  .card:hover {
    transform: translateY(-4px);
  }

  .card img {
    height: 150px;
  }

  .highlight {
    min-height: 200px;
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-grid img {
    height: 180px;
  }

  .client-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }

  .partner-tags {
    gap: 10px;
  }

  .partner-tags span {
    min-width: 0;
    width: calc(50% - 10px);
    padding: 10px 14px;
  }

  .partner-brand {
    align-items: flex-start;
    gap: 10px;
  }

  .partner-brand-copy {
    font-size: 0.8rem;
    max-width: 100%;
  }

  .partner-brand-logo {
    width: 84px;
  }

  h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 1.1em;
    margin: 12px 0;
  }

  .footer {
    padding: 15px;
    border-radius: 20px 20px 0 0;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .footer-map iframe {
    height: 240px;
  }

  .footer-right {
    align-items: center;
  }

  .footer p, .footer h3 {
    font-size: 0.9em;
  }

  .social-btn {
    width: 45px;
    height: 45px;
  }

  .social-links {
    gap: 15px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 10px 10px 10px;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: 0px;
  }

  .hero p {
    font-size: 14px;
    letter-spacing: 0px;
  }

  .logo-spot {
    width: 80px;
    height: 80px;
    bottom: 10px;
    left: 10px;
  }

  section {
    padding: 30px 4%;
    margin: 10px auto;
  }

  .workshop-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
  }

  .card {
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 3px 0 rgba(255, 150, 0, 0.15), 0 6px 10px rgba(0, 0, 0, 0.1);
  }

  .card img {
    height: 120px;
    border-radius: 15px;
  }

  .card h3 {
    font-size: 0.9em;
  }

  .card p {
    font-size: 0.8em;
  }

  .highlight {
    min-height: 150px;
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-grid img {
    height: 200px;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .client-grid img {
    max-width: 90%;
  }

  h2 {
    font-size: 1.5em;
    margin-bottom: 12px;
  }

  h3 {
    font-size: 1em;
    margin: 10px 0;
  }

  .slogan {
    width: 100%;
    max-width: 250px;
  }

  .footer {
    padding: 12px;
    gap: 12px;
  }

  .footer-map iframe {
    height: 210px;
  }

  .footer p, .footer h3 {
    font-size: 0.8em;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }

  .social-links {
    gap: 12px;
    margin-top: 15px;
  }

  .social-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE & ANIMATION ENHANCEMENTS
═══════════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #ff6b9d, #ffb84d, #ff6b9d);
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}
@keyframes progressShimmer {
  0%   { background-position: 0%   0%; }
  100% { background-position: 200% 0%; }
}

/* ── Sticky navbar ── */
#sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 5%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
#sticky-nav.visible {
  transform: translateY(0);
}
.nav-logo {
  height: 52px;
  width: auto;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: #ff6b9d;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: #ff6b9d;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: #c44569;
  transform: translateY(-2px);
}
.nav-links a:hover::after { width: 100%; }

/* ── Scroll-to-top button ── */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  padding: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b9d, #ffb84d);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(255, 107, 157, 0.45);
  opacity: 0;
  transform: translateY(22px) scale(0.75);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 950;
  font-family: 'Fredoka', sans-serif;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#scroll-top:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 10px 28px rgba(255, 107, 157, 0.55);
}

/* ── Scroll reveal classes ── */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Hero floating emoji decorations ── */
.hero {
  overflow: hidden;
}
.hero-emoji {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.5;
  animation: floatEmoji ease-in-out infinite;
}
@keyframes floatEmoji {
  0%, 100% { transform: translateY(0)    rotate(-6deg) scale(1);    }
  50%       { transform: translateY(-20px) rotate(8deg)  scale(1.12); }
}
.hero > *:not(.hero-emoji) {
  position: relative;
  z-index: 2;
}

/* ── Hero entrance animations ── */
.hero h1 {
  animation: heroEntrance 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.hero strong {
  animation: heroEntrance 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.18s both;
}
.hero .slogan {
  animation: heroEntrance 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.36s both;
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(28px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

/* ── h2 animated underline ── */
h2 {
  position: relative;
}
h2::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b9d, #ffb84d, #ff6b9d);
  border-radius: 3px;
  transition: width 0.75s ease;
  pointer-events: none;
}
h2.line-visible::after { width: 70%; }

/* ── Services list item hover ── */
.services ul li {
  padding: 12px 16px;
  margin: 8px 0;
  border-radius: 12px;
  border-left: 4px solid #ff6b9d;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.services ul li:hover {
  transform: translateX(10px);
  background: rgba(255, 107, 157, 0.06);
  border-color: #ffb84d;
}

/* ── Card glow + position for ripple ── */
.card {
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,107,157,0.09), rgba(255,184,77,0.09));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

/* ── About image tilt ── */
.about-img img:hover {
  transform: rotate(-3deg) scale(1.06) !important;
  box-shadow: 0 14px 0 rgba(255, 107, 157, 0.35), 0 22px 32px rgba(0,0,0,0.16) !important;
}

/* ── Gallery lightbox wrapper ── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 0 rgba(150, 100, 255, 0.2), 0 10px 15px rgba(0,0,0,0.1);
  transition: transform 0.45s ease;
  display: block;
}
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: rgba(255, 107, 157, 0.38);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}
.gallery-item:hover img  { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }
/* override old rule */
.gallery-grid img:hover { transform: none; }

/* ── Lightbox overlay ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lb-img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65);
  transform: scale(0.82);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  object-fit: contain;
}
.lightbox-overlay.active .lb-img { transform: scale(1); }
.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  background: rgba(255,255,255,0.13);
  border: 2px solid rgba(255,255,255,0.28);
  color: white;
  font-size: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(6px);
  font-family: 'Fredoka', sans-serif;
}
.lb-close:hover {
  transform: scale(1.15) rotate(90deg);
  background: rgba(255,255,255,0.26);
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.13);
  border: 2px solid rgba(255,255,255,0.22);
  color: white;
  font-size: 30px;
  width: 56px; height: 56px;
  padding: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(6px);
  line-height: 1;
  font-family: serif;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover { background: rgba(255,255,255,0.26); transform: translateY(-50%) translateX(-3px) scale(1.08); }
.lb-next:hover { background: rgba(255,255,255,0.26); transform: translateY(-50%) translateX( 3px) scale(1.08); }
.lb-counter {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  background: rgba(0,0,0,0.38);
  padding: 4px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ── Ripple effect on buttons & CTA ── */
button, .highlight {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  transform: scale(0);
  animation: rippleAnim 0.65s linear forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4.5); opacity: 0; }
}

/* ── Cursor sparkle trail ── */
.cursor-sparkle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  animation: sparkleAnim 0.85s ease forwards;
}
@keyframes sparkleAnim {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); opacity: 0; }
}

/* ── Responsive additions ── */
@media (max-width: 768px) {
  #sticky-nav { padding: 7px 4%; }
  .nav-links  { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .nav-logo   { height: 40px; }
  #scroll-top { bottom: 16px; right: 16px; width: 44px; height: 44px; font-size: 18px; }
  .gallery-item img { height: 180px; }
  .lb-nav { width: 44px; height: 44px; font-size: 24px; }
}
@media (max-width: 480px) {
  .nav-links  { display: none; }
  .gallery-item img { height: 200px; }
}
