/* Hero image section (optional, add to index.md or essays) */

.hero {
    position: relative;
    text-align: center;
    color: white;
    margin: -1.2rem -1.2rem 2rem;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: brightness(65%);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero .text {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.hero p {
    font-family: "Merriweather", serif;
    font-size: 1.2rem;
    color: #ddd;
}