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

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

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', 'Cinzel', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Luxury Japanese Minimalist Palette (MUJI + Apple) */
  --bg-sand: #F7F4EE;          /* Warm Washi Sand Light */
  --bg-sand-card: #FAF8F5;     /* Pure Sand Cream Card */
  --bg-sand-hover: #EFECE6;    /* Slightly darker sand hover */
  --border-sand: #E3DDD3;       /* Soft Washi border */

  --bg-charcoal: #1A1918;      /* Deep Sumi Charcoal Dark */
  --bg-charcoal-card: #22201E; /* Sumi Ink Dark Card */
  --bg-charcoal-alt: #282623;  /* Dark Charcoal Surface */
  --border-charcoal: #383430;  /* Dark Charcoal subtle border */

  --gold-accent: #C5A059;      /* Brushed Champagne Gold */
  --gold-hover: #D4AF37;       /* Rich Gold Accent */
  --gold-light: #F3E8D2;       /* Soft Gold Tint */
  --gold-glow: rgba(197, 160, 89, 0.15);
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #121110;
}
::-webkit-scrollbar-thumb {
  background: #383430;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C5A059;
}

/* Custom Selection Highlight */
::selection {
  background-color: #C5A059;
  color: #121110;
}

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

@keyframes pulseSlow {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.28; 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(197, 160, 89, 0.25);
  border-color: rgba(197, 160, 89, 0.6) !important;
}

