.nh-section-4b1d17ed {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #0b0b0b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.nh-background-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.nh-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.03);
}

.nh-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.nh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    z-index: 2;
}

/* Ken Burns Subtle Zoom Animation */
.ken-burns .nh-bg-image,
.ken-burns .nh-bg-video {
    animation: kenBurnsZoom_4b1d17ed 14s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}

@keyframes kenBurnsZoom_4b1d17ed {
    0% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1.10);
    }
}

.nh-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.nh-content-wrapper {
    max-width: 800px;
}

.nh-title {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.015em;
}

.serif-gold {
    font-family: "Playfair Display", "Didot", "Georgia", serif;
    font-style: italic;
    color: #C7A05A;
}

.nh-desc {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 620px;
}

.nh-buttons-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Primary Button Style */
.nh-btn-primary {
    background-color: #ffffff;
    color: #111111;
    font-size: 14.5px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nh-btn-primary .arrow-icon {
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
}

.nh-btn-primary:hover {
    background-color: #f7f7f7;
    transform: translateY(-2px);
}

.nh-btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* Secondary Button Style */
.nh-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14.5px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nh-btn-secondary:hover {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Entry Animations */
.anim-active .anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn_4b1d17ed 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.anim-active .nh-title.anim-fade-up {
    animation-delay: 0.1s;
}

.anim-active .nh-desc.anim-fade-up {
    animation-delay: 0.25s;
}

.anim-active .nh-buttons-wrap.anim-fade-up {
    animation-delay: 0.4s;
}

@keyframes fadeUpIn_4b1d17ed {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Scaling */
@media (max-width: 767px) {
    .nh-content-container {
        padding: 0 24px;
    }
    
    .nh-buttons-wrap {
        flex-direction: column;
        width: 100%;
    }
    
    .nh-btn-primary, 
    .nh-btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 15px 24px;
    }
}
