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

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-playfair-display {
    font-family: 'Playfair Display', serif;
}

.font-open-sans {
    font-family: 'Open Sans', sans-serif;
}

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

.animate-fade-in-slide-up {
    animation: fadeInSlideUp 1s ease-out forwards;
}

@keyframes pulseHover {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-pulse-hover:hover {
    animation: pulseHover 1.5s infinite ease-in-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-in-slide-up,
    .animate-pulse-hover:hover,
    .transition-all {
        animation: none !important;
        transition: none !important;
    }
}

/* Custom Hero Animation on Load */
/* The animations are now handled inline in the HTML for simplicity. */

/* Decorative elements */
.card-glow-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: radial-gradient(circle, rgba(243, 194, 107, 0.5) 0%, rgba(243, 194, 107, 0) 70%);
    filter: blur(30px);
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
    opacity: 0.7;
}

.card-glow-platinum::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: radial-gradient(circle, rgba(230, 238, 247, 0.8) 0%, rgba(230, 238, 247, 0) 70%);
    filter: blur(30px);
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
    opacity: 0.9;
}

.group:hover .card-glow-gold::before,
.group:hover .card-glow-platinum::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-shimmer {
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}