/*
Theme Name: De Witte Leeuw Fluid
Theme URI: https://dewitteleeuw.be
Description: Modern fluid design for De Witte Leeuw Belgian Restaurant aan de Graslei, Gent
Author: PPR-Team BV
Author URI: https://dewitteleeuw.be
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: dewitteleeuw-fluid
*/

/* ============================================================
   DE WITTE LEEUW — Fluid Design System
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  /* Colors */
  --color-bg: #000;
  --color-bg-deep: #050508;
  --color-bg-elevated: #0a0d14;
  --color-text: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.65);
  --color-text-faint: rgba(255, 255, 255, 0.4);
  --color-gold: #c8a97e;
  --color-gold-light: #dfc9a3;
  --color-gold-dark: #a68b5b;
  --color-gold-glow: rgba(200, 169, 126, 0.15);
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-gold: rgba(200, 169, 126, 0.2);

  /* Blob system */
  --blob-color-1: rgba(200, 169, 126, 0.07);
  --blob-color-2: rgba(200, 169, 126, 0.10);
  --blob-color-3: rgba(180, 150, 100, 0.05);
  --blob-blur: 60px;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(200, 169, 126, 0.06);
  --glass-border: rgba(200, 169, 126, 0.12);
  --glass-blur: 20px;

  /* Motion */
  --ease-fluid: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-slow: 0.8s;
  --duration-normal: 0.5s;
  --duration-fast: 0.3s;

  /* Organic radii */
  --radius-organic-1: 60% 40% 55% 45% / 50% 60% 40% 50%;
  --radius-organic-2: 40% 60% 45% 55% / 60% 40% 55% 45%;
  --radius-organic-3: 50% 50% 40% 60% / 55% 45% 50% 50%;
  --radius-drop: 50% 50% 50% 50% / 60% 60% 40% 40%;
  --radius-pill: 9999px;
  --radius-card: 24px;

  /* Scroll-driven (set by JS) */
  --scroll-y: 0;
  --mouse-x: 0.5;
  --mouse-y: 0.5;
}

/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* === ACCESSIBILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-gold);
  color: #000;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 12px;
  font-weight: 500;
}

.skip-nav:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* === NAVIGATION (Glass-morphism upgrade) === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  transition: background var(--duration-fast), backdrop-filter var(--duration-fast), border-color var(--duration-fast);
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--color-border-gold);
}

@supports not (backdrop-filter: blur(1px)) {
  nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
  }
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav-group:first-child {
  justify-content: flex-start;
}

.nav-group:last-child {
  justify-content: flex-end;
}

.nav-group a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--duration-fast);
  position: relative;
}

.nav-group a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-fluid);
}

.nav-group a:hover::after,
.nav-group a.active::after {
  transform: scaleX(1);
}

.nav-group a:hover,
.nav-group a.active {
  color: var(--color-text);
}

.nav-logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 30px;
  color: var(--color-gold);
  white-space: nowrap;
  text-shadow: 0 0 30px rgba(200, 169, 126, 0.2);
  text-align: center;
  line-height: 1.2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0 20px;
}

/* Old inline switcher (kept for fallback) */
.nav-lang {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-text-faint);
  text-transform: uppercase;
}
.nav-lang span { margin: 0 4px; }

/* === LANGUAGE DROPDOWN === */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--duration-fast) var(--ease-fluid);
}

.lang-dropdown-toggle:hover {
  background: rgba(200, 169, 126, 0.1);
  border-color: var(--color-gold);
}

.lang-current {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.lang-arrow {
  font-size: 10px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 80px;
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border-gold);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease-fluid);
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: block;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-fast);
  text-align: center;
}

.lang-dropdown-item:hover {
  color: var(--color-gold);
  background: rgba(200, 169, 126, 0.08);
}

/* === BUTTONS (Pill-shaped) === */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-fluid);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
}

.btn-w {
  background: var(--color-text);
  color: #000;
  border: 1px solid var(--color-text);
}

.btn-w:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-text);
}

.btn-o {
  background: var(--glass-bg);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-o:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(200, 169, 126, 0.08);
}

/* === BLOB SYSTEM === */
.blob-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  contain: layout style paint;
}

.blob {
  position: absolute;
  border-radius: var(--radius-organic-1);
  filter: blur(var(--blob-blur));
  will-change: transform, border-radius;
  animation: blobMorph 20s var(--ease-fluid) infinite, blobPulse 8s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, var(--blob-color-2), transparent 70%);
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, var(--blob-color-1), transparent 70%);
  top: 50%;
  left: -8%;
  animation-delay: -5s;
  animation-duration: 25s, 10s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, var(--blob-color-3), transparent 70%);
  bottom: 10%;
  right: 20%;
  animation-delay: -10s;
  animation-duration: 22s, 12s;
}

.blob-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, var(--blob-color-1), transparent 70%);
  top: 30%;
  left: 30%;
  animation-delay: -15s;
  animation-duration: 28s, 9s;
}

/* === ANIMATION KEYFRAMES === */
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  25%      { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
  50%      { border-radius: 50% 50% 40% 60% / 45% 55% 50% 50%; }
  75%      { border-radius: 45% 55% 60% 40% / 55% 45% 45% 55%; }
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(0.5deg); }
  66%      { transform: translateY(5px) rotate(-0.3deg); }
}

@keyframes liquidReveal {
  0%   { opacity: 0; transform: translateY(40px) scale(0.97); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes sectionCurve {
  from { clip-path: ellipse(60% 0px at 50% 100%); }
  to   { clip-path: ellipse(80% 60px at 50% 100%); }
}

/* === UTILITY CLASSES === */

/* Organic image masks */
.mask-organic {
  border-radius: var(--radius-organic-1);
  overflow: hidden;
  transition: border-radius 1.2s var(--ease-fluid);
}

.mask-organic:hover {
  border-radius: var(--radius-organic-2);
}

.mask-drop {
  border-radius: var(--radius-drop);
  overflow: hidden;
  transition: border-radius 0.8s var(--ease-fluid);
}

.mask-pill {
  border-radius: var(--radius-pill);
  overflow: hidden;
}

/* Glass morphism card */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  transition: background var(--duration-normal) var(--ease-fluid),
              border-color var(--duration-normal) var(--ease-fluid),
              box-shadow var(--duration-normal) var(--ease-fluid);
}

.glass:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(200, 169, 126, 0.25);
  box-shadow: 0 0 40px rgba(200, 169, 126, 0.08);
}

@supports not (backdrop-filter: blur(1px)) {
  .glass {
    background: rgba(10, 13, 20, 0.85);
  }
}

/* Parallax depth layers */
.parallax-slow   { transform: translateY(calc(var(--scroll-y) * -0.02px)); will-change: transform; }
.parallax-medium { transform: translateY(calc(var(--scroll-y) * -0.05px)); will-change: transform; }
.parallax-fast   { transform: translateY(calc(var(--scroll-y) * -0.08px)); will-change: transform; }

/* Float animation */
.float-element {
  animation: floatDrift 6s var(--ease-fluid) infinite;
}

/* Liquid reveal (replaces old .reveal) */
.liquid-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(4px);
  transition: opacity var(--duration-slow) var(--ease-fluid),
              transform var(--duration-slow) var(--ease-fluid),
              filter var(--duration-slow) var(--ease-fluid);
}

.liquid-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger delays */
.liquid-reveal[data-delay="1"] { transition-delay: 0.1s; }
.liquid-reveal[data-delay="2"] { transition-delay: 0.2s; }
.liquid-reveal[data-delay="3"] { transition-delay: 0.3s; }
.liquid-reveal[data-delay="4"] { transition-delay: 0.4s; }
.liquid-reveal[data-delay="5"] { transition-delay: 0.5s; }
.liquid-reveal[data-delay="6"] { transition-delay: 0.6s; }

/* Gold shimmer text */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--color-gold-dark) 0%,
    var(--color-gold-light) 25%,
    var(--color-gold) 50%,
    var(--color-gold-light) 75%,
    var(--color-gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
}

/* Section curve transition */
.section-curve {
  position: relative;
}

.section-curve::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Page content layer (above blobs) */
.page-content {
  position: relative;
  z-index: 1;
}

/* === SHARED FOOTER === */
.footer {
  margin-top: 40px;
  position: relative;
}

/* === MARQUEE SCROLL GALLERY === */
.footer-gallery,
.footer-images {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0;
  margin-bottom: 0;
}

.footer-gallery .marquee-track,
.footer-images .marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.footer-gallery:hover .marquee-track,
.footer-images:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer-gallery .marquee-track img,
.footer-images .marquee-track img,
.footer-images .marquee-track .footer-image {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-card);
  flex-shrink: 0;
  transition: border-radius 0.8s var(--ease-fluid), transform var(--duration-normal) var(--ease-fluid);
}

.footer-images .marquee-track .footer-image {
  overflow: hidden;
}

.footer-images .marquee-track .footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-gallery .marquee-track img:hover,
.footer-images .marquee-track img:hover,
.footer-images .marquee-track .footer-image:hover {
  border-radius: var(--radius-organic-1);
  transform: scale(1.04);
}

.footer-body {
  padding: 56px 48px 0;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.footer-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer-cols h3,
.footer-info-block h3,
.footer-info-block h4,
.footer-section h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.footer-cols p,
.footer-info-block p,
.footer-section p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
}

.footer-cols a,
.footer-section a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast);
}

.footer-cols a:hover,
.footer-section a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  margin-left: 16px;
  transition: color var(--duration-fast);
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 24px;
}

/* Footer content (menu/contact variant) */
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 60px;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.footer-info-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Footer images (menu/contact variant - now uses marquee from above) */
.footer-images {
  margin-bottom: 60px;
}

.footer-image {
  overflow: hidden;
  width: 260px;
  height: 180px;
  border-radius: var(--radius-card);
  flex-shrink: 0;
  transition: border-radius 0.8s var(--ease-fluid), transform var(--duration-normal) var(--ease-fluid);
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-image:hover {
  border-radius: var(--radius-organic-1);
  transform: scale(1.02);
}

/* === RESPONSIVE === */
/* === HAMBURGER MENU (hidden on desktop) === */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-gold);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay menu */
.nav-mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
    height: 60px;
  }

  .nav-group {
    display: none;
  }

  .nav-hamburger {
    display: block;
    position: absolute;
    right: 24px;
  }

  .nav-logo {
    font-size: 24px;
  }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 199;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 20px;
    overflow-y: auto;
  }

  .nav-mobile-menu.open {
    display: flex;
  }

  .nav-mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 18px 0;
    transition: color 0.3s;
    text-align: center;
  }

  .nav-mobile-menu a:hover,
  .nav-mobile-menu a.active {
    color: var(--color-gold);
  }

  .nav-mobile-menu .mobile-divider {
    width: 60px;
    height: 1px;
    background: var(--color-border-gold);
    margin: 12px 0;
  }

  .nav-mobile-menu .mobile-lang-section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-gold);
  }

  .nav-mobile-menu .mobile-lang-section a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 8px 16px;
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-pill);
  }

  .nav-mobile-menu .mobile-lang-section a.active {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
  }

  /* Blobs: keep one, reduce */
  .blob { display: none; }
  .blob-1 { display: block; width: 250px; height: 250px; opacity: 0.7; }

  .parallax-fast { transform: none; }

  .footer-gallery .marquee-track img,
  .footer-images .marquee-track img,
  .footer-images .marquee-track .footer-image {
    width: 200px;
    height: 140px;
  }

  .footer-cols,
  .footer-info {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-content {
    padding: 0 32px 60px;
  }
}

@media (max-width: 560px) {
  nav {
    padding: 0 16px;
    height: 60px;
  }

  .nav-group {
    gap: 12px;
  }

  .nav-logo {
    font-size: 18px;
  }

  /* Blobs: hide all */
  .blob-container { display: none; }

  /* Disable motion */
  .float-element { animation: none; }
  .parallax-slow,
  .parallax-medium,
  .parallax-fast { transform: none; }

  .footer-gallery .marquee-track img,
  .footer-images .marquee-track img,
  .footer-images .marquee-track .footer-image {
    width: 160px;
    height: 120px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-content {
    padding: 0 20px 40px;
  }

  .footer-title {
    font-size: 18px;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
  }

  .blob-container {
    display: none;
  }

  .liquid-reveal {
    filter: none;
    transform: translateY(20px);
  }

  .liquid-reveal.visible {
    transform: translateY(0);
  }
}