/* =====================
   GLOBAL BASE
===================== */

html,
body {
    height: 100%;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



body {
    font-family: 'Inter', sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    color: #0f172a;
}

/* =====================
   HERO
===================== */

.logo-fh {
    width: 75px;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: #1e3a8a;
    margin: 18px auto 0;
    border-radius: 4px;
}

.hero-title {
    font-size: 24px;
    margin-bottom: 3px;
}

.hero-subtitle {
    font-size: 13px;
    margin-bottom: 10px;
    color: #475569;
}

/* =====================
   CARD
===================== */

.card-body {
    padding: 15px !important;
}


.card-menu {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}


.card-menu:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}


/* =====================
   BUTTON
===================== */

.btn-modern {
    padding: 8px 22px;
    font-size: 14px;
}


.btn-modern:hover {
    background: #1e293b;
    color: #ffffff;
}

/* =====================
   FOOTER
===================== */

.fh-footer {
    background: #0f172a;
    color: #f1f5f9;
    font-size: 14px;
}

/* =====================
   MOBILE OPTIMIZATION
===================== */

@media (max-width: 768px) {

    .main-content {
        justify-content: flex-start;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .card-menu {
        padding: 18px 14px;
    }

    .card-icon {
        font-size: 24px;
    }

    .btn-modern {
        width: 100%;
        font-size: 14px;
        padding: 8px 0;
    }

    .logo-fh {
        width: 65px;
    }

}