#hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    background-color: #000000;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    z-index: 10;
    padding: 0 15px;
    pointer-events: none;
}

.hero-content {
    width: 40%;
    color: #ffffff;
    pointer-events: auto;
}

.hero-visual-space {
    width: 60%;
    height: 100%;
}

.hero-eyebrow {
    font-family: monospace;
    color: #ff5a1f;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-cta-primary {
    background-color: #ff5a1f;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.hero-cta-primary:hover {
    background-color: #e04a15;
}

.hero-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s;
}

.hero-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
    }
    .hero-content {
        width: 100%;
        text-align: center;
    }
    .hero-visual-space {
        display: none;
    }
    .hero-actions {
        justify-content: center;
    }
}
