/*
    Custom Styles for Florida Window and Door Watchdog
    ----------------------------------------------------
    - Font: Open Sans / Inter
    - Palette: Blue-Gray-White
*/

body {
    font-family: 'Inter', sans-serif;
    color: #212529; /* Dark Bootstrap text */
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

section {
    padding: 30px 0;
}

.card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

header h1 {
    font-weight: 800;
    font-size: 3rem;
    padding: 10px 0;
}

header .lead {
    font-weight: 500;
    padding-bottom: 20px;
}

/* Management section cards */
#management .card {
    margin: 15px 0;
}

/* Legal section */
#legal .list-group-item {
    padding: 15px;
    border-left: 3px solid #4361ee;
}

/* Submit form section */
#submit form {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
}

.btn-primary {
    background-color: #4361ee;
    border: none;
}

.btn-primary:hover {
    background-color: #3a0ca3;
}

.btn-secondary {
    background-color: #6c757d; /* Bootstrap Gray */
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #565e64;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #664d03;
}

.alert {
    font-size: 0.95rem;
    font-weight: 500;
}

footer {
    background: #222;
    color: #ccc;
}

footer a {
    color: #ccc;
    text-decoration: underline;
}

footer a:hover {
    color: #fff;
}
.navbar .nav-link.active {
    font-weight: 700;
    text-decoration: underline;
}

.form-control:focus {
    border-color: #3a0ca3;
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
}