/* ── Custom CSS for French's Liquor Store ── */

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #1a5c2a 0%, #245725 25%, #1d451d 50%, #183817 75%, #0c1e0d 100%);
}

/* Floating decorative shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #86efac, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fde68a, transparent 70%);
  bottom: 10%;
  left: -50px;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #a7f3d0, transparent 70%);
  top: 40%;
  right: 10%;
  animation-delay: -10s;
}

.shape-4 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
  top: 20%;
  left: 15%;
  animation-delay: -7s;
}

.shape-5 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #fca5a5, transparent 70%);
  bottom: 5%;
  right: 20%;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 15px) scale(1.02); }
}

/* Fade-in-up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-600 { animation-delay: 0.6s; }

/* Navigation */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
  opacity: 0.5;
}

.nav-link:hover::after {
  width: 100%;
}

/* Navbar scroll state */
.nav-scrolled {
  background: rgba(253, 252, 248, 0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(26, 92, 42, 0.08);
}

.nav-scrolled .nav-link {
  color: #1d451d;
}

.nav-scrolled .font-display {
  color: #1d451d;
}

/* Mobile menu */
.mobile-link {
  position: relative;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e8f5e9;
}

.mobile-link:last-child {
  border-bottom: none;
}

/* Section reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
  background: #89c986;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5aad5a;
}

/* Selection section hover */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

/* Image aspect ratio fallback */
.aspect-\[4\/5\] {
  aspect-ratio: 4 / 5;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .floating-shape,
  .animate-bounce {
    animation: none;
  }
  
  .animate-fade-in-up {
    animation: none;
    opacity: 1;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Print styles */
@media print {
  .floating-shape,
  .animate-bounce {
    display: none;
  }
  
  .hero-gradient {
    background: #1a5c2a !important;
  }
}
