@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

html { scroll-behavior: smooth; }

@layer utilities {
    .btn-primary {
        @apply bg-[#0F172A] hover:bg-[#334155] text-white font-medium py-3 px-8 rounded-md shadow transition-all duration-300;
    }
    .btn-outline {
        @apply border border-[#0F172A] text-[#0F172A] hover:bg-[#0F172A] hover:text-white font-medium py-3 px-8 rounded-md transition-all duration-300;
    }
}
