@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #4A4A4A;
    background-color: #FAF6F1;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

/* Custom Utilities for smooth transitions */
.transition-custom {
    transition: all 0.3s ease-in-out;
}

/* Accordion max-height transitions */
.max-h-0 {
    max-height: 0;
}
.max-h-screen {
    max-height: 100vh;
}
