/* Hero Section Styles */
#hero {
    position: relative;
    justify-content: center;
}

#hero .content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    gap: 2.5rem;
}

#hero h1 {
    font-size: 2.25rem;
    font-weight: 200;
    letter-spacing: 0.125em;
    text-align: center;
}

@media (min-width: 1024px) {
    #hero h1 {
        font-size: 3.75rem;
    }
}

#hero img {
    max-width: 56rem;
    width: 75%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    opacity: 0.9;
}

#hero .accent {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

#hero .accent-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, rgba(244, 244, 245, 0), rgba(244, 244, 245, 0.4), rgba(244, 244, 245, 0));
}
