        /* Custom styles for the Playfair Display font */
        .font-playfair {
            font-family: 'Playfair Display', serif;
        }
      
        /* Custom colors based on your original palette */
        .text-custom-gold {
            color: #D4AF37; /* Equivalent to your original 'gold-500' */
        }
        .hover\:text-custom-gold:hover {
            color: #C5A130; /* Slightly darker gold for hover, similar to 'gold-600' */
        }
        .bg-custom-gold {
            background-color: #D4AF37;
        }
        .hover\:bg-custom-gold-dark:hover {
            background-color: #C5A130;
        }
        .bg-custom-orange {
            background-color: #EA580C; /* Equivalent to your original 'orange-600' */
        }
        .hover\:bg-custom-orange-dark:hover {
            background-color: #A0522D; /* Your specific hover color */
        }

        /* Transition for mobile menu slide-in/out */
        .mobile-menu-overlay {
            transition: opacity 0.3s ease-in-out;
        }
        .mobile-menu-panel {
            transition: transform 0.3s ease-in-out;
        }