body {
    margin: 0;
    font-family: Playfair Display, sans-serif;
    color: #2B2B2B;
    background-color: #F7F4EC; /* warm cream */
	font-size: 18px;
}
header {
    background: url('hero.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;    
	font-family: 'Kunstler Script', cursive;
    font-size: 48px;
    text-shadow: 0 0 12px rgba(0,0,0,0.7);
}

nav {
    background: #2F4F4F; /* deep forest green */
    padding: 12px 20px;
    position: sticky;
    top: 0;
}

nav a {
    color: #F7F4EC;
    margin-right: 25px;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    background: #FFFFFFCC; /* soft translucent white */
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

h2 {
    margin-bottom: 20px;
    color: #2F4F4F;
}

button {
    background: #A8C3A0; /* sage green */
    color: #2B2B2B;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #C2A878; /* golden olive */
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #A8C3A0;
    background: #FFFFFF;
}

footer {
    background: #2F4F4F;
    color: #F7F4EC;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}