/* NHS Fishing Club custom styles */

/* Ensure Charis SIL loads for heading font */
.font-heading {
    font-family: 'Charis SIL', Georgia, serif;
}

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

/* Form styling helpers */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.15s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0F2347;
    box-shadow: 0 0 0 3px rgba(15, 35, 71, 0.1);
}

/* Calendar grid styling */
.calendar-day {
    min-height: 5rem;
}
