/* General Styles */
body {
    font-family: 'Georgia', serif;
    color: #5B4636;
    text-align: center;
    margin: 0;
    padding: 0;
}

body {
    will-change: background-position, background-size;
}

body {
    background-color: #e0dbd0;
    background-image: url('/images/background.webp');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 69vh;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 219, 208, 0.75);
    z-index: -1;
}

/* Header */
header {
    padding: 20px;
}

header img {
    width: 40%;
    max-width: 400px;
    height: auto;
}

nav {
    margin-top: 10px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    color: #626f4d;
    font-size: 18px;
}

nav a:hover {
    color: #c58887;
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 10px;
    background-color: #5B4636;
    color: white;
    font-size: 0.9em;
}

/* Main Content */
.headshot {
    display: block;
    width: 200px;
    border-radius: 50%;
    margin: 20px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

main {
    margin: 40px auto;
    max-width: 600px;
}

h1, h2, h3{
    color: #626f4d;
    text-align: center;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    font-size: 18px;
    text-align: left;
    background-color: #F5EEE6;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

th, td {
    padding: 12px 15px;
    border-bottom: 1px solid #5B4636;
}

th {
    background-color: #626f4d;
    color: #F5EEE6 ;
    font-size: 20px;
}

tr:nth-child(even) {
    background-color: #e0dad1;
}

.contact-info {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
}

.contact-info a {
    color: #626f4d;
    font-weight: bold;
    text-decoration: none;
}

.contact-info a:hover {
    color: #c58887;
    text-decoration: underline;
}

.contact-info p {
    color: #5B4636;
}

.contact-info hr {
    width: 50%;
    margin: 20px auto;
    border: 1px solid #626f4d;
}

/* Contact Links */
.contact-link {
    font-size: 20px;
    color: #626f4d;
    font-weight: bold;
    text-decoration: none;
}

.contact-link:hover {
    color: #c58887;
    text-decoration: underline;
}

/* Call-to-Action Button */
.cta-button {
    display: block;
    text-align: center;
    color: #F5EEE6;
    background-color: #636f4e;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    width: 300px;
    margin: 20px auto;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c58887;
}
