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

/* Custom styles for hero pattern background */
.hero-pattern {
    background-color: #fefce8; /* A very light yellow from the yellow-50 range */
    background-image: radial-gradient(circle at 1px 1px, rgba(5, 102, 141, 0.2) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Modal Transitions */
.modal {
    transition: opacity 0.25s ease;
}

/* Prevent scrolling when modal is open */
body.modal-active {
    overflow-x: hidden;
    overflow-y: hidden !important;
}