@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* Base Settings */
body { font-family: 'Lato', sans-serif; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* Hide Alpine elements before load */
[x-cloak] { display: none !important; }

/* Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.animate-marquee {
  animation: marquee 20s linear infinite;
}

/* Custom Scrollbar for Mobile Menu */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}