body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f5f2;
    color: #3d3d3d;
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-weight: 600;
}

header {
    background: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero {
    background: url('hero.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width:100%; height:100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background-color: #b79c87;
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.button:hover {
    background-color: #a88c76;
}

section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}

.section-alt {
    background: #efe9e4;
}

footer {
    background: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
}