/* ============================================
   BUTTONS.CSS — Industrial-Noir Button Library
   ============================================ */

/* --- SHARED BASE (care-view-btn & read-more-btn) --- */
.care-view-btn,
.read-more-btn {
    background: #000;
    color: #fff;
    border: 5px solid #fff;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    display: inline-block;
    padding: 20px 40px;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
}

.pathfinder-trigger:hover,
.care-view-btn:hover,
.read-more-btn:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    transform: scale(1.05);
}

/* --- CARE VIEW BUTTON (compact) --- */
.care-view-btn {
    padding: 15px 25px;
    font-size: 1rem;
    width: fit-content;
    align-self: center;
}

/* --- READ MORE BUTTON (full-width card) --- */
.read-more-btn {
    background: #000;
    color: #fff;
    border: 5px solid #fff;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    display: inline-block;
    padding: 15px;
    font-size: 1rem;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
}

/* --- GO BACK BUTTON (white pill) --- */
.goback-btn {
    background: #fff;
    color: #000;
    border: 5px solid #000;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    display: table;
    padding: 25px 60px;
    font-size: 2rem;
    margin: 40px auto;
    text-decoration: none;
    border-radius: 100px;
    outline: none;
}

.goback-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: scale(1.05);
}

/* --- PILL BUTTON BLACK (Community / Account CTA) --- */
.pill-btn-black {
    background: #000;
    color: #fff;
    border: 5px solid transparent;
    padding: 15px 55px;
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    box-sizing: border-box;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pill-btn-black:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    transform: scale(1.05);
}

/* --- PILL BUTTON APP (Z-Space CTA) --- */
.app-btn-container {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.pill-btn-app {
    background: #000;
    color: #fff;
    border: 5px solid transparent;
    padding: 15px 55px;
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    box-sizing: border-box;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pill-btn-app:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    transform: scale(1.05);
}

/* --- RECORD NAV BUTTONS (Mission Slider arrows) --- */
.record-nav-btn {
    width: 60px;
    height: 60px;
    background: #000 !important;
    color: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 50% !important;
    border: 5px solid transparent !important;
    box-sizing: border-box;
}

.record-nav-btn:hover {
    filter: invert(1);
    border: 5px solid #fff !important;
    transform: scale(1.05);
}

.record-nav-btn.disabled {
    opacity: 0;
    pointer-events: none;
}



.center-btn {
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
}

/* --- MOBILE BUTTON OVERRIDES --- */
@media (max-width: 1024px) {
    .pill-btn-black,
    .pill-btn-app {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .care-view-btn {
        width: 100% !important;
        padding: 20px !important;
        font-size: 1.2rem !important;
    }
}
