.vhn-container {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

/* Fullscreen Background Layer */
.vhn-fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.vhn-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.vhn-background-image.is-active {
    opacity: 1;
    transform: scale(1);
}

.vhn-overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: background-color 0.3s ease;
}

/* Interactive Menu Layer */
.vhn-menu {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vhn-item {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vhn-item:hover {
    transform: translateX(15px);
    border-color: rgba(255, 255, 255, 0.4);
}

.vhn-item-meta {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.vhn-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.6;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

.vhn-item:hover .vhn-label {
    opacity: 1;
}

.vhn-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vhn-title {
    margin: 0;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    transition: color 0.3s ease;
}

.vhn-subtitle {
    margin: 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .vhn-title {
        font-size: 2.2rem;
    }
    .vhn-item-meta {
        gap: 1rem;
    }
    .vhn-item:hover {
        transform: translateX(5px);
    }
}
