body {
    margin: 0;
    font-family: "IM Fell English", serif;
    font-size: 1.4rem;
    background-color: #f5f0ec;
    color: #432c12;
}

h1,
h2 {
    font-family: "Kaushan Script", cursive;
}

h1.title {
    font-size: clamp(2rem, 5vw, 6rem); /* Scales between 2rem and 6rem */
    color: white;
    position: absolute;
    top: 20%;
    right: 10%;
    text-align: right;
    line-height: 1.2;
}

a {
    color: #432c12;
    transition: font-size 0.2s ease;
}

a:hover {
    font-size: 1.05em;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 500px) {
    .hero-img {
        object-position: center center;
    }
}

.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.reverse {
    flex-direction: row-reverse;
}

.text {
    flex: 1 1 300px;
}

.image-stack {
    flex: 1 1 300px;
}

.image-stack img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;

    transition: filter 0.4s ease;
}

.image-stack img:hover {
    filter: sepia(20%);
}

.book-button {
    background-color: #6d4c29;
    color: #ffffff;
    border: 1px solid  #532C02;
    border-radius: 2rem;
    font-family: "Kaushan Script", sans-serif;
    font-size: 2rem;
    padding: 0.6rem 1.2rem;
    cursor: pointer;

    width: calc(100% - 40px);
    margin: 40px 20px;

    transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
}

.book-button:hover {
    background-color: #583A1B;
    color: #ffffff;
    transform: scale(104%, 104%);
}


contact
