/* Custom Styles for Cats & Soup Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Mitr:wght@400;500;600&display=swap');

:root {
  --color-forest-dark: #1E3A2B;
  --color-forest-medium: #2D5A40;
  --color-forest-light: #4E8765;
  --color-sage: #8BB193;
  --color-cream: #FAF6ED;
  --color-cream-card: #FFFDF9;
  --color-amber-warm: #E09F3E;
  --color-soup-orange: #E76F51;
  --color-wood: #6B4226;
}

body {
  font-family: 'Prompt', sans-serif;
  background-color: var(--color-cream);
  color: #2C3E35;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, .font-heading {
  font-family: 'Mitr', 'Prompt', sans-serif;
}

/* Custom Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes steam {
  0% { transform: translateY(0) scaleX(1); opacity: 0.8; }
  50% { transform: translateY(-15px) scaleX(1.2); opacity: 0.4; }
  100% { transform: translateY(-30px) scaleX(1.4); opacity: 0; }
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(231, 111, 81, 0.3)); }
  50% { filter: drop-shadow(0 0 25px rgba(231, 111, 81, 0.6)); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 4s ease-in-out 2s infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 3s infinite;
}

.steam-particle-1 { animation: steam 2.5s ease-out infinite; }
.steam-particle-2 { animation: steam 2.5s ease-out 0.8s infinite; }
.steam-particle-3 { animation: steam 2.5s ease-out 1.6s infinite; }

/* Custom Glassmorphic Navbar */
.nav-glass {
  background: rgba(250, 246, 237, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78, 135, 101, 0.15);
}

/* Soft Cozy Card Shadows & Borders */
.cozy-card {
  background-color: var(--color-cream-card);
  border: 2px solid rgba(139, 177, 147, 0.25);
  box-shadow: 0 10px 30px -5px rgba(30, 58, 43, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cozy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(78, 135, 101, 0.5);
  box-shadow: 0 20px 35px -5px rgba(30, 58, 43, 0.14);
}

/* Lightbox Modal Custom Styles */
.lightbox-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

/* Gallery Hover Overlay */
.gallery-item .overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #FAF6ED;
}

::-webkit-scrollbar-thumb {
  background: #A3C9A8;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4E8765;
}

/* Store Badge Pulse */
.store-btn {
  transition: all 0.25s ease;
}

.store-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(45, 90, 64, 0.25);
}
