/**
 * Steps Block Styles
 * 
 * @package Vision_Hall
 */

.steps-block {
    background-color: #0D0D0D;
    padding: 60px 20px;
}

.steps-block-content {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.steps-block-title {
    font-family: 'Panama', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 90%;
    text-align: center;
    text-transform: uppercase;
    color: #F2EEE5;
    margin: 0 0 16px;
}

/* Subtitle */
.steps-block-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    color: #F2EEE5;
    margin: 0 0 80px;
    position: relative;
    background-color: #0D0D0D;
    z-index: 1;
}

/* Wrapper for line and steps */
.steps-block-wrapper {
    position: relative;
}

/* Vertical line through all steps */
.steps-block-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px dashed rgba(255, 255, 255, 0.5);
    transform: translateX(-50%);
    z-index: 0;
}

/* Steps Container */
.steps-block-steps {
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Individual Step */
.steps-block-step {
    margin-bottom: 60px;
    position: relative;
    background-color: #0D0D0D;
}

.steps-block-step:last-child {
    margin-bottom: 60px;
}

/* Step Number (Roman Numerals) */
.steps-block-step-number {
    font-family: 'Panama', serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    text-align: center;
    color: #F2EEE5;
    margin: 0 0 16px;
}

/* Step Title */
.steps-block-step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    color: #F2EEE5;
    margin-bottom: 8px;
}

/* Step Text */
.steps-block-step-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    color: #F2EEE5;
    margin: 0;
}

/* Button */
.steps-block-button {
    margin-top: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #0D0D0D;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .steps-block {
        padding: 0 20px 60px;
    }
    
    .steps-block-title {
        font-size: 50px;
    }
    
    .steps-block-subtitle {
        margin-bottom: 80px;
    }
}

