/* Basic styling for the Blue Ridge Rescue Squad website.  
   This stylesheet keeps the layout simple and mobile friendly.  */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

header {
    background: #003366;
    color: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #00539b;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h2 {
    margin-top: 0;
    font-size: 2rem;
}

.section {
    padding: 2rem 2rem;
    background: #ffffff;
    margin-bottom: 1rem;
}

.section h2 {
    margin-top: 0;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.card {
    flex: 1 1 280px;
    background: #e6e6e6;
    padding: 1rem;
    border-radius: 4px;
}

.card h3 {
    margin-top: 0;
}

.footer {
    background: #003366;
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    font-weight: bold;
}

form input,
form textarea,
form select {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

form button {
    padding: 0.75rem;
    background: #003366;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

form button:hover {
    background: #00539b;
}