/* ============================================
   HopTacXa Website - Custom Styles
   ============================================ */

/* --- Global --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* --- Navbar --- */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- Hero / Jumbotron --- */
.hero-section {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 1rem;
}

/* --- Card Portal --- */
.portal-card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.portal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.portal-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* --- Admin Theme --- */
.admin-theme .hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* --- HopTacXa Theme --- */
.hoptacxa-theme .hero-section {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

/* --- KhachHang Theme --- */
.khachhang-theme .hero-section {
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
}

/* --- Footer --- */
.footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: auto;
}

/* --- Tables --- */
.table-hover tbody tr:hover {
    background-color: rgba(25, 135, 84, 0.08);
}

/* --- Buttons --- */
.btn-rounded {
    border-radius: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --- Utility --- */
.text-shadow {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

