/* Version 1.0.1 */
.stage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin: -2cm 2cm 40px;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sentinel';
    font-weight: 300;
    color: #666666;
    text-decoration: none;
}

.nav-links:first-child::before {
    content: '←';
    font-size: 18px;
    display: inline-block;
    font-weight: 300;
    margin-right: 8px;
}

.nav-links:last-child::before {
    content: none;
}

.nav-links:last-child::after {
    content: '→';
    font-size: 18px;
    font-weight: 300;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: -3.75cm 2cm 40px;
    position: relative;
}

.stage-title-container {
    width: 65%;
    margin: 0 auto 36.4px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.stage-icon {
    height: 112px;
    width: auto;
    position: absolute;
    right: calc(100% + 15px);
}

.stage-name {
    font-family: 'Sentinel';
    font-weight: 500;
    font-size: 32px;
    color: #666666;
    margin: 0;
    white-space: nowrap;
}

.logo {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.progress-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    width: 65%;
    margin: 0 auto;
    position: relative;
    top: -48px;
}

.progress-bar {
    width: 154px;
    height: 16px;
    background-color: #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: #AF232D;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    display: none;
}

.steps-container {
    width: 65%;
    margin: 0 auto;
    background-color: #F5F6F7;
    border-radius: 8px;
    padding: 22.5px 45px;
}

.step {
    position: relative;
    padding: 20px 0;
    cursor: pointer;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    font-family: 'Sentinel';
    font-weight: 300;
    font-size: 18px;
    color: #666666;
}

.step-title {
    font-family: 'Sentinel';
    font-weight: 300;
    font-size: 20px;
    color: #666666;
    margin: 0;
}

.checkmark {
    position: absolute;
    right: 0;
    top: 20px;
    width: 24px;
    height: 24px;
    border: 2px solid #444444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #444444;
}

.checkmark::after {
    content: '✓';
    color: #E5E5E5;
    font-size: 16px;
}

.step.completed .checkmark {
    background-color: #AF232D;
    border-color: #AF232D;
}

.step-content {
    display: none;
    padding: 20px 0 0 45px;
    margin-right: 40px;
    position: relative;
}

.step.expanded .step-content {
    display: block;
}

.step-content::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: #444444;
}

.section-header {
    font-family: 'Sentinel';
    font-weight: bold;
    font-size: 18px;
    color: #666666;
    margin: 0 0 15px 0;
}

.guidance-section {
    margin-bottom: 25px;
}

.guidance-text {
    font-family: 'Sentinel';
    font-weight: 300;
    font-size: 17px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.guidance-text p {
    margin-bottom: 20px;
}

.guidance-text p:last-of-type {
    margin-bottom: 15px;
}

.guidance-text li {
    list-style-type: none;
    padding-left: 0;
}

.guidance-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidance-text ul li {
    list-style-type: none;
    padding-left: 58px;
    margin-bottom: 8px;
    position: relative;
}

.guidance-text ul li::before {
    content: '•';
    position: absolute;
    left: 45px;
}

.documents-section {
    margin-top: 30px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #666666;
    margin-bottom: 12px;
}

.document-icon {
    width: 24px;
    height: 30px;
    border: 1px solid #666666;
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sentinel';
    font-weight: 500;
    font-size: 12px;
    color: #666666;
}

.document-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 6px;
    border-color: white white #F5F6F7 #F5F6F7;
}

.document-name {
    font-family: 'Sentinel';
    font-weight: 300;
    font-size: 15px;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    text-decoration: none;
}

.file-icon-box {
    width: 24px;
    height: 30px;
    border: 1px solid #666666;
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sentinel';
    font-weight: 500;
    font-size: 12px;
}

.file-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 6px;
    border-color: white white #F5F6F7 #F5F6F7;
}

.footer-bar, .knight-image {
    display: none;
}

header {
    padding: 28px;
    margin-bottom: 72.8px;
    position: relative;
    text-align: center;
}

header a {
    display: block;
    text-decoration: none;
    margin: 0 auto;
}

.guidance-section h3,
.documents-section h3 {
    font-family: 'Sentinel';
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    margin: 0 0 15px 0;
}

.guidance-text em {
    font-style: normal;
    font-weight: 500;
}

.steps-container .step .guidance-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-container .step .guidance-text ul li {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 8px;
}

.steps-container .step .step-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: #444444;
}

.toggle-controls {
    display: flex;
    justify-content: space-between;
    width: 65%;
    margin: 20px auto 0;
    padding: 0;
}

/* Reduce spacing between steps container and toggle controls by 40% for desktop */
@media (min-width: 769px) {
    .toggle-controls {
        margin: 12px auto 0;
    }
}

.toggle-text {
    font-family: 'Sentinel';
    font-weight: 500;
    font-size: 17px;
    color: #AF232D;
    cursor: pointer;
    user-select: none;
}

.toggle-text:hover {
    text-decoration: underline;
}

.knight-image {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: auto;
    transition: left 0.5s ease-in-out;
    z-index: 1000;
}

@keyframes knightJump {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.knight-jump {
    animation: knightJump 0.8s ease-in-out;
}

/* The @media print block that was here has been removed to avoid conflicts. 
   All print styling is now handled in public/styles.css */ 

/* Styles for Brother Templars Table in Member Recruitment */
.brother-templars-section-container {
    width: 65%; /* Match the width of .steps-container */
    margin: 40px auto 20px auto; /* Top margin for spacing, auto for horizontal centering, bottom margin */
}

.brother-templars-title {
    font-family: 'Sentinel', serif;
    font-size: 24px;
    color: #AF232D; /* Templars Red */
    margin-bottom: 20px;
}

.brother-templars-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px; /* Space between title and table */
}

.brother-templars-table th,
.brother-templars-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Sentinel', serif; /* Ensure font consistency */
}

.brother-templars-table th {
    font-weight: 500;
    color: #666666;
    background-color: #f5f6f7;
}

.brother-templars-table td {
    color: #333333; /* For when data is added */
} 

/* Centered bottom navigation styles */
.nav-container.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 40px auto;
    max-width: 100%;
}

.nav-container.centered .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sentinel';
    font-weight: 300;
    color: #666666;
    text-decoration: none;
}

/* REMOVE ALL NAVIGATION ARROWS */
.nav-container .nav-links::before,
.nav-container .nav-links::after,
.nav-container.centered .nav-links::before,
.nav-container.centered .nav-links::after,
.nav-container.centered .nav-links:first-child::before,
.nav-container.centered .nav-links:first-child::after,
.nav-container.centered .nav-links:last-child::before,
.nav-container.centered .nav-links:last-child::after,
.nav-links:first-child::before,
.nav-links:last-child::after {
    content: none !important;
    display: none !important;
}

.nav-divider {
    width: 2px;
    height: 20px;
    background-color: #AF232D;
    margin: 0 10px;
} 