* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f7f9f8;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color:#9A8BB0;
    padding: 1rem;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

/* Navigation */
nav {
    position: absolute;
    top: 100%;
    left: 0;
    /* background-color: #8fb9a8; */
    background-color:#9A8BB0;
    width: 100%;
    display: none;
}

nav a {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
}

nav a:hover {
    background-color: #A69DBB;
}

/* Hamburger */
#menu-toggle {
    display: none;
}

.hamburger {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

#menu-toggle:checked + nav {
    display: block;
}

/* Main content */
main {
    padding: 3rem 1.5rem;
    max-width: 900px;
    margin: auto;
}

section {
    margin-bottom: 2.5rem;
}

h1, h2 {
    color: #736289;
    margin-bottom: 1rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #eeeeee;
    font-size: 0.9rem;
    gap: 40px;      
    padding: 20px;
}

/* Images */
.hero-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.image-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.headshot {
    width: 100%;
    border-radius: 10px;
    background-color: #ddebe5;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

label {
    font-weight: 500;
    color: #736289;
}

input, textarea {
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #9A8BB0;
    font-size: 1rem;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #9A8BB0;
}

button {
    background-color: #9A8BB0;
    color: white;
    padding: 0.9rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #736289;
}

.form-note {
    font-size: 0.9rem;
    color: #9A8BB0 ;
}
.gdpr {
    font-size: 0.85rem;
    color: #A69DBB;
}

.gdpr label {
    font-weight: normal;
    display: inline;
}

.gdpr input {
    margin-right: 0.5rem;
}
.emergency-note {
    background-color: #F3F1F8;
    border-left: 4px solid #9A8BB0;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #A69DBB;
    outline-offset: 2px;
}
