/* ===== Page ===== */
body{
    padding-top: 90px;
    font-family: sans-serif;
    background-color: #F7F4EE;
}

/* ===== TOPBAR / NAVBAR ===== */
.topbar,
.navbar{
    background-color: #2F3E4F;
    min-height: 64px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.topbar-inner{
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.brand{
    color: #fff !important;
    font-weight: 800;
    font-size: 19px;
}

.brand-accent{
    color: #C8A96E;
}

.navbar-brand{
    font-weight: 700;
}

/* ===== Layout / Container ===== */
.container.mt-3{
    max-width: 980px;
}

/* Back button (green pill) */
.btn-link{
    background-color: #5F7A55;
    color: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    text-decoration: none !important;
}

.btn-link:hover{
    background-color: #4f6847;
    color: #fff;
}

/* Heading */
h4{
    font-weight: 700 !important;
    color: #111827;
    margin-top: 10px;
}

/* Optional helper text under title (if you add it later) */
.helper-text{
    text-align: center;
    margin-top: -10px;
    margin-bottom: 28px;
    font-size: 13px;
    color: #6b7280;
}

/* ===== Option Cards ===== */
.option-card{
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    padding: 28px 24px !important;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.option-card h5{
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 0;
    color: #111827;
}

/* make the emoji icon larger & closer to figma style */
.option-card .fs-1{
    font-size: 64px !important;
    line-height: 1;
    margin-bottom: 14px !important;
}

/* Hover */
.option-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* Description behavior: show on hover OR selected */
.option-description{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.option-card:hover .option-description,
.option-card.selected .option-description{
    opacity: 1;
    max-height: 120px;
    margin-top: 12px;
}

/* Selected state */
.option-card.selected{
    border: 2px solid #5F7A55 !important;
    background-color: #f2f7f2;
    box-shadow: 0 12px 28px rgba(95, 122, 85, 0.25);
}

/* ===== Bottom "Continue Bar" ===== */
/* This styles the container holding the Continue button */
.d-flex.justify-content-end.mt-4{
    margin-top: 34px !important;
    padding: 14px 0;
}

/* Continue button (green pill) */
#continueBtn.btn-primary{
    background-color: #5F7A55;
    border-color: #5F7A55;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 14px;
}

/* Hover */
#continueBtn.btn-primary:hover{
    background-color: #4f6847;
    border-color: #4f6847;
}

/* Disabled state (still looks nice) */
#continueBtn:disabled{
    opacity: 0.55;
    cursor: not-allowed;
}

/* Responsive: stack cards nicely on small screens */
@media (max-width: 768px){
    body{
        padding-top: 80px;
    }

    .option-card{
        min-height: 180px;
    }

    .d-flex.justify-content-end.mt-4{
        border: none;               /* remove the bar outline on small screens */
        padding: 0;
    }
}