.body.home {
    background-color: black;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1.5rem 2rem;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {

    filter: grayscale(100%);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 12vw, 12rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero h1 {
        letter-spacing: 0.03em;
    }
}

@media (max-width: 768px) {
    .hero-image img {
        position: absolute;
        right: 0;
        left: auto;
        width: auto;
        height: 100%;
    }

    .hero {
        padding-top: 10rem;
    }
}
