/* Custom styles for The Craft Data website */

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

/* Offset for sticky header */
section[id] {
    scroll-margin-top: 5rem;
    /* Matches h-20 (80px) header height */
}

/* Custom font settings if needed, otherwise using Tailwind defaults */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Helper for the mobile menu transition */
.mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.mobile-menu.open {
    max-height: 400px;
    /* Arbitrary large height */
    opacity: 1;
}

/* Card hover effects beyond tailwind utilities */
.case-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}