/* Google Fonts: Playfair Display (Serif/Authority) & Inter (Sans/Clean) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

/* Tailwind CSS via CDN - will be included in HTML head */
/* Custom styles and utilities */

/* Utility to hide sections (if needed for any page-specific behavior) */
.page-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}
.page-section.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .mobile-menu-hidden {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

