/* Custom Styling & Utilities for Andrewins Saloon Static Web Application */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  --bg-dark: #0D0D0F;
  --bg-card: #141419;
  --bg-card-alt: #181820;
  --amber-gold: #fbbf24;
  --amber-gold-light: #fde68a;
  --amber-glow: rgba(251, 191, 36, 0.15);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: #f4f4f5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.font-serif {
  font-family: var(--font-serif);
}

.font-mono {
  font-family: var(--font-mono);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #fbbf24;
}

/* Custom Selection Highlight */
::selection {
  background-color: #fbbf24;
  color: #09090b;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseSlow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.05); }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

.animate-pulse-slow {
  animation: pulseSlow 8s ease-in-out infinite;
}

/* Gallery image hover zoom */
.gallery-img-container img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Smooth Accordion */
.accordion-content {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Input Focus Glows */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}
