/* Base styles matching the black/white palette and Nunito Sans */
body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Smooth scroll for navigation links */
html {
    scroll-behavior: smooth;
}

/* Custom animation for hover state (micro animation) */
.card-hover-effect {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 0px rgba(32, 201, 151, 0);
}
.card-hover-effect:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 165, 154, 0.5); /* Teal glow */
}

/* Carousel image transition (optional, applied by JS opacity) */
.carousel-item {
    transition: opacity 700ms ease-in-out;
}
