/* style.css */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Ensure images don't distort */
img {
    object-fit: cover;
}

/* Custom button hover state for a more "premium" feel */
.btn-primary {
    @apply transform transition-transform duration-200 active:scale-95;
}

/* Fixed Header Spacing (if you make the header sticky) */
body {
    padding-top: 0; /* Adjust this if you make your header 'fixed' */
}

/* Section transitions */
section {
    @apply transition-opacity duration-700;
}