/* Custom Animations and Overrides */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

html {
    scroll-behavior: smooth;
}

/* Glassmorphism for Navbar */
nav {
    transition: all 0.3s ease;
}

/* Luxury Glow Effect for Gold Buttons */
.bg-gold {
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.bg-gold:hover {
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.6);
}

/* Typography Enhancements */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

/* Card Hover Scale */
.group:hover img {
    transform: scale(1.08);
}

/* Loader Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#loader p {
    animation: pulse 1.5s infinite;
}

/* Responsive Grid Tweaks */
@media (max-width: 640px) {
    header h1 {
        font-size: 2.5rem;
    }
}

