/* ==============================
   SmartPOS Global Styles
============================== */

body {
    background: #f8f9fa;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Sidebar */
.sidebar {
    background-color: #1a1a1a;
    min-height: 100vh;
}

.sidebar .nav-link {
    color: #ffffff;
    padding: 10px 14px;
    margin-bottom: 4px;
}

.sidebar .nav-link.active,
.sidebar .nav-link.bg-danger {
    background-color: #dc3545 !important;
    border-radius: 6px;
}

.sidebar .nav-link:hover {
    background-color: rgba(220, 53, 69, 0.15);
    border-radius: 6px;
}

/* Dashboard Cards */
.card h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.85;
}

.card h2 {
    margin: 0;
}

/* Forms */
.form-control,
.form-select {
    border-radius: 6px;
}

/* Buttons */
.btn {
    border-radius: 6px;
}

/* Utilities */
.text-small {
    font-size: 0.85rem;
}


/* Sidebar container */
.sidebar {
    width: 240px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: #1a1a1a;
    overflow-y: auto;
}

/* Logo */
.sidebar-logo {
    max-width: 90px;
    padding: 5px;
}

/* Nav links */
.sidebar .nav-link {
    border-radius: 6px;
    margin-bottom: 4px;
}

.sidebar .nav-link:hover {
    background: rgba(255, 0, 0, 0.15);
}

.sidebar .nav-link.active {
    background: #dc3545;
}


/* =========================
   HERO SECTION
========================= */
.hero-section {
    background: linear-gradient(135deg, #b30000, #ff4d4d);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero card */
.hero-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    max-width: 420px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

/* Feature cards */
.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.feature-card i {
    font-size: 2.8rem;
    color: #dc3545;
}

/* Buttons */
.btn-lg {
    border-radius: 30px;
}

/* =========================
   ROOT LANDING PAGE
========================= */

.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e6f4ff, #f9fcff);
    display: flex;
    align-items: center;
}

/* Title */
.landing-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0d6efd; /* Bootstrap primary blue */
    letter-spacing: -1px;
}

/* Logo */
.landing-logo {
    max-width: 120px;
    opacity: 0.95;
}

/* Subtitle */
.landing-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Feature list */
.landing-features li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 10px;
}

.landing-features i {
    color: #0d6efd;
    margin-right: 8px;
}

/* Button */
.btn-lg {
    border-radius: 30px;
}

