/* ============================================================
   ADINET Website — Main Stylesheet
   Supplements Bootstrap 5; keep custom rules minimal.
   ============================================================ */

/* Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navbar brand */
.navbar-brand {
    letter-spacing: 0.04em;
}

/* Smooth hover on nav links */
.navbar-nav .nav-link {
    transition: color 0.2s ease;
}

/* Card hover lift */
.card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px);
}

/* Footer links */
footer a:hover {
    color: #fff !important;
}

/* Section spacing */
section {
    scroll-margin-top: 70px;
}

/* Utility */
.text-primary { color: #0d6efd !important; }
