/* ==========================================================================
   Hero Layout Component Rules (Streamlined Design)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 140px 0 80px 0; /* Clears room for the floating pill navigation bar */
    min-height: 85vh; /* Adjusted slightly lower now that buttons are removed */
    display: flex;
    align-items: center;
    background-color: transparent; /* Background is now handled by the ambient slideshow engine */
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal distribution for balanced spacing */
    gap: 60px; /* Generous gap for a spacious high-end look */
    align-items: center;
}

/* Left Column Content Elements */
.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-description {
    color: var(--text-primary); /* Promoted to primary color since it holds the main message */
    font-size: 1.35rem; /* Marginally bumped up to give it strong presence on its own */
    line-height: 1.7;
    letter-spacing: 0.5px;
    max-width: 500px;
}

/* Right Column Image Elements */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Backing ambient gradient wash to naturally fade image bounds into background */
.image-ambient-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(18, 19, 21, 0) 30%, rgba(18, 19, 21, 1) 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-render-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Responsive Adaptability Boundaries
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text-content {
        align-items: center;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .image-ambient-glow {
        width: 100%;
        height: 100%;
    }
}