/* Dashboard Wrapper */
.jhf-dashboard{
    font-family: 'Montserrat', sans-serif;
    max-width: 760px;
    margin: 0px auto;
    padding: 30px;
    background: #fdfaf6;
    border-radius: 2px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Heading */
.jhf-dashboard h2{
    font-family: 'Libre Baskerville', serif;
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-align: center;
    color:#2d2d2d;
    position: relative;
}

/* Step Rows */
.jhf-step{
    position: relative; /* for button positioning */
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    gap:10px;
    padding:20px 20px 20px 20px;
    margin-bottom:16px;
    border-radius:10px;
    background:#ffffff;
    border:2px solid #bb564463;
    transition:all .25s ease, transform .2s ease;
}

.jhf-step:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

/* Step Label */
.jhf-step .label{
    font-weight:600;
    font-size:16px;
    color:#2d2d2d;
}

/* Step Description */
.jhf-step-description{
    font-size:14px;
    color:#555;
    line-height:1.5;
}

/* Step Due Date Ribbon */
.jhf-step-due{
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background-color: #182d35e0;
    background-image: url(https://jeffersonheritagefest.com/wp-content/uploads/2026/03/subtle-grunge.png#48);
    letter-spacing: 1px;
    padding:4px 10px;
    border-radius:3px;
    box-shadow:0 2px 4px rgba(0,0,0,0.15);
    text-transform:uppercase;
}

/* Completed Step */
.jhf-step.complete{
    background:#fdf2e9;
    border-color:#f4c77c;
    animation: pulse-complete 0.5s ease-out;
}

@keyframes pulse-complete{
    0% {transform: scale(1);}
    50% {transform: scale(1.02);}
    100% {transform: scale(1);}
}

/* Incomplete Step */
.jhf-step.incomplete{
    background:#fff;
}

/* Buttons Top-Right */
.jhf-step button,
.jhf-step .button{
    position:absolute;
    top:10px;
    right:10px;
    font-family:'Montserrat', sans-serif;
    font-size:14px;
    font-weight:500;
    padding:10px 14px;
    color:#fff;
    background:#BB5644;
    border:none;
    border-radius:1px;
    cursor:pointer;
    text-decoration:none;
    transition:all .2s ease;
    z-index:2;
}

.jhf-step button:hover,
.jhf-step .button:hover{
    background:#a44a3a;
    transform:translateY(-1px);
    color: #fff;
}

/* Progress Bar */
.jhf-progress{
    margin-top:28px;
    height:18px;
    border-radius:20px;
    background:#eee;
    overflow:hidden;
}

.jhf-progress-inner{
    height:100%;
    background: url(https://jeffersonheritagefest.com/wp-content/uploads/2026/03/subtle-grunge.png#48), linear-gradient(90deg, #e8c88b, #BB5644);
    border-radius:20px;
    width:0%;
    transition:width 1s ease-in-out;
}

/* Badge Row */
.jhf-badges{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    box-shadow: inset -1px -1px 20px 0px #823c2a24;
    border-radius:50px;
}

/* Badge Circle */
.jhf-badge{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#e6e6e6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family: 'Libre Baskerville', serif;
    font-size:18px;
    color: #ffffff;
    transition:all .25s ease, transform .25s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Completed Badge Animation */
.jhf-badge.complete{
    animation: badge-pop 0.3s ease-out;
    background: radial-gradient(circle at 30% 30%, #ffeaa0, #bb5644);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgb(139 79 62 / 22%), 0 0 10px rgb(232 207 74);
    border: 6px dashed #fdf2e9a6;
}

@keyframes badge-pop{
    0% {transform: scale(0.8) rotate(-10deg);}
    50% {transform: scale(1.3) rotate(5deg);}
    100% {transform: scale(1.2) rotate(0);}
}

/* Progress Text */
.jhf-dashboard p{
    margin-top:18px;
    text-align:center;
    font-size:15px;
}

/* Speaker Badge Award */
.speaker-badge {
    padding: 30px;
    max-width: 500px;
    background-color: #76230D;
    background-image: url(https://jeffersonheritagefest.com/wp-content/uploads/2026/03/subtle-grunge.png#48);
    background-blend-mode: soft-light;
    border: 15px dashed #41141424;
    outline: 3px solid #c48a5e;
    border-radius: 5px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.1);
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    
}

.speaker-badge::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    width: 125%;
    height: 125%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
    z-index: 0;
}

.speaker-badge .badge-title {
    font-family: 'Libre Baskerville';
    font-size: 20px;
    text-align: center;
    display: block;
    color: #fdf7f2;
    z-index: 1;
    position: relative;
}

.speaker-badge img {
    width: 75%;
    margin: 0 auto;
    display: block;
    box-shadow: 0px 18px 20px 0px #651717b3;
}

.speaker-badge .badge-description {
    text-align: center;
    display: block;
    color: white;
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    width: 80%;
    margin: -10px auto 0 auto;
}

/* Mobile */
@media(max-width:600px){

.jhf-dashboard{
    padding:22px;
}

.jhf-step{
    flex-direction:column;
    align-items:flex-start;
    padding:16px;
}

.jhf-step button,
.jhf-step .button{
    position:static;
    margin-top:8px;
}

.jhf-badges{
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
}

.jhf-step-due{
    position:static;
    margin-top:6px;
}

}