  /* Custom styles for Ash's Irish Pub */

  html {
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
  }

  /* Gold gradient text utility */
  .text-gold-gradient {
    background: linear-gradient(135deg, #D4A843 0%, #F0D68A 50%, #C49A30 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #041C14;
  }
  ::-webkit-scrollbar-thumb {
    background: #0B3D2E;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #D4A843;
  }

  /* Nav scroll state */
  nav.scrolled {
    background: rgba(4, 28, 20, 0.95) !important;
    backdrop-blur-lg;
    box-shadow: 0 1px 0 rgba(212, 168, 67, 0.1);
  }

  /* Fade-in animations */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger children */
  .stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
  .stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
  .stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
  .stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
  .stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
  .stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
  }

  /* Shimmer effect for gold accents */
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

  /* Pulse glow for CTA */
  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(212, 168, 67, 0.15); }
  }

  .cta-glow:hover {
    animation: pulse-glow 2s infinite;
  }

  /* Mobile menu transition */
  #mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
  #mobile-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  #mobile-menu.closed {
    max-height: 0;
    opacity: 0;
  }

  /* Decorative line animation */
  @keyframes grow-line {
    from { width: 0; }
    to { width: 60px; }
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A843, transparent);
    width: 60px;
    margin: 0 auto;
    animation: grow-line 1s ease forwards;
  }
