
body {
    margin: 0;
    font-family: Georgia, serif;
    background: #f2f0ea;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    padding: 1em 2em;
    background: #f2f0ea;
    align-items: center;
}
.logo {
    font-size: 1.5em;
    font-weight: bold;
}
nav a {
    margin: 0 0.5em;
    text-decoration: none;
    color: #333;
}
.book-button {
    padding: 0.5em 1em;
    background: #d89b84;
    color: white;
    border-radius: 20px;
}
.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    text-align: center;
    padding: 4em 2em;
}
.hero-text h1 {
    font-size: 2.5em;
}
.hero-text .highlight {
    font-weight: bold;
}
.about {
    display: flex;
    padding: 2em;
    gap: 2em;
    justify-content: center;
}
.column {
    max-width: 400px;
}
.column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
