/* Custom styles for NDA Maker */

/* Signature canvas */
.signature-pad-container {
    border: 2px solid var(--bs-gray-500);
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    position: relative;
}

/* Removed redundant ::before as we now have explicit instructions */

.signature-pad {
    border: 2px solid var(--bs-primary);
    width: 100%;
    max-width: 300px;
    height: 100px;
    background-color: white;
    cursor: crosshair;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Custom form styles */
.form-section {
    border-bottom: 1px solid var(--bs-gray-700);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-section:last-child {
    border-bottom: none;
}

/* NDA Preview */
.nda-preview {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bs-gray-900);
    border-radius: 5px;
    border: 1px solid var(--bs-gray-700);
}

.nda-title {
    text-align: center;
    margin-bottom: 2rem;
}

.nda-section {
    margin-bottom: 1.5rem;
}

/* NDA signature area */
.signature-area {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
}

.signature-field {
    width: 45%;
    text-align: center;
}

.signature-line {
    border-top: 1px solid var(--bs-gray-600);
    margin-top: 70px;
    margin-bottom: 10px;
}

/* Landing page styling */
.jumbotron {
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bs-gray-900);
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid var(--bs-gray-700);
}

/* Features section */
.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-info);
}

.feature-box {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--bs-gray-800);
    height: 100%;
}

/* Steps navigation */
.steps-nav {
    margin-bottom: 2rem;
}

.step-item {
    width: 33.33%;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.step-item::after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: var(--bs-gray-600);
    top: 25px;
    width: 100%;
    left: 50%;
    z-index: 1;
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    background-color: var(--bs-gray-700);
    color: var(--bs-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

.step-active .step-number {
    background-color: var(--bs-info);
}

.step-complete .step-number {
    background-color: var(--bs-success);
}
