/* Using your requested natural colors */
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=EB+Garamond:ital,wght@0,400;1,400&display=swap");

.title-div {
    margin: 15vh auto 5vh auto; /* Using vh for better vertical centering */
    text-align: center;
    width: 60%; /* Slightly wider for better balance */
    padding: 2em;
    position: relative;
    z-index: 1;
}

.title {
    color: #4a4540;
    position: relative;
    font-family: "Alex Brush", cursive;
    font-size: 8rem; /* Significant increase for a bolder look */
    font-weight: 400;
    line-height: 1.2; /* Ensures descenders/ascenders aren't cut off */
    z-index: 10;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #8c7e6d; /* Muted taupe/grey */
    position: relative;
    font-size: 1.2rem;
    font-weight: 400;
    font-family:
        "EB Garamond", serif; /* Matching your body font for cohesion */
    letter-spacing: 0.15em; /* More "editorial" feel */
    text-transform: uppercase;
    z-index: 10;
    line-height: 1.5;
}

.subtitle a {
    color: #8c7e6d;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* We remove the dark backgrounds and transitions to keep the
   natural warm white background consistent. */
.background--light,
.background--complex,
.background--dark {
    background: transparent;
    transition: none;
}

@media all and (max-width: 1024px) {
    .title-div {
        width: 90%;
        margin-top: 10vh;
    }
    .title {
        font-size: 3.5rem;
    }
}
